/* ============================================
   AQBEE Innovations - Professional Design System
   Clean, Fast, Minimal, Modern
   ============================================ */

/* CSS Variables */
:root {
    --bg-primary: #ffffff;
    --bg-secondary: #f9fafb;
    --bg-card: #ffffff;
    --text-primary: #111827;
    --text-secondary: #6b7280;
    --text-muted: #9ca3af;
    --border-color: #e5e7eb;
    --primary: #123d64;
    --primary-light: #2368b2;
    --accent: #2368b2;
    --success: #10b981;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 25px rgba(0,0,0,0.08);
    --shadow-xl: 0 20px 40px rgba(0,0,0,0.1);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-theme="dark"] {
    --bg-primary: #0f172a;
    --bg-secondary: #1e293b;
    --bg-card: #1e293b;
    --text-primary: #f1f5f9;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --border-color: #334155;
    --shadow-lg: 0 8px 25px rgba(0,0,0,0.3);
    --shadow-xl: 0 20px 40px rgba(0,0,0,0.4);
}

/* Reset */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-primary);
    -webkit-font-smoothing: antialiased;
    transition: background var(--transition), color var(--transition);
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }

/* Container */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
@media (min-width: 768px) { .container { padding: 0 32px; } }

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}
@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}
@keyframes glowPulse {
    0%, 100% { box-shadow: 0 0 20px rgba(35, 104, 178, 0.3); }
    50% { box-shadow: 0 0 40px rgba(35, 104, 178, 0.5); }
}
@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}
@keyframes borderGlow {
    0%, 100% { border-color: rgba(96, 165, 250, 0.3); }
    50% { border-color: rgba(96, 165, 250, 0.8); }
}
@keyframes particleFloat {
    0%, 100% { transform: translateY(0) translateX(0); opacity: 0.6; }
    25% { transform: translateY(-15px) translateX(5px); opacity: 1; }
    50% { transform: translateY(-25px) translateX(-5px); opacity: 0.8; }
    75% { transform: translateY(-15px) translateX(10px); opacity: 1; }
}
@keyframes slideInFromLeft {
    from { opacity: 0; transform: translateX(-20px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes slideInFromRight {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}
.animate-fade-in { animation: fadeInUp 0.6s ease forwards; opacity: 0; }
.animate-slide-left { animation: slideInFromLeft 0.6s ease forwards; opacity: 0; }
.animate-slide-right { animation: slideInFromRight 0.6s ease forwards; opacity: 0; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }

/* Header - Modern AI Theme with Futuristic Effects */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 14px 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(249,250,251,0.98) 100%);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-bottom: 1px solid rgba(35, 104, 178, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(35, 104, 178, 0.5), rgba(96, 165, 250, 0.5), transparent);
    background-size: 200% 100%;
    animation: gradientShift 4s ease infinite;
    opacity: 0.6;
}
[data-theme="dark"] .header {
    background: linear-gradient(135deg, rgba(10,15,30,0.95) 0%, rgba(15,23,42,0.98) 100%);
    border-bottom: 1px solid rgba(96, 165, 250, 0.1);
}
[data-theme="dark"] .header::before {
    background: linear-gradient(90deg, transparent, rgba(96, 165, 250, 0.6), rgba(139, 92, 246, 0.6), transparent);
    background-size: 200% 100%;
    opacity: 0.8;
}
.header.scrolled {
    padding: 10px 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.98) 0%, rgba(249,250,251,0.99) 100%);
    box-shadow: 0 8px 32px rgba(35, 104, 178, 0.08), 0 2px 8px rgba(0,0,0,0.04);
}
[data-theme="dark"] .header.scrolled {
    background: linear-gradient(135deg, rgba(10,15,30,0.98) 0%, rgba(15,23,42,0.99) 100%);
    box-shadow: 0 8px 32px rgba(0,0,0,0.4), 0 0 60px rgba(96, 165, 250, 0.05);
}
.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    position: relative;
}

/* Logo - Theme Switching */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}
.logo-img {
    height: 36px;
    width: auto;
    transition: all 0.3s ease;
}
.logo:hover .logo-img {
    transform: scale(1.02);
}
/* Light theme: show colored logo, hide white logo */
.logo-light {
    display: block;
}
.logo-dark {
    display: none;
}
/* Dark theme: show white logo, hide colored logo */
[data-theme="dark"] .logo-light {
    display: none;
}
[data-theme="dark"] .logo-dark {
    display: block;
}
@media (min-width: 768px) {
    .logo-img { height: 42px; }
}

/* Navigation - Modern AI Theme with Futuristic Effects */
.nav {
    display: none;
    align-items: center;
    gap: 4px;
    padding: 6px;
    background: rgba(255,255,255,0.5);
    border-radius: 50px;
    border: 1px solid rgba(35, 104, 178, 0.08);
}
[data-theme="dark"] .nav {
    background: rgba(30, 41, 59, 0.5);
    border-color: rgba(96, 165, 250, 0.1);
}
@media (min-width: 1024px) { .nav { display: flex; } }
.nav-link {
    padding: 10px 20px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}
.nav-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(35, 104, 178, 0.1) 0%, rgba(96, 165, 250, 0.1) 100%);
    border-radius: 50px;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-link:hover::before {
    opacity: 1;
    transform: scale(1);
}
.nav-link:hover {
    color: var(--primary);
    transform: translateY(-1px);
}
[data-theme="dark"] .nav-link::before {
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.15) 0%, rgba(139, 92, 246, 0.1) 100%);
}
[data-theme="dark"] .nav-link:hover {
    color: #ffffff;
}
.nav-link.active {
    color: var(--accent);
    background: linear-gradient(135deg, rgba(35, 104, 178, 0.1) 0%, rgba(96, 165, 250, 0.08) 100%);
    font-weight: 600;
}
.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 2px;
}
[data-theme="dark"] .nav-link.active {
    color: #60a5fa;
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.2) 0%, rgba(139, 92, 246, 0.1) 100%);
}
[data-theme="dark"] .nav-link.active::after {
    background: linear-gradient(90deg, #60a5fa, #a78bfa);
}

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle { display: flex; align-items: center; gap: 4px; }
.nav-dropdown-toggle svg { width: 16px; height: 16px; transition: transform var(--transition); }
.nav-dropdown:hover .nav-dropdown-toggle svg { transform: rotate(180deg); }
.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 280px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition);
    box-shadow: var(--shadow-xl);
}
.nav-dropdown:hover .nav-dropdown-menu { opacity: 1; visibility: visible; transform: translateY(4px); }
.nav-dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: var(--radius-md);
    transition: background var(--transition);
}
.nav-dropdown-item:hover { background: var(--bg-secondary); }
.nav-dropdown-icon {
    width: 40px;
    height: 40px;
    background: rgba(35,104,178,0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.nav-dropdown-icon svg { width: 20px; height: 20px; color: var(--accent); }
.nav-dropdown-content h4 { font-size: 0.9rem; font-weight: 600; color: var(--text-primary); }
.nav-dropdown-content p { font-size: 0.75rem; color: var(--text-muted); margin-top: 2px; }

/* Header Actions - Modern AI Theme */
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}
.theme-switcher {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.8);
    border: 1px solid rgba(35, 104, 178, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}
.theme-switcher::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: conic-gradient(from 0deg, rgba(35,104,178,0.4), rgba(96,165,250,0.4), rgba(139,92,246,0.3), rgba(35,104,178,0.4));
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
    animation: spin 4s linear infinite paused;
}
@keyframes spin {
    to { transform: rotate(360deg); }
}
.theme-switcher:hover::before {
    opacity: 1;
    animation-play-state: running;
}
.theme-switcher::after {
    content: '';
    position: absolute;
    inset: 2px;
    background: rgba(255,255,255,0.95);
    border-radius: 50%;
    z-index: 0;
    transition: background 0.3s ease;
}
.theme-switcher:hover {
    transform: scale(1.08);
    box-shadow: 0 4px 20px rgba(35, 104, 178, 0.25);
}
.theme-switcher svg {
    width: 20px;
    height: 20px;
    color: var(--text-secondary);
    position: relative;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.theme-switcher:hover svg {
    color: var(--primary);
    transform: rotate(20deg);
}
[data-theme="dark"] .theme-switcher {
    background: rgba(30, 41, 59, 0.8);
    border-color: rgba(96, 165, 250, 0.2);
}
[data-theme="dark"] .theme-switcher::before {
    background: conic-gradient(from 0deg, rgba(96,165,250,0.5), rgba(139,92,246,0.5), rgba(251,191,36,0.4), rgba(96,165,250,0.5));
}
[data-theme="dark"] .theme-switcher::after {
    background: rgba(15, 23, 42, 0.95);
}
[data-theme="dark"] .theme-switcher:hover {
    box-shadow: 0 4px 25px rgba(96, 165, 250, 0.3), 0 0 40px rgba(139, 92, 246, 0.15);
}
[data-theme="dark"] .theme-switcher:hover svg {
    color: #fbbf24;
}
.theme-switcher .icon-sun { display: none; }
[data-theme="dark"] .theme-switcher .icon-sun { display: block; color: #fbbf24; }
[data-theme="dark"] .theme-switcher .icon-moon { display: none; }
.search-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.8);
    border: 1px solid rgba(35, 104, 178, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}
.search-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(35,104,178,0.15) 0%, rgba(96,165,250,0.15) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.search-btn:hover::before {
    opacity: 1;
}
.search-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 4px 20px rgba(35, 104, 178, 0.2);
    border-color: var(--accent);
}
.search-btn svg {
    width: 20px;
    height: 20px;
    color: var(--text-secondary);
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}
.search-btn:hover svg {
    color: var(--primary);
    transform: scale(1.1);
}
[data-theme="dark"] .search-btn {
    background: rgba(30, 41, 59, 0.8);
    border-color: rgba(96, 165, 250, 0.2);
}
[data-theme="dark"] .search-btn:hover {
    border-color: #60a5fa;
    box-shadow: 0 4px 25px rgba(96, 165, 250, 0.25);
}
[data-theme="dark"] .search-btn:hover svg {
    color: #60a5fa;
}

/* Buttons - Modern AI Theme */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 0.88rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}
.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(35,104,178,0.3);
}
.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--accent) 0%, #8b5cf6 50%, var(--primary) 100%);
    background-size: 200% 200%;
    opacity: 0;
    transition: opacity 0.4s ease;
    animation: gradientShift 3s ease infinite paused;
}
.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s ease;
}
.btn-primary:hover::before {
    opacity: 1;
    animation-play-state: running;
}
.btn-primary:hover::after {
    left: 100%;
}
.btn-primary span {
    position: relative;
    z-index: 1;
}
.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 30px rgba(35,104,178,0.4), 0 0 40px rgba(96, 165, 250, 0.15);
}
[data-theme="dark"] .btn-primary {
    box-shadow: 0 4px 20px rgba(96, 165, 250, 0.3);
}
[data-theme="dark"] .btn-primary:hover {
    box-shadow: 0 10px 40px rgba(96, 165, 250, 0.4), 0 0 60px rgba(139, 92, 246, 0.2);
}
.btn-header {
    padding: 10px 22px;
    font-size: 0.85rem;
    background: rgba(255,255,255,0.8);
    color: var(--text-primary);
    border: 1px solid rgba(35, 104, 178, 0.15);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.btn-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(35,104,178,0.1) 0%, rgba(96,165,250,0.1) 100%);
    border-radius: 50px;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.btn-header:hover::before {
    opacity: 1;
}
.btn-header:hover {
    border-color: var(--accent);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(35,104,178,0.15);
}
[data-theme="dark"] .btn-header {
    background: rgba(30, 41, 59, 0.8);
    border-color: rgba(96, 165, 250, 0.2);
    color: #ffffff;
}
[data-theme="dark"] .btn-header:hover {
    border-color: #60a5fa;
    color: #60a5fa;
    box-shadow: 0 4px 20px rgba(96, 165, 250, 0.2);
}
.btn-secondary {
    background: var(--bg-card);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}
.btn-secondary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(35,104,178,0.08) 0%, rgba(96,165,250,0.08) 100%);
    border-radius: 50px;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.btn-secondary:hover::before {
    opacity: 1;
}
.btn-secondary:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(35,104,178,0.1);
}
[data-theme="dark"] .btn-secondary {
    border-color: rgba(96, 165, 250, 0.2);
}
[data-theme="dark"] .btn-secondary:hover {
    border-color: #60a5fa;
    color: #60a5fa;
    box-shadow: 0 4px 20px rgba(96, 165, 250, 0.15);
}
.btn-white {
    background: white;
    color: var(--primary);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.btn-white:hover {
    background: var(--bg-secondary);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* Mobile Menu */
.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    background: rgba(255,255,255,0.8);
    border: 1px solid rgba(35, 104, 178, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
}
.mobile-menu-btn:hover {
    background: rgba(35, 104, 178, 0.08);
}
.mobile-menu-btn span {
    width: 22px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-menu-btn:hover span {
    background: var(--primary);
}
.mobile-menu-btn:hover span:nth-child(1) {
    transform: translateX(2px);
}
.mobile-menu-btn:hover span:nth-child(3) {
    transform: translateX(-2px);
}
[data-theme="dark"] .mobile-menu-btn {
    background: rgba(30, 41, 59, 0.8);
    border-color: rgba(96, 165, 250, 0.15);
}
[data-theme="dark"] .mobile-menu-btn:hover span {
    background: #60a5fa;
}
@media (min-width: 1024px) { .mobile-menu-btn { display: none; } }
.mobile-menu {
    position: fixed;
    inset: 0;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    z-index: 999;
    padding: 80px 24px 24px;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}
.mobile-menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(35, 104, 178, 0.5), rgba(96, 165, 250, 0.5), transparent);
}
.mobile-menu.active { transform: translateX(0); }
.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    background: rgba(35, 104, 178, 0.1);
    border: 1px solid rgba(35, 104, 178, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.mobile-menu-close:hover {
    background: rgba(35, 104, 178, 0.15);
    transform: rotate(90deg);
}
.mobile-menu-close svg {
    color: var(--text-secondary);
}
.mobile-menu-nav { display: flex; flex-direction: column; gap: 8px; }
.mobile-menu-link {
    padding: 16px 20px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-secondary);
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
}
.mobile-menu-link:hover {
    background: linear-gradient(135deg, rgba(35,104,178,0.08) 0%, rgba(96,165,250,0.08) 100%);
    color: var(--primary);
    border-color: rgba(35, 104, 178, 0.15);
    transform: translateX(8px);
}
[data-theme="dark"] .mobile-menu::before {
    background: linear-gradient(90deg, transparent, rgba(96, 165, 250, 0.6), rgba(139, 92, 246, 0.6), transparent);
}
[data-theme="dark"] .mobile-menu-link:hover {
    background: linear-gradient(135deg, rgba(96,165,250,0.1) 0%, rgba(139,92,246,0.08) 100%);
    color: #60a5fa;
    border-color: rgba(96, 165, 250, 0.2);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    background: var(--bg-primary);
    position: relative;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}
@media (min-width: 1024px) { .hero-grid { grid-template-columns: 1fr 1fr; gap: 64px; } }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(16,185,129,0.1);
    border: 1px solid rgba(16,185,129,0.2);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--success);
    margin-bottom: 24px;
}
.hero-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse 2s infinite;
}
.hero h1 {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--text-primary);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}
.hero p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
    max-width: 480px;
    line-height: 1.7;
}
.hero-buttons { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 48px; }
.hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
@media (min-width: 640px) { .hero-stats { grid-template-columns: repeat(4, 1fr); } }
.hero-stat {
    text-align: center;
    padding: 20px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    transition: all var(--transition);
}
.hero-stat:hover { border-color: var(--accent); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.hero-stat-number {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary);
}
.hero-stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 4px;
}

/* Hero Visual */
.hero-visual { position: relative; }
.hero-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-xl);
    animation: float 6s ease-in-out infinite;
}
.hero-image img { width: 100%; }

/* Section Styles */
.section { padding: 80px 0; }
@media (min-width: 768px) { .section { padding: 100px 0; } }
.section-header { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(35,104,178,0.1);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}
.section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}
.section-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Cards */
.card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 24px;
    transition: all var(--transition);
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: var(--accent); }
.card-icon {
    width: 48px;
    height: 48px;
    background: rgba(35,104,178,0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}
.card-icon svg { width: 24px; height: 24px; color: var(--accent); }
.card h3 { font-size: 1.1rem; font-weight: 600; color: var(--text-primary); margin-bottom: 8px; }
.card p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.6; margin-bottom: 16px; }
.card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent);
    transition: gap var(--transition);
}
.card-link:hover { gap: 10px; }
.card-link svg { width: 16px; height: 16px; }

/* Grid Layouts */
.grid-2 { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 768px) { .grid-2 { grid-template-columns: repeat(2, 1fr); } }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 640px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }
.grid-4 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
@media (min-width: 768px) { .grid-4 { grid-template-columns: repeat(4, 1fr); } }

/* Stats Section */
.stats-section { background: var(--bg-secondary); }
.stat-card {
    text-align: center;
    padding: 32px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    transition: all var(--transition);
}
.stat-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.stat-icon {
    width: 48px;
    height: 48px;
    background: rgba(35,104,178,0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}
.stat-icon svg { width: 24px; height: 24px; color: var(--accent); }
.stat-number { font-size: 2rem; font-weight: 700; color: var(--primary); margin-bottom: 4px; }
.stat-label { font-size: 0.85rem; color: var(--text-muted); }

/* Tech Stack */
.tech-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (min-width: 768px) { .tech-grid { grid-template-columns: repeat(8, 1fr); } }
.tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px 12px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    transition: all var(--transition);
}
.tech-item:hover { transform: translateY(-3px); border-color: var(--accent); box-shadow: var(--shadow-md); }
.tech-item img { width: 40px; height: 40px; object-fit: contain; }
.tech-item span { font-size: 0.7rem; font-weight: 500; color: var(--text-muted); text-align: center; }

/* Team Section */
.team-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
@media (min-width: 768px) { .team-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .team-grid { grid-template-columns: repeat(4, 1fr); } }
.team-card {
    text-align: center;
    padding: 32px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    transition: all var(--transition);
}
.team-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.team-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}
.team-card h4 { font-size: 1rem; font-weight: 600; color: var(--text-primary); margin-bottom: 4px; }
.team-card .role { font-size: 0.85rem; color: var(--accent); margin-bottom: 8px; }
.team-card .certs { font-size: 0.75rem; color: var(--text-muted); }

/* Reviews Section */
.reviews-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 768px) { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .reviews-grid { grid-template-columns: repeat(3, 1fr); } }
.review-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 24px;
    cursor: pointer;
    transition: all var(--transition);
}
.review-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: var(--accent); }
.review-stars { display: flex; gap: 2px; margin-bottom: 16px; color: #fbbf24; }
.review-stars svg { width: 16px; height: 16px; fill: currentColor; }
.review-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: white;
    font-size: 0.8rem;
}
.review-info h4 { font-size: 0.9rem; font-weight: 600; color: var(--text-primary); }
.review-info p { font-size: 0.75rem; color: var(--text-muted); }
.review-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 8px;
    background: rgba(35,104,178,0.1);
    border-radius: 4px;
    font-size: 0.7rem;
    color: var(--accent);
    margin-top: 8px;
}

/* Modal */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
}
.modal-overlay.active { opacity: 1; visibility: visible; }
.modal {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    max-width: 640px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    transform: scale(0.9);
    transition: transform var(--transition);
}
.modal-overlay.active .modal { transform: scale(1); }
.modal-header {
    padding: 24px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: sticky;
    top: 0;
    background: var(--bg-card);
    z-index: 1;
}
.modal-close {
    width: 32px;
    height: 32px;
    border-radius: var(--radius-sm);
    background: var(--bg-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.modal-close svg { width: 18px; height: 18px; color: var(--text-secondary); }
.modal-body { padding: 24px; }
.modal-section { margin-bottom: 24px; }
.modal-section:last-child { margin-bottom: 0; }
.modal-section h4 {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}
.modal-section ul { display: flex; flex-direction: column; gap: 8px; }
.modal-section li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}
.modal-section li svg { width: 16px; height: 16px; color: var(--success); flex-shrink: 0; margin-top: 3px; }
.modal-quote {
    font-size: 1rem;
    color: var(--text-primary);
    line-height: 1.7;
    font-style: italic;
    padding: 20px;
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--accent);
}

/* Industries */
.industry-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
@media (min-width: 768px) { .industry-grid { grid-template-columns: repeat(4, 1fr); } }
.industry-card {
    text-align: center;
    padding: 24px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    transition: all var(--transition);
}
.industry-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: var(--accent); }
.industry-icon {
    width: 56px;
    height: 56px;
    background: rgba(35,104,178,0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    transition: background var(--transition);
}
.industry-card:hover .industry-icon { background: var(--primary); }
.industry-icon svg { width: 28px; height: 28px; color: var(--accent); transition: color var(--transition); }
.industry-card:hover .industry-icon svg { color: white; }
.industry-card h4 { font-size: 0.9rem; font-weight: 600; color: var(--text-primary); }

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: var(--radius-xl);
    padding: 48px 32px;
    text-align: center;
}
@media (min-width: 768px) { .cta-section { padding: 64px 48px; } }
.cta-section h2 { font-size: clamp(1.5rem, 4vw, 2rem); font-weight: 700; color: white; margin-bottom: 12px; }
.cta-section p { font-size: 1rem; color: rgba(255,255,255,0.9); margin-bottom: 24px; max-width: 480px; margin-left: auto; margin-right: auto; }

/* Footer */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    padding: 64px 0 32px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 48px;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer-brand p { font-size: 0.9rem; color: var(--text-secondary); margin-top: 16px; max-width: 280px; line-height: 1.6; }
.footer-social { display: flex; gap: 8px; margin-top: 20px; }
.footer-social a {
    width: 36px;
    height: 36px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all var(--transition);
}
.footer-social a:hover { background: var(--primary); border-color: var(--primary); color: white; }
.footer-social svg { width: 18px; height: 18px; }
.footer-links h4 { font-size: 0.9rem; font-weight: 600; color: var(--text-primary); margin-bottom: 16px; }
.footer-links a { display: block; font-size: 0.85rem; color: var(--text-secondary); padding: 6px 0; transition: color var(--transition); }
.footer-links a:hover { color: var(--accent); }
.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    text-align: center;
}
@media (min-width: 768px) { .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; } }
.footer-bottom p { font-size: 0.85rem; color: var(--text-muted); }

/* Page Header */
.page-header {
    padding: 140px 0 60px;
    background: var(--bg-secondary);
}
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    margin-bottom: 16px;
}
.breadcrumb a { color: var(--text-muted); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { color: var(--text-muted); }
.page-header h1 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}
.page-header p { font-size: 1.1rem; color: var(--text-secondary); max-width: 600px; }

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    background: var(--primary);
    border-radius: var(--radius-md);
    color: white;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-3px); }
.back-to-top svg { width: 20px; height: 20px; }

/* Utilities */
.text-center { text-align: center; }
.bg-secondary { background: var(--bg-secondary); }
.mb-0 { margin-bottom: 0; }
.hide-mobile { display: none; }
@media (min-width: 768px) { .hide-mobile { display: inline-flex; } }

/* Contact Form */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 48px; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.contact-form { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius-xl); padding: 32px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 500; color: var(--text-primary); margin-bottom: 8px; }
.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 0.9rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    background: var(--bg-primary);
    color: var(--text-primary);
    transition: border-color var(--transition);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--accent); }
.form-group textarea { min-height: 120px; resize: vertical; }
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-item { display: flex; gap: 16px; }
.contact-item-icon {
    width: 48px;
    height: 48px;
    background: rgba(35,104,178,0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-item-icon svg { width: 24px; height: 24px; color: var(--accent); }
.contact-item h4 { font-size: 0.9rem; font-weight: 600; color: var(--text-primary); margin-bottom: 4px; }
.contact-item p { font-size: 0.85rem; color: var(--text-secondary); }

/* Certifications */
.cert-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
@media (min-width: 640px) { .cert-grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1024px) { .cert-grid { grid-template-columns: repeat(5, 1fr); } }
.cert-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px 12px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    transition: all var(--transition);
}
.cert-item:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.cert-item img { width: 60px; height: 60px; object-fit: contain; }
.cert-item span { font-size: 0.7rem; font-weight: 500; color: var(--text-muted); text-align: center; }

/* Service Page */
.service-content { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: start; }
@media (min-width: 1024px) { .service-content { grid-template-columns: 1fr 1fr; } }
.service-image { border-radius: var(--radius-xl); overflow: hidden; border: 1px solid var(--border-color); box-shadow: var(--shadow-lg); }
.service-features { display: grid; grid-template-columns: 1fr; gap: 16px; margin-top: 32px; }
@media (min-width: 640px) { .service-features { grid-template-columns: repeat(2, 1fr); } }
.service-feature {
    display: flex;
    gap: 12px;
    padding: 16px;
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
}
.feature-icon {
    width: 40px;
    height: 40px;
    background: rgba(35,104,178,0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.feature-icon svg { width: 20px; height: 20px; color: var(--accent); }
.service-feature h4 { font-size: 0.9rem; font-weight: 600; color: var(--text-primary); margin-bottom: 4px; }
.service-feature p { font-size: 0.8rem; color: var(--text-secondary); margin: 0; }

/* Process Steps */
.process-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 768px) { .process-grid { grid-template-columns: repeat(4, 1fr); } }
.process-step {
    text-align: center;
    padding: 24px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
}
.process-number {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin: 0 auto 16px;
}
.process-step h4 { font-size: 1rem; font-weight: 600; color: var(--text-primary); margin-bottom: 8px; }
.process-step p { font-size: 0.85rem; color: var(--text-secondary); }

/* Enhanced Header */
.header {
    padding: 12px 0;
}
.header-container {
    max-width: 1400px;
    padding: 0 40px;
}
.logo svg { height: 44px; }
@media (min-width: 768px) { .logo svg { height: 52px; } }
.nav { gap: 8px; }
.nav-link {
    padding: 10px 20px;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 50px;
}
.nav-link:hover { background: rgba(35,104,178,0.08); color: var(--primary); }
.theme-switcher {
    width: 44px;
    height: 44px;
    border-radius: 50%;
}
.btn-primary {
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 0.95rem;
}

/* Larger Hero */
.hero {
    min-height: calc(100vh - 80px);
    padding: 140px 0 100px;
}
.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 24px;
    line-height: 1.05;
}
.hero p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 540px;
}
.hero-buttons { gap: 16px; margin-bottom: 60px; }
.hero-buttons .btn { padding: 16px 32px; font-size: 1rem; }
.hero-stats { gap: 20px; }
.hero-stat {
    padding: 24px 20px;
}
.hero-stat-number { font-size: 2.25rem; }
.hero-stat-label { font-size: 0.8rem; margin-top: 6px; }

/* Logo Marquee */
.marquee-section {
    padding: 30px 0;
    overflow: hidden;
    background: #ffffff;
    border-bottom: 1px solid var(--border-color);
}
[data-theme="dark"] .marquee-section {
    background: var(--bg-secondary);
}
.marquee-label {
    text-align: center;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 20px;
}
.marquee-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}
.marquee-container::before,
.marquee-container::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}
.marquee-container::before {
    left: 0;
    background: linear-gradient(to right, #ffffff, transparent);
}
.marquee-container::after {
    right: 0;
    background: linear-gradient(to left, #ffffff, transparent);
}
[data-theme="dark"] .marquee-container::before {
    background: linear-gradient(to right, var(--bg-secondary), transparent);
}
[data-theme="dark"] .marquee-container::after {
    background: linear-gradient(to left, var(--bg-secondary), transparent);
}
.marquee-track {
    display: flex;
    gap: 80px;
    animation: marquee 35s linear infinite;
    width: max-content;
    align-items: center;
}
.marquee-track:hover {
    animation-play-state: paused;
}
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.marquee-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    transition: transform var(--transition), opacity var(--transition);
}
.marquee-item:hover {
    transform: scale(1.05);
}
.marquee-item img {
    height: 55px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
    filter: grayscale(30%);
    opacity: 0.85;
    transition: all var(--transition);
}
.marquee-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}
[data-theme="dark"] .marquee-item img {
    filter: grayscale(50%) brightness(1.3);
    opacity: 0.7;
}
[data-theme="dark"] .marquee-item:hover img {
    filter: grayscale(0%) brightness(1);
    opacity: 1;
}

/* Trusted By Section */
.trusted-section {
    padding: 40px 0;
    background: var(--bg-primary);
}
.trusted-label {
    text-align: center;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 24px;
}
.trusted-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}
.trusted-logo {
    height: 32px;
    width: auto;
    opacity: 0.5;
    filter: grayscale(100%);
    transition: all var(--transition);
}
.trusted-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
}

/* Tech Stack Categories */
.tech-categories {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}
@media (min-width: 768px) {
    .tech-categories {
        grid-template-columns: repeat(2, 1fr);
    }
}
.tech-category {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: all var(--transition);
}
.tech-category:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}
.tech-category-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 8px;
}
.tech-category-title::before {
    content: '';
    width: 4px;
    height: 18px;
    background: linear-gradient(to bottom, var(--primary), var(--accent));
    border-radius: 2px;
}
.tech-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.tech-pill {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: all var(--transition);
    cursor: default;
}
.tech-pill:hover {
    background: rgba(35,104,178,0.1);
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
}

/* Logo Text */
.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

/* Header Button Styles */
.btn-header {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-primary);
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    transition: all var(--transition);
}
.btn-header:hover {
    background: var(--bg-secondary);
    border-color: var(--accent);
}
.btn-header svg {
    width: 18px;
    height: 18px;
}

.search-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border-radius: 50%;
    color: var(--text-secondary);
    transition: all var(--transition);
}
.search-btn:hover {
    background: var(--bg-secondary);
    color: var(--text-primary);
}
.search-btn svg {
    width: 22px;
    height: 22px;
}

/* Mega Menu Styles */
.mega-dropdown {
    position: static;
}
.mega-menu {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    width: 100vw;
    background: linear-gradient(180deg, #0a0f1a 0%, #0f172a 100%);
    border-top: 1px solid rgba(255,255,255,0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
}
.mega-dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.mega-menu-inner {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    min-height: 400px;
}
.mega-menu-sidebar {
    width: 280px;
    background: rgba(255,255,255,0.03);
    border-right: 1px solid rgba(255,255,255,0.08);
    padding: 24px 0;
}
.mega-sidebar-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 28px;
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition);
    border-left: 3px solid transparent;
}
.mega-sidebar-item:hover,
.mega-sidebar-item.active {
    background: rgba(255,255,255,0.05);
    color: #ffffff;
    border-left-color: var(--accent);
}
.mega-sidebar-item svg {
    width: 16px;
    height: 16px;
    opacity: 0;
    transform: translateX(-5px);
    transition: all var(--transition);
}
.mega-sidebar-item:hover svg,
.mega-sidebar-item.active svg {
    opacity: 1;
    transform: translateX(0);
}
.mega-menu-content {
    flex: 1;
    padding: 32px 40px;
    position: relative;
}
.mega-panel {
    display: none;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}
.mega-panel.active {
    display: grid;
}
.mega-column {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.mega-column-title {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.mega-link {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    padding: 8px 0;
    transition: all var(--transition);
}
.mega-link:hover {
    color: #ffffff;
    padding-left: 8px;
}

/* Mega Menu Compact (Industries) */
.mega-menu-compact {
    padding: 32px 40px;
}
.mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}
.mega-industry-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 20px 16px;
    border-radius: 12px;
    transition: all var(--transition);
    text-align: center;
}
.mega-industry-card:hover {
    background: rgba(255,255,255,0.05);
}
.mega-industry-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mega-industry-icon svg {
    width: 24px;
    height: 24px;
}
.mega-industry-card span {
    color: rgba(255,255,255,0.85);
    font-size: 0.85rem;
    font-weight: 500;
}

/* Who We Serve Industries Mega Menu */
.mega-menu-industries {
    top: 60px;
}
.industries-mega-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 32px 40px;
}
.industries-top-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 24px;
}
.industry-category {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.industry-category-title {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    text-decoration: underline;
    text-underline-offset: 4px;
}
.industry-category-desc {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    margin: 0;
}
.industry-explore-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 6px;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
    width: fit-content;
    margin-top: 8px;
}
.industry-explore-btn:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
}
.industry-explore-btn svg {
    width: 14px;
    height: 14px;
}
.industries-bottom-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.platform-card {
    position: relative;
    padding: 24px;
    border-radius: 16px;
    overflow: hidden;
    min-height: 220px;
    display: flex;
    flex-direction: column;
}
.platform-card-blue {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
}
.platform-card-teal {
    background: linear-gradient(135deg, #ccfbf1 0%, #99f6e4 100%);
}
.platform-card-purple {
    background: linear-gradient(135deg, #ede9fe 0%, #ddd6fe 100%);
}
.platform-card-dark {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
}
.platform-card-heading {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 12px 0;
    line-height: 1.3;
    max-width: 70%;
}
.platform-card-dark .platform-card-heading {
    color: #fff;
}
.platform-card-brand {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
}
.platform-card-desc {
    font-size: 0.8rem;
    color: #475569;
    line-height: 1.5;
    margin: 0;
    max-width: 65%;
}
.platform-card-dark .platform-card-desc {
    color: rgba(255,255,255,0.7);
}
.platform-card-image {
    position: absolute;
    right: -10px;
    bottom: -10px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
}
.platform-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Dark theme header adjustments */
[data-theme="dark"] .mega-menu {
    background: linear-gradient(180deg, #050810 0%, #0a0f1a 100%);
}

/* AI Glow Effects for Dark Mode */
[data-theme="dark"] .header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(96,165,250,0.5) 50%, transparent 100%);
}

/* Enhanced scrolled state */
.header.scrolled .logo svg {
    height: 34px;
}
@media (min-width: 768px) {
    .header.scrolled .logo svg { height: 38px; }
}

/* ============================================
   AI-Themed Futuristic Enhancements
   ============================================ */

/* Floating Particles Background Animation */
@keyframes floatParticle1 {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.4; }
    25% { transform: translate(20px, -30px) scale(1.1); opacity: 0.7; }
    50% { transform: translate(-10px, -50px) scale(0.9); opacity: 0.5; }
    75% { transform: translate(15px, -20px) scale(1.05); opacity: 0.6; }
}
@keyframes floatParticle2 {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.3; }
    33% { transform: translate(-25px, -40px) scale(1.15); opacity: 0.6; }
    66% { transform: translate(10px, -60px) scale(0.85); opacity: 0.4; }
}
@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(35, 104, 178, 0.15); }
    50% { box-shadow: 0 0 40px rgba(96, 165, 250, 0.25); }
}

/* Enhanced Card Hover Effects */
.card {
    position: relative;
}
.card::before {
    content: '';
    position: absolute;
    inset: -1px;
    background: linear-gradient(135deg, rgba(35, 104, 178, 0.1) 0%, transparent 50%, rgba(96, 165, 250, 0.1) 100%);
    border-radius: inherit;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}
.card:hover::before {
    opacity: 1;
}
[data-theme="dark"] .card:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 40px rgba(96, 165, 250, 0.08);
}

/* AI Glow for Section Labels */
.section-label {
    position: relative;
    transition: all 0.3s ease;
}
.section-label:hover {
    background: rgba(35, 104, 178, 0.15);
    box-shadow: 0 0 20px rgba(35, 104, 178, 0.2);
}
[data-theme="dark"] .section-label {
    background: rgba(96, 165, 250, 0.15);
}
[data-theme="dark"] .section-label:hover {
    background: rgba(96, 165, 250, 0.2);
    box-shadow: 0 0 25px rgba(96, 165, 250, 0.25);
}

/* Enhanced Hero Section with AI Effects */
.hero {
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 100%;
    background: radial-gradient(ellipse, rgba(35, 104, 178, 0.08) 0%, transparent 70%);
    pointer-events: none;
    animation: floatParticle1 20s ease-in-out infinite;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 60%;
    height: 80%;
    background: radial-gradient(ellipse, rgba(96, 165, 250, 0.06) 0%, transparent 70%);
    pointer-events: none;
    animation: floatParticle2 25s ease-in-out infinite;
}
[data-theme="dark"] .hero::before {
    background: radial-gradient(ellipse, rgba(96, 165, 250, 0.1) 0%, transparent 70%);
}
[data-theme="dark"] .hero::after {
    background: radial-gradient(ellipse, rgba(139, 92, 246, 0.08) 0%, transparent 70%);
}

/* Gradient Text Enhancement */
.gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 50%, #8b5cf6 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 5s ease infinite;
}
[data-theme="dark"] .gradient-text {
    background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 50%, #f472b6 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Enhanced Stat Cards with Glow */
.stat-card {
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.stat-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.1);
    pointer-events: none;
}
.stat-card:hover {
    animation: pulseGlow 2s ease infinite;
}
[data-theme="dark"] .stat-card:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.4), 0 0 50px rgba(96, 165, 250, 0.1);
}

/* Hero Stat Number Animation */
.hero-stat-number {
    position: relative;
    display: inline-block;
}
.hero-stat:hover .hero-stat-number {
    animation: pulseGlow 1.5s ease infinite;
}
[data-theme="dark"] .hero-stat-number {
    color: #60a5fa;
}

/* AI-Themed CTA Section Enhancement */
.cta-section {
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.1) 0%, transparent 30%);
    animation: floatParticle1 15s ease-in-out infinite;
}
.cta-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(255,255,255,0.05) 50%, transparent 100%);
    pointer-events: none;
}

/* Enhanced Footer with AI Effects */
.footer {
    position: relative;
}
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(35, 104, 178, 0.3), rgba(96, 165, 250, 0.3), transparent);
}
[data-theme="dark"] .footer::before {
    background: linear-gradient(90deg, transparent, rgba(96, 165, 250, 0.4), rgba(139, 92, 246, 0.4), transparent);
}
.footer-social a {
    position: relative;
    overflow: hidden;
}
.footer-social a::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(35, 104, 178, 0.2) 0%, rgba(96, 165, 250, 0.2) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.footer-social a:hover::before {
    opacity: 1;
}

/* Back to Top Button Enhancement */
.back-to-top {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    position: relative;
    overflow: hidden;
}
.back-to-top::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--accent) 0%, #8b5cf6 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.back-to-top:hover::before {
    opacity: 1;
}
.back-to-top:hover {
    box-shadow: 0 8px 25px rgba(35, 104, 178, 0.4), 0 0 40px rgba(96, 165, 250, 0.2);
}
.back-to-top svg {
    position: relative;
    z-index: 1;
}
[data-theme="dark"] .back-to-top:hover {
    box-shadow: 0 8px 30px rgba(96, 165, 250, 0.4), 0 0 50px rgba(139, 92, 246, 0.25);
}

/* Tech Pills Enhancement */
.tech-pill {
    position: relative;
    overflow: hidden;
}
.tech-pill::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}
.tech-pill:hover::before {
    left: 100%;
}

/* Page Header Enhancement */
.page-header {
    position: relative;
    overflow: hidden;
}
.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    right: -10%;
    width: 50%;
    height: 100%;
    background: radial-gradient(ellipse, rgba(35, 104, 178, 0.08) 0%, transparent 70%);
    pointer-events: none;
}
[data-theme="dark"] .page-header::before {
    background: radial-gradient(ellipse, rgba(96, 165, 250, 0.1) 0%, transparent 70%);
}

/* Contact Form Enhancement */
.contact-form {
    position: relative;
}
.contact-form::before {
    content: '';
    position: absolute;
    inset: -1px;
    background: linear-gradient(135deg, rgba(35, 104, 178, 0.15) 0%, transparent 30%, transparent 70%, rgba(96, 165, 250, 0.15) 100%);
    border-radius: inherit;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.contact-form:hover::before {
    opacity: 1;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    box-shadow: 0 0 0 3px rgba(35, 104, 178, 0.1), 0 0 20px rgba(35, 104, 178, 0.08);
}
[data-theme="dark"] .form-group input:focus,
[data-theme="dark"] .form-group select:focus,
[data-theme="dark"] .form-group textarea:focus {
    border-color: #60a5fa;
    box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.15), 0 0 25px rgba(96, 165, 250, 0.1);
}

/* ============================================
   Enhanced Hero Visual with AI Effects
   ============================================ */

/* Hero Image Container Enhancement */
.hero-visual {
    position: relative;
    z-index: 1;
}
.hero-visual::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(135deg, rgba(35, 104, 178, 0.15) 0%, rgba(96, 165, 250, 0.1) 100%);
    border-radius: var(--radius-xl);
    z-index: -1;
    transform: rotate(-2deg);
    transition: all 0.4s ease;
}
.hero-visual:hover::before {
    transform: rotate(-3deg) scale(1.02);
}
.hero-image {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 2px solid rgba(35, 104, 178, 0.1);
    box-shadow: 0 25px 60px rgba(35, 104, 178, 0.15), 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.hero-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(18, 61, 100, 0.4) 100%);
    z-index: 1;
    pointer-events: none;
    opacity: 0.6;
    transition: opacity 0.4s ease;
}
.hero-image::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 40%, rgba(255,255,255,0.1) 50%, transparent 60%);
    transform: rotate(30deg);
    transition: all 0.8s ease;
    z-index: 2;
    opacity: 0;
}
.hero-image:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 35px 80px rgba(35, 104, 178, 0.2), 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(96, 165, 250, 0.3);
}
.hero-image:hover::before {
    opacity: 0.3;
}
.hero-image:hover::after {
    opacity: 1;
    transform: rotate(30deg) translateX(100%);
}
.hero-image img {
    width: 100%;
    height: auto;
    transition: transform 0.6s ease;
}
.hero-image:hover img {
    transform: scale(1.05);
}
[data-theme="dark"] .hero-visual::before {
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.12) 0%, rgba(139, 92, 246, 0.08) 100%);
}
[data-theme="dark"] .hero-image {
    border-color: rgba(96, 165, 250, 0.15);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4), 0 0 60px rgba(96, 165, 250, 0.08);
}
[data-theme="dark"] .hero-image::before {
    background: linear-gradient(180deg, transparent 60%, rgba(15, 23, 42, 0.6) 100%);
}
[data-theme="dark"] .hero-image:hover {
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.5), 0 0 80px rgba(96, 165, 250, 0.12);
    border-color: rgba(96, 165, 250, 0.3);
}

/* Floating Decorative Elements */
.hero-visual::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 80px;
    top: -20px;
    right: -20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 20px;
    opacity: 0.15;
    transform: rotate(15deg);
    animation: floatParticle1 8s ease-in-out infinite;
    z-index: -1;
}
[data-theme="dark"] .hero-visual::after {
    background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 100%);
    opacity: 0.2;
}

/* Enhanced Hero Stats */
.hero-stats {
    position: relative;
}
.hero-stat {
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.hero-stat::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(35, 104, 178, 0.05) 0%, rgba(96, 165, 250, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.hero-stat:hover::before {
    opacity: 1;
}
.hero-stat::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transition: width 0.3s ease;
}
.hero-stat:hover::after {
    width: 60%;
}
[data-theme="dark"] .hero-stat::after {
    background: linear-gradient(90deg, #60a5fa, #a78bfa);
}

/* Hero Content Enhancement */
.hero-content {
    position: relative;
    z-index: 2;
}
.hero-badge {
    position: relative;
    overflow: hidden;
}
.hero-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.2), transparent);
    animation: shimmer 3s ease-in-out infinite;
}

/* Enhanced Marquee Section */
.marquee-section {
    position: relative;
    overflow: hidden;
}
.marquee-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(35, 104, 178, 0.2), rgba(96, 165, 250, 0.2), transparent);
}
.marquee-item {
    position: relative;
}
.marquee-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(35, 104, 178, 0.1) 0%, rgba(96, 165, 250, 0.1) 100%);
    border-radius: 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.marquee-item:hover::after {
    opacity: 1;
}

/* Service Image Enhancement */
.service-image {
    position: relative;
    overflow: hidden;
}
.service-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 70%, rgba(18, 61, 100, 0.3) 100%);
    z-index: 1;
    pointer-events: none;
}
.service-image img {
    transition: transform 0.5s ease;
}
.service-image:hover img {
    transform: scale(1.05);
}

/* Expertise Grid Visual Enhancement */
.expertise-visual {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
}
.expertise-visual::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, rgba(35, 104, 178, 0.2) 0%, transparent 50%, rgba(96, 165, 250, 0.2) 100%);
    border-radius: inherit;
    z-index: -1;
}
.expertise-visual img {
    border-radius: var(--radius-xl);
    transition: transform 0.5s ease;
}
.expertise-visual:hover img {
    transform: scale(1.03);
}
[data-theme="dark"] .expertise-visual::before {
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.15) 0%, transparent 50%, rgba(139, 92, 246, 0.15) 100%);
}

/* ============================================
   Enhanced Hero with AI Visuals
   ============================================ */

/* AI Background Particles */
.hero-ai-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}
.ai-particle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(35, 104, 178, 0.3) 0%, rgba(96, 165, 250, 0.2) 100%);
    filter: blur(40px);
}
.ai-particle-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
    animation: floatParticle1 20s ease-in-out infinite;
}
.ai-particle-2 {
    width: 300px;
    height: 300px;
    bottom: -50px;
    left: -50px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2) 0%, rgba(96, 165, 250, 0.15) 100%);
    animation: floatParticle2 25s ease-in-out infinite;
}
.ai-particle-3 {
    width: 200px;
    height: 200px;
    top: 40%;
    left: 30%;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(96, 165, 250, 0.1) 100%);
    animation: floatParticle1 18s ease-in-out infinite reverse;
}
.ai-particle-4 {
    width: 150px;
    height: 150px;
    top: 20%;
    right: 20%;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.1) 0%, rgba(249, 115, 22, 0.1) 100%);
    animation: floatParticle2 22s ease-in-out infinite;
}
.ai-particle-5 {
    width: 250px;
    height: 250px;
    bottom: 20%;
    right: 10%;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15) 0%, rgba(236, 72, 153, 0.1) 100%);
    animation: floatParticle1 28s ease-in-out infinite;
}
[data-theme="dark"] .ai-particle-1 {
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.25) 0%, rgba(139, 92, 246, 0.2) 100%);
}
[data-theme="dark"] .ai-particle-2 {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2) 0%, rgba(236, 72, 153, 0.15) 100%);
}
[data-theme="dark"] .ai-particle-3 {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2) 0%, rgba(96, 165, 250, 0.15) 100%);
}

/* Hero AI Visual Container */
.hero-ai-visual {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 450px;
}
.hero-ai-svg {
    width: 100%;
    height: auto;
    max-height: 500px;
    border-radius: var(--radius-xl);
    animation: float 6s ease-in-out infinite;
}

/* Floating Cards */
.hero-floating-cards {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(35, 104, 178, 0.1);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}
.floating-card svg {
    color: var(--accent);
    flex-shrink: 0;
}
.floating-card-1 {
    top: 10%;
    right: 5%;
    animation: floatCard1 4s ease-in-out infinite;
}
.floating-card-2 {
    bottom: 25%;
    left: 0;
    animation: floatCard2 5s ease-in-out infinite;
}
.floating-card-3 {
    bottom: 10%;
    right: 15%;
    animation: floatCard3 4.5s ease-in-out infinite;
}
@keyframes floatCard1 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(2deg); }
}
@keyframes floatCard2 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(-2deg); }
}
@keyframes floatCard3 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-12px) rotate(1deg); }
}
[data-theme="dark"] .floating-card {
    background: rgba(30, 41, 59, 0.95);
    border-color: rgba(96, 165, 250, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(96, 165, 250, 0.1);
    color: #ffffff;
}
[data-theme="dark"] .floating-card svg {
    color: #60a5fa;
}

/* Hero Badge Enhancement */
.hero-badge-text {
    background: linear-gradient(90deg, var(--success), #10b981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .hero-ai-visual {
        min-height: 350px;
    }
    .floating-card {
        padding: 10px 14px;
        font-size: 0.8rem;
    }
    .floating-card svg {
        width: 20px;
        height: 20px;
    }
}
@media (max-width: 768px) {
    .hero-floating-cards {
        display: none;
    }
    .ai-particle-1 {
        width: 250px;
        height: 250px;
    }
    .ai-particle-2 {
        width: 200px;
        height: 200px;
    }
}

/* ============================================
   AI Innovation Section
   ============================================ */
.ai-innovation-section {
    position: relative;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    overflow: hidden;
}
.ai-section-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}
.ai-grid-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(35, 104, 178, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(35, 104, 178, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}
@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}
[data-theme="dark"] .ai-innovation-section {
    background: linear-gradient(180deg, rgba(15, 23, 42, 1) 0%, rgba(10, 15, 26, 1) 100%);
}
[data-theme="dark"] .ai-grid-pattern {
    background-image:
        linear-gradient(rgba(96, 165, 250, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(96, 165, 250, 0.05) 1px, transparent 1px);
}

/* AI Features Grid */
.ai-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.ai-feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 28px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}
.ai-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent), #8b5cf6);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}
.ai-feature-card:hover::before {
    transform: scaleX(1);
}
.ai-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(35, 104, 178, 0.15);
    border-color: rgba(35, 104, 178, 0.2);
}
[data-theme="dark"] .ai-feature-card:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 40px rgba(96, 165, 250, 0.1);
    border-color: rgba(96, 165, 250, 0.2);
}

/* Main AI Feature Card */
.ai-feature-main {
    grid-column: span 2;
    grid-row: span 2;
    display: flex;
    flex-direction: column;
    padding: 0;
    overflow: hidden;
}
.ai-feature-visual {
    flex: 1;
    min-height: 280px;
    padding: 30px;
    background: linear-gradient(135deg, rgba(35, 104, 178, 0.05) 0%, rgba(96, 165, 250, 0.05) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}
.ai-feature-visual img {
    width: 100%;
    max-width: 500px;
    height: auto;
}
.ai-feature-content {
    padding: 30px;
}
.ai-feature-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}
.ai-feature-content p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.7;
}
.ai-feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}
.ai-tag {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    background: linear-gradient(135deg, rgba(35, 104, 178, 0.1) 0%, rgba(96, 165, 250, 0.1) 100%);
    border: 1px solid rgba(35, 104, 178, 0.15);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--primary);
    transition: all 0.3s ease;
}
.ai-tag:hover {
    background: linear-gradient(135deg, rgba(35, 104, 178, 0.15) 0%, rgba(96, 165, 250, 0.15) 100%);
    transform: translateY(-2px);
}
[data-theme="dark"] .ai-tag {
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.15) 0%, rgba(139, 92, 246, 0.1) 100%);
    border-color: rgba(96, 165, 250, 0.2);
    color: #60a5fa;
}
[data-theme="dark"] .ai-feature-visual {
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
}

/* Small AI Feature Cards */
.ai-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(35, 104, 178, 0.1) 0%, rgba(96, 165, 250, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}
.ai-card-icon svg {
    color: var(--primary);
    transition: all 0.3s ease;
}
.ai-feature-card:hover .ai-card-icon {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    transform: scale(1.1) rotate(5deg);
}
.ai-feature-card:hover .ai-card-icon svg {
    color: white;
}
.ai-feature-card h4 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-primary);
}
.ai-feature-card > p {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.6;
}
[data-theme="dark"] .ai-card-icon {
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.15) 0%, rgba(139, 92, 246, 0.1) 100%);
}
[data-theme="dark"] .ai-card-icon svg {
    color: #60a5fa;
}
[data-theme="dark"] .ai-feature-card:hover .ai-card-icon {
    background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 100%);
}

/* Responsive */
@media (max-width: 1024px) {
    .ai-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .ai-feature-main {
        grid-column: span 2;
        grid-row: span 1;
    }
}
@media (max-width: 768px) {
    .ai-features-grid {
        grid-template-columns: 1fr;
    }
    .ai-feature-main {
        grid-column: span 1;
    }
    .ai-feature-visual {
        min-height: 200px;
    }
}

/* ============================================
   Hero Globe Visualization
   ============================================ */
.hero-globe-container {
    position: relative;
    width: 100%;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Globe Wrapper */
.globe-wrapper {
    position: relative;
    width: 280px;
    height: 280px;
}

/* Globe Core */
.globe {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6 0%, #6366f1 50%, #8b5cf6 100%);
    box-shadow:
        0 0 60px rgba(99, 102, 241, 0.4),
        0 0 100px rgba(59, 130, 246, 0.3),
        inset 0 0 40px rgba(255, 255, 255, 0.1);
    animation: globePulse 4s ease-in-out infinite;
}

.globe-inner {
    position: absolute;
    inset: 15%;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 50%);
}

.globe-grid {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background:
        repeating-linear-gradient(0deg, transparent, transparent 12px, rgba(255,255,255,0.1) 12px, rgba(255,255,255,0.1) 13px),
        repeating-linear-gradient(90deg, transparent, transparent 12px, rgba(255,255,255,0.1) 12px, rgba(255,255,255,0.1) 13px);
    animation: globeRotate 30s linear infinite;
    opacity: 0.6;
}

.globe-glow {
    position: absolute;
    inset: -20%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.3) 0%, transparent 70%);
    animation: glowPulse 3s ease-in-out infinite;
}

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

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

@keyframes glowPulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

/* Globe Connections SVG */
.globe-connections {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    pointer-events: none;
}

.connection-line {
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
    animation: drawLine 3s ease-out forwards;
}

.line-1 { animation-delay: 0.1s; }
.line-2 { animation-delay: 0.3s; }
.line-3 { animation-delay: 0.5s; }
.line-4 { animation-delay: 0.7s; }
.line-5 { animation-delay: 0.9s; }
.line-6 { animation-delay: 1.1s; }
.line-7 { animation-delay: 1.3s; }
.line-8 { animation-delay: 1.5s; }

@keyframes drawLine {
    to { stroke-dashoffset: 0; }
}

/* Tech Orbits */
.tech-orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px dashed rgba(99, 102, 241, 0.2);
    animation: orbitRotate linear infinite;
}

.orbit-1 {
    width: 320px;
    height: 320px;
    animation-duration: 25s;
}

.orbit-2 {
    width: 420px;
    height: 420px;
    animation-duration: 35s;
    animation-direction: reverse;
}

.orbit-3 {
    width: 520px;
    height: 520px;
    animation-duration: 45s;
}

@keyframes orbitRotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Tech Icons */
.tech-icon {
    position: absolute;
    width: 48px;
    height: 48px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.1),
        0 0 30px rgba(99, 102, 241, 0.15);
    transition: all 0.3s ease;
    animation: counterRotate linear infinite;
}

.tech-icon:hover {
    transform: scale(1.2);
    box-shadow: 0 8px 40px rgba(99, 102, 241, 0.3);
    z-index: 10;
}

.tech-icon img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

/* Position icons around orbits */
.orbit-1 .tech-icon:nth-child(1) { top: 0; left: 50%; transform: translate(-50%, -50%); animation-duration: 25s; }
.orbit-1 .tech-icon:nth-child(2) { top: 50%; right: 0; transform: translate(50%, -50%); animation-duration: 25s; }
.orbit-1 .tech-icon:nth-child(3) { bottom: 0; left: 50%; transform: translate(-50%, 50%); animation-duration: 25s; }

.orbit-2 .tech-icon:nth-child(1) { top: 15%; left: 0; transform: translate(-50%, -50%); animation-duration: 35s; animation-direction: reverse; }
.orbit-2 .tech-icon:nth-child(2) { top: 15%; right: 0; transform: translate(50%, -50%); animation-duration: 35s; animation-direction: reverse; }
.orbit-2 .tech-icon:nth-child(3) { bottom: 15%; left: 0; transform: translate(-50%, 50%); animation-duration: 35s; animation-direction: reverse; }
.orbit-2 .tech-icon:nth-child(4) { bottom: 15%; right: 0; transform: translate(50%, 50%); animation-duration: 35s; animation-direction: reverse; }

.orbit-3 .tech-icon:nth-child(1) { top: 5%; left: 30%; transform: translate(-50%, -50%); animation-duration: 45s; }
.orbit-3 .tech-icon:nth-child(2) { top: 50%; right: 0; transform: translate(50%, -50%); animation-duration: 45s; }
.orbit-3 .tech-icon:nth-child(3) { bottom: 5%; right: 30%; transform: translate(50%, 50%); animation-duration: 45s; }
.orbit-3 .tech-icon:nth-child(4) { top: 50%; left: 0; transform: translate(-50%, -50%); animation-duration: 45s; }

@keyframes counterRotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(-360deg); }
}

/* Updated Floating Cards for Globe */
.hero-globe-container .floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 10px 16px;
    border-radius: 24px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(99, 102, 241, 0.1);
    z-index: 5;
    white-space: nowrap;
}

.hero-globe-container .floating-card svg {
    color: #6366f1;
    flex-shrink: 0;
}

.hero-globe-container .floating-card-1 {
    top: 5%;
    right: 10%;
    animation: floatCard1 4s ease-in-out infinite;
}

.hero-globe-container .floating-card-2 {
    top: 30%;
    left: 0;
    animation: floatCard2 5s ease-in-out infinite;
}

.hero-globe-container .floating-card-3 {
    bottom: 30%;
    right: 5%;
    animation: floatCard3 4.5s ease-in-out infinite;
}

.hero-globe-container .floating-card-4 {
    top: 50%;
    left: 5%;
    animation: floatCard4 5.5s ease-in-out infinite;
}

.hero-globe-container .floating-card-5 {
    bottom: 10%;
    left: 15%;
    animation: floatCard5 4.8s ease-in-out infinite;
}

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

@keyframes floatCard5 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(1.5deg); }
}

/* Globe Particles */
.globe-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.g-particle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, #6366f1 0%, #3b82f6 100%);
    opacity: 0.6;
}

.g-particle-1 {
    width: 8px;
    height: 8px;
    top: 20%;
    left: 25%;
    animation: gParticle1 6s ease-in-out infinite;
}

.g-particle-2 {
    width: 6px;
    height: 6px;
    top: 60%;
    left: 15%;
    animation: gParticle2 7s ease-in-out infinite;
}

.g-particle-3 {
    width: 10px;
    height: 10px;
    top: 30%;
    right: 20%;
    animation: gParticle3 5s ease-in-out infinite;
}

.g-particle-4 {
    width: 5px;
    height: 5px;
    bottom: 25%;
    right: 25%;
    animation: gParticle4 8s ease-in-out infinite;
}

.g-particle-5 {
    width: 7px;
    height: 7px;
    bottom: 40%;
    left: 30%;
    animation: gParticle5 6.5s ease-in-out infinite;
}

.g-particle-6 {
    width: 4px;
    height: 4px;
    top: 45%;
    right: 15%;
    animation: gParticle6 7.5s ease-in-out infinite;
}

@keyframes gParticle1 {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.6; }
    50% { transform: translate(20px, -30px) scale(1.3); opacity: 1; }
}

@keyframes gParticle2 {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.5; }
    50% { transform: translate(-15px, -25px) scale(1.2); opacity: 0.9; }
}

@keyframes gParticle3 {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.6; }
    50% { transform: translate(-20px, 20px) scale(1.4); opacity: 1; }
}

@keyframes gParticle4 {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.5; }
    50% { transform: translate(15px, 25px) scale(1.2); opacity: 0.8; }
}

@keyframes gParticle5 {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.6; }
    50% { transform: translate(-10px, -35px) scale(1.3); opacity: 1; }
}

@keyframes gParticle6 {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.5; }
    50% { transform: translate(25px, -15px) scale(1.5); opacity: 0.9; }
}

/* Dark Theme for Globe */
[data-theme="dark"] .globe {
    box-shadow:
        0 0 80px rgba(99, 102, 241, 0.5),
        0 0 120px rgba(59, 130, 246, 0.4),
        inset 0 0 40px rgba(255, 255, 255, 0.15);
}

[data-theme="dark"] .globe-glow {
    background: radial-gradient(circle, rgba(99, 102, 241, 0.4) 0%, transparent 70%);
}

[data-theme="dark"] .tech-orbit {
    border-color: rgba(99, 102, 241, 0.3);
}

[data-theme="dark"] .tech-icon {
    background: rgba(30, 41, 59, 0.95);
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(99, 102, 241, 0.2);
}

[data-theme="dark"] .hero-globe-container .floating-card {
    background: rgba(30, 41, 59, 0.95);
    color: #ffffff;
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(99, 102, 241, 0.2);
}

[data-theme="dark"] .hero-globe-container .floating-card svg {
    color: #60a5fa;
}

[data-theme="dark"] .g-particle {
    background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 100%);
}

/* Responsive Globe */
@media (max-width: 1200px) {
    .hero-globe-container {
        min-height: 450px;
    }
    .orbit-3 {
        width: 440px;
        height: 440px;
    }
}

@media (max-width: 1024px) {
    .hero-globe-container {
        min-height: 400px;
    }
    .globe-wrapper {
        width: 220px;
        height: 220px;
    }
    .globe {
        width: 140px;
        height: 140px;
    }
    .orbit-1 { width: 260px; height: 260px; }
    .orbit-2 { width: 340px; height: 340px; }
    .orbit-3 { width: 420px; height: 420px; }
    .tech-icon {
        width: 40px;
        height: 40px;
    }
    .tech-icon img {
        width: 22px;
        height: 22px;
    }
    .hero-globe-container .floating-card {
        padding: 8px 12px;
        font-size: 0.75rem;
    }
    .globe-connections {
        width: 400px;
        height: 400px;
    }
}

@media (max-width: 768px) {
    .hero-globe-container {
        min-height: 350px;
        margin-top: 40px;
    }
    .orbit-3 {
        display: none;
    }
    .orbit-1 { width: 220px; height: 220px; }
    .orbit-2 { width: 300px; height: 300px; }
    .globe-wrapper {
        width: 180px;
        height: 180px;
    }
    .globe {
        width: 120px;
        height: 120px;
    }
    .tech-icon {
        width: 36px;
        height: 36px;
    }
    .tech-icon img {
        width: 20px;
        height: 20px;
    }
    .hero-globe-container .floating-card-4,
    .hero-globe-container .floating-card-5 {
        display: none;
    }
    .globe-connections {
        width: 300px;
        height: 300px;
    }
}

@media (max-width: 480px) {
    .hero-globe-container {
        min-height: 280px;
    }
    .tech-orbit {
        border: none;
    }
    .orbit-2 {
        display: none;
    }
    .orbit-1 { width: 200px; height: 200px; }
    .globe-wrapper {
        width: 150px;
        height: 150px;
    }
    .globe {
        width: 100px;
        height: 100px;
    }
    .hero-globe-container .floating-card {
        display: none;
    }
    .globe-particles {
        display: none;
    }
}

/* ================================================
   FUTURISTIC TECH UNIVERSE - Hero Section Redesign
   ================================================ */

.hero-tech-universe {
    position: relative;
    width: 100%;
    min-height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.03) 0%, rgba(99, 102, 241, 0.05) 100%);
    border-radius: 24px;
}

/* Futuristic Background Effects */
.tech-bg-effects {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

/* Hexagonal Grid Pattern */
.hex-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(30deg, rgba(99, 102, 241, 0.03) 12%, transparent 12.5%, transparent 87%, rgba(99, 102, 241, 0.03) 87.5%, rgba(99, 102, 241, 0.03)),
        linear-gradient(150deg, rgba(99, 102, 241, 0.03) 12%, transparent 12.5%, transparent 87%, rgba(99, 102, 241, 0.03) 87.5%, rgba(99, 102, 241, 0.03)),
        linear-gradient(30deg, rgba(99, 102, 241, 0.03) 12%, transparent 12.5%, transparent 87%, rgba(99, 102, 241, 0.03) 87.5%, rgba(99, 102, 241, 0.03)),
        linear-gradient(150deg, rgba(99, 102, 241, 0.03) 12%, transparent 12.5%, transparent 87%, rgba(99, 102, 241, 0.03) 87.5%, rgba(99, 102, 241, 0.03)),
        linear-gradient(60deg, rgba(168, 85, 247, 0.02) 25%, transparent 25.5%, transparent 75%, rgba(168, 85, 247, 0.02) 75%, rgba(168, 85, 247, 0.02)),
        linear-gradient(60deg, rgba(168, 85, 247, 0.02) 25%, transparent 25.5%, transparent 75%, rgba(168, 85, 247, 0.02) 75%, rgba(168, 85, 247, 0.02));
    background-size: 80px 140px;
    background-position: 0 0, 0 0, 40px 70px, 40px 70px, 0 0, 40px 70px;
    opacity: 0.7;
}

/* Scanning Line Effect */
.scan-line {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(99, 102, 241, 0.4) 20%,
        rgba(168, 85, 247, 0.6) 50%,
        rgba(99, 102, 241, 0.4) 80%,
        transparent 100%);
    animation: scanDown 4s linear infinite;
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.5);
}

@keyframes scanDown {
    0% { top: -2px; opacity: 0; }
    5% { opacity: 1; }
    95% { opacity: 1; }
    100% { top: 100%; opacity: 0; }
}

/* Pulse Rings */
.pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px solid rgba(99, 102, 241, 0.3);
    animation: pulseExpand 4s ease-out infinite;
}

.pulse-ring-1 {
    width: 100px;
    height: 100px;
    animation-delay: 0s;
}

.pulse-ring-2 {
    width: 100px;
    height: 100px;
    animation-delay: 1.3s;
}

.pulse-ring-3 {
    width: 100px;
    height: 100px;
    animation-delay: 2.6s;
}

@keyframes pulseExpand {
    0% {
        width: 100px;
        height: 100px;
        opacity: 0.8;
        border-color: rgba(99, 102, 241, 0.5);
    }
    100% {
        width: 600px;
        height: 600px;
        opacity: 0;
        border-color: rgba(168, 85, 247, 0.1);
    }
}

/* Central AI Core */
.ai-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140px;
    height: 140px;
    z-index: 10;
}

.core-outer {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2) 0%, rgba(168, 85, 247, 0.2) 100%);
    border: 2px solid rgba(99, 102, 241, 0.4);
    animation: coreRotate 20s linear infinite;
    box-shadow:
        0 0 40px rgba(99, 102, 241, 0.3),
        inset 0 0 40px rgba(99, 102, 241, 0.1);
}

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

.core-middle {
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 10px 40px rgba(99, 102, 241, 0.2),
        0 0 0 1px rgba(99, 102, 241, 0.1);
    animation: corePulse 3s ease-in-out infinite;
}

@keyframes corePulse {
    0%, 100% {
        box-shadow:
            0 10px 40px rgba(99, 102, 241, 0.2),
            0 0 0 1px rgba(99, 102, 241, 0.1);
    }
    50% {
        box-shadow:
            0 10px 60px rgba(99, 102, 241, 0.4),
            0 0 0 3px rgba(99, 102, 241, 0.2);
    }
}

.core-inner {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a855f7 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: innerGlow 2s ease-in-out infinite alternate;
}

@keyframes innerGlow {
    0% {
        filter: drop-shadow(0 0 10px rgba(99, 102, 241, 0.5));
        transform: scale(1);
    }
    100% {
        filter: drop-shadow(0 0 20px rgba(168, 85, 247, 0.7));
        transform: scale(1.05);
    }
}

.circuit-svg {
    width: 40px;
    height: 40px;
    opacity: 0.9;
}

/* Connection Paths */
.connection-paths {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
}

.connection-path {
    fill: none;
    stroke: url(#connectionGradient);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-dasharray: 8 4;
    animation: flowDash 2s linear infinite;
    opacity: 0.6;
}

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

/* Tech Brand Nodes */
.tech-node {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(99, 102, 241, 0.1);
    z-index: 15;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: nodeFloat 6s ease-in-out infinite;
}

.tech-node:hover {
    transform: scale(1.15) translateY(-5px);
    box-shadow:
        0 15px 40px rgba(99, 102, 241, 0.25),
        0 0 0 2px rgba(99, 102, 241, 0.3);
}

.tech-node img,
.tech-node svg {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

/* Node Positions */
.node-salesforce {
    top: 15%;
    left: 20%;
    animation-delay: 0s;
}

.node-aws {
    top: 10%;
    right: 25%;
    animation-delay: 0.5s;
}

.node-mulesoft {
    top: 40%;
    left: 8%;
    animation-delay: 1s;
}

.node-slack {
    top: 35%;
    right: 10%;
    animation-delay: 1.5s;
}

.node-twilio {
    bottom: 35%;
    left: 15%;
    animation-delay: 2s;
}

.node-stripe {
    bottom: 30%;
    right: 18%;
    animation-delay: 2.5s;
}

.node-servicenow {
    bottom: 12%;
    left: 28%;
    animation-delay: 3s;
}

.node-zapier {
    bottom: 15%;
    right: 30%;
    animation-delay: 3.5s;
}

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

/* Holographic Feature Cards */
.holo-card {
    position: absolute;
    padding: 12px 18px;
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.9) 0%,
        rgba(241, 245, 249, 0.9) 100%);
    backdrop-filter: blur(12px);
    border-radius: 12px;
    border: 1px solid transparent;
    background-clip: padding-box;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #1e293b;
    z-index: 20;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    animation: holoFloat 5s ease-in-out infinite;
    transition: all 0.3s ease;
}

.holo-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 14px;
    padding: 2px;
    background: linear-gradient(135deg, #6366f1 0%, #a855f7 50%, #6366f1 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: borderFlow 3s linear infinite;
}

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

.holo-card:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 40px rgba(99, 102, 241, 0.2);
}

.holo-card svg {
    width: 20px;
    height: 20px;
    color: #6366f1;
    flex-shrink: 0;
}

.holo-card-1 {
    top: 8%;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0s;
}

.holo-card-2 {
    top: 50%;
    left: 3%;
    transform: translateY(-50%);
    animation-delay: 0.8s;
}

.holo-card-3 {
    top: 50%;
    right: 3%;
    transform: translateY(-50%);
    animation-delay: 1.6s;
}

.holo-card-4 {
    bottom: 8%;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 2.4s;
}

@keyframes holoFloat {
    0%, 100% {
        transform: translateY(0) var(--base-transform, translateX(0));
    }
    50% {
        transform: translateY(-8px) var(--base-transform, translateX(0));
    }
}

.holo-card-1 {
    --base-transform: translateX(-50%);
}

.holo-card-2, .holo-card-3 {
    --base-transform: translateY(-50%);
}

.holo-card-4 {
    --base-transform: translateX(-50%);
}

/* Floating Data Orbs */
.data-orb {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%,
        rgba(99, 102, 241, 0.8) 0%,
        rgba(168, 85, 247, 0.6) 50%,
        rgba(99, 102, 241, 0.4) 100%);
    box-shadow:
        0 0 20px rgba(99, 102, 241, 0.4),
        0 0 40px rgba(168, 85, 247, 0.2),
        inset 0 0 20px rgba(255, 255, 255, 0.3);
    z-index: 8;
    animation: orbFloat 8s ease-in-out infinite;
}

.orb-1 {
    width: 20px;
    height: 20px;
    top: 25%;
    left: 35%;
    animation-delay: 0s;
}

.orb-2 {
    width: 14px;
    height: 14px;
    top: 60%;
    right: 35%;
    animation-delay: 1s;
}

.orb-3 {
    width: 18px;
    height: 18px;
    bottom: 25%;
    left: 40%;
    animation-delay: 2s;
}

.orb-4 {
    width: 12px;
    height: 12px;
    top: 35%;
    right: 40%;
    animation-delay: 3s;
}

.orb-5 {
    width: 16px;
    height: 16px;
    bottom: 40%;
    right: 42%;
    animation-delay: 4s;
}

@keyframes orbFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0.7;
    }
    25% {
        transform: translateY(-15px) scale(1.1);
        opacity: 1;
    }
    50% {
        transform: translateY(-5px) scale(0.95);
        opacity: 0.8;
    }
    75% {
        transform: translateY(-20px) scale(1.05);
        opacity: 0.9;
    }
}

/* Dark Theme Support for Tech Universe */
[data-theme="dark"] .hero-tech-universe {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.8) 0%, rgba(30, 41, 59, 0.9) 100%);
}

[data-theme="dark"] .hex-grid {
    opacity: 0.4;
}

[data-theme="dark"] .scan-line {
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(99, 102, 241, 0.6) 20%,
        rgba(168, 85, 247, 0.8) 50%,
        rgba(99, 102, 241, 0.6) 80%,
        transparent 100%);
}

[data-theme="dark"] .core-middle {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
}

[data-theme="dark"] .tech-node {
    background: rgba(30, 41, 59, 0.95);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(99, 102, 241, 0.2);
}

[data-theme="dark"] .tech-node:hover {
    box-shadow:
        0 15px 40px rgba(99, 102, 241, 0.35),
        0 0 0 2px rgba(99, 102, 241, 0.4);
}

[data-theme="dark"] .holo-card {
    background: linear-gradient(135deg,
        rgba(30, 41, 59, 0.95) 0%,
        rgba(15, 23, 42, 0.95) 100%);
    color: #f1f5f9;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .holo-card svg {
    color: #818cf8;
}

[data-theme="dark"] .data-orb {
    box-shadow:
        0 0 30px rgba(99, 102, 241, 0.5),
        0 0 60px rgba(168, 85, 247, 0.3),
        inset 0 0 20px rgba(255, 255, 255, 0.2);
}

/* Responsive Styles for Tech Universe */
@media (max-width: 1200px) {
    .hero-tech-universe {
        min-height: 500px;
    }
    .tech-node {
        width: 54px;
        height: 54px;
    }
    .tech-node img,
    .tech-node svg {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 1024px) {
    .hero-tech-universe {
        min-height: 450px;
    }
    .ai-core {
        width: 120px;
        height: 120px;
    }
    .core-inner {
        width: 60px;
        height: 60px;
    }
    .circuit-svg {
        width: 32px;
        height: 32px;
    }
    .tech-node {
        width: 48px;
        height: 48px;
    }
    .tech-node img,
    .tech-node svg {
        width: 24px;
        height: 24px;
    }
    .holo-card {
        padding: 10px 14px;
        font-size: 0.8rem;
    }
    .holo-card svg {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 768px) {
    .hero-tech-universe {
        min-height: 400px;
        margin-top: 30px;
    }
    .ai-core {
        width: 100px;
        height: 100px;
    }
    .core-middle {
        top: 12px;
        left: 12px;
        right: 12px;
        bottom: 12px;
    }
    .core-inner {
        width: 50px;
        height: 50px;
    }
    .circuit-svg {
        width: 26px;
        height: 26px;
    }
    .tech-node {
        width: 42px;
        height: 42px;
        border-radius: 12px;
    }
    .tech-node img,
    .tech-node svg {
        width: 22px;
        height: 22px;
    }
    .node-mulesoft,
    .node-slack {
        display: none;
    }
    .holo-card-2,
    .holo-card-3 {
        display: none;
    }
    .connection-paths {
        opacity: 0.4;
    }
}

@media (max-width: 480px) {
    .hero-tech-universe {
        min-height: 320px;
    }
    .ai-core {
        width: 80px;
        height: 80px;
    }
    .core-middle {
        top: 10px;
        left: 10px;
        right: 10px;
        bottom: 10px;
    }
    .core-inner {
        width: 40px;
        height: 40px;
    }
    .circuit-svg {
        width: 22px;
        height: 22px;
    }
    .tech-node {
        width: 36px;
        height: 36px;
        border-radius: 10px;
    }
    .tech-node img,
    .tech-node svg {
        width: 18px;
        height: 18px;
    }
    .node-twilio,
    .node-stripe,
    .node-servicenow,
    .node-zapier {
        display: none;
    }
    .holo-card {
        padding: 8px 12px;
        font-size: 0.75rem;
    }
    .holo-card svg {
        width: 16px;
        height: 16px;
    }
    .data-orb {
        display: none;
    }
    .pulse-ring {
        display: none;
    }
    .connection-paths {
        display: none;
    }
}

/* ================================================================
   ORBITAL HUB - Clean Minimal Integration Visualization
   ================================================================ */

.orbital-hub {
    position: relative;
    width: 100%;
    max-width: 480px;
    height: 480px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Subtle Background */
.orbital-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.orbital-gradient {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

/* Orbital Rings */
.orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px dashed rgba(99, 102, 241, 0.15);
}

.orbit-1 {
    width: 180px;
    height: 180px;
}

.orbit-2 {
    width: 300px;
    height: 300px;
}

.orbit-3 {
    width: 420px;
    height: 420px;
    border-style: dotted;
    border-color: rgba(99, 102, 241, 0.1);
}

/* Connection Lines */
.connection-svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    z-index: 1;
}

.conn-line {
    stroke-dasharray: 4 4;
    animation: dashFlow 20s linear infinite;
}

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

/* Central Hub */
.central-hub {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    z-index: 10;
}

.hub-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid rgba(99, 102, 241, 0.3);
    animation: hubPulse 3s ease-in-out infinite;
}

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

.hub-core {
    position: absolute;
    inset: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(99, 102, 241, 0.35);
}

.hub-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

/* Platform Icons */
.platform-icon {
    position: absolute;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(99, 102, 241, 0.1);
    z-index: 5;
    transition: all 0.3s ease;
}

.platform-icon:hover {
    transform: scale(1.12);
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.2);
    border-color: rgba(99, 102, 241, 0.3);
}

.platform-icon img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

/* Position platforms in a circle - 8 positions at 45deg intervals */
.pi-1 { top: 4%; left: 50%; transform: translateX(-50%); }
.pi-2 { top: 15%; right: 12%; }
.pi-3 { top: 50%; right: 2%; transform: translateY(-50%); }
.pi-4 { bottom: 15%; right: 12%; }
.pi-5 { bottom: 4%; left: 50%; transform: translateX(-50%); }
.pi-6 { bottom: 15%; left: 12%; }
.pi-7 { top: 50%; left: 2%; transform: translateY(-50%); }
.pi-8 { top: 15%; left: 12%; }

/* Floating Dots */
.float-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #6366f1;
    opacity: 0.4;
    animation: floatDot 4s ease-in-out infinite;
}

.fd-1 { top: 30%; left: 25%; animation-delay: 0s; }
.fd-2 { top: 25%; right: 30%; animation-delay: 1s; }
.fd-3 { bottom: 30%; left: 30%; animation-delay: 2s; }
.fd-4 { bottom: 25%; right: 25%; animation-delay: 3s; }

@keyframes floatDot {
    0%, 100% { transform: translateY(0); opacity: 0.4; }
    50% { transform: translateY(-8px); opacity: 0.7; }
}

/* Dark Theme */
[data-theme="dark"] .orbital-gradient {
    background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
}

[data-theme="dark"] .orbit {
    border-color: rgba(99, 102, 241, 0.25);
}

[data-theme="dark"] .orbit-3 {
    border-color: rgba(99, 102, 241, 0.15);
}

[data-theme="dark"] .platform-icon {
    background: #1e293b;
    border-color: rgba(99, 102, 241, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .platform-icon:hover {
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.3);
    border-color: rgba(99, 102, 241, 0.4);
}

[data-theme="dark"] .hub-core {
    box-shadow: 0 8px 32px rgba(99, 102, 241, 0.5);
}

[data-theme="dark"] .float-dot {
    background: #818cf8;
}

/* Responsive */
@media (max-width: 1200px) {
    .orbital-hub {
        max-width: 420px;
        height: 420px;
    }
    .orbit-1 { width: 160px; height: 160px; }
    .orbit-2 { width: 260px; height: 260px; }
    .orbit-3 { width: 360px; height: 360px; }
    .connection-svg { width: 350px; height: 350px; }
    .central-hub { width: 80px; height: 80px; }
    .hub-logo { width: 36px; height: 36px; }
    .platform-icon { width: 46px; height: 46px; }
    .platform-icon img { width: 24px; height: 24px; }
}

@media (max-width: 1024px) {
    .orbital-hub {
        max-width: 380px;
        height: 380px;
    }
    .orbit-1 { width: 140px; height: 140px; }
    .orbit-2 { width: 230px; height: 230px; }
    .orbit-3 { width: 320px; height: 320px; }
    .connection-svg { width: 320px; height: 320px; }
    .central-hub { width: 70px; height: 70px; }
    .hub-logo { width: 32px; height: 32px; }
    .platform-icon { width: 42px; height: 42px; }
    .platform-icon img { width: 22px; height: 22px; }
}

@media (max-width: 768px) {
    .orbital-hub {
        max-width: 320px;
        height: 320px;
        margin-top: 20px;
    }
    .orbit-1 { width: 120px; height: 120px; }
    .orbit-2 { width: 200px; height: 200px; }
    .orbit-3 { width: 280px; height: 280px; }
    .connection-svg { width: 280px; height: 280px; }
    .central-hub { width: 60px; height: 60px; }
    .hub-logo { width: 28px; height: 28px; }
    .platform-icon { width: 38px; height: 38px; }
    .platform-icon img { width: 20px; height: 20px; }
    .float-dot { display: none; }
}

@media (max-width: 480px) {
    .orbital-hub {
        max-width: 280px;
        height: 280px;
    }
    .orbit-1 { width: 100px; height: 100px; }
    .orbit-2 { width: 170px; height: 170px; }
    .orbit-3 { width: 240px; height: 240px; }
    .connection-svg { width: 240px; height: 240px; }
    .central-hub { width: 50px; height: 50px; }
    .hub-core { inset: 6px; }
    .hub-logo { width: 24px; height: 24px; }
    .platform-icon { width: 32px; height: 32px; }
    .platform-icon img { width: 18px; height: 18px; }
    .pi-2, .pi-4, .pi-6, .pi-8 { display: none; }
}

/* ================================================================
   LEGACY NEURAL NETWORK (keeping for reference, not used)
   ================================================================ */

.hero-neural-network {
    display: none; /* Hidden - replaced by orbital-hub */
    position: relative;
    width: 100%;
    min-height: 580px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0a1a 0%, #1a0a2e 50%, #0a1a2e 100%);
    border-radius: 24px;
    box-shadow:
        0 0 80px rgba(0, 255, 242, 0.1),
        0 0 120px rgba(191, 0, 255, 0.05),
        inset 0 0 100px rgba(0, 0, 0, 0.5);
}

/* Cyber Grid Background */
.cyber-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.grid-plane {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 255, 242, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 242, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    animation: gridMove 20s linear infinite;
    transform: perspective(500px) rotateX(60deg);
    transform-origin: center bottom;
    opacity: 0.5;
}

@keyframes gridMove {
    0% { background-position: 0 0; }
    100% { background-position: 40px 40px; }
}

.cyber-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(191, 0, 255, 0.15) 0%, rgba(0, 255, 242, 0.1) 30%, transparent 70%);
    animation: cyberPulse 4s ease-in-out infinite;
}

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

.matrix-rain {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 255, 242, 0.02) 2px,
        rgba(0, 255, 242, 0.02) 4px
    );
    animation: matrixFall 0.5s linear infinite;
    opacity: 0.3;
}

@keyframes matrixFall {
    0% { background-position: 0 0; }
    100% { background-position: 0 4px; }
}

/* Neural Lines SVG */
.neural-lines {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
}

.neural-path {
    stroke-dasharray: 10 5;
    animation: neuralFlow 2s linear infinite;
}

.np-1 { animation-delay: 0s; }
.np-2 { animation-delay: 0.25s; }
.np-3 { animation-delay: 0.5s; }
.np-4 { animation-delay: 0.75s; }
.np-5 { animation-delay: 1s; }
.np-6 { animation-delay: 1.25s; }
.np-7 { animation-delay: 1.5s; }
.np-8 { animation-delay: 1.75s; }

@keyframes neuralFlow {
    0% { stroke-dashoffset: 30; opacity: 0.4; }
    50% { opacity: 0.8; }
    100% { stroke-dashoffset: 0; opacity: 0.4; }
}

.orbit-ring {
    stroke-dasharray: 10 20;
    animation: orbitRotate 30s linear infinite;
    transform-origin: center;
}

.ring-1 { animation-duration: 20s; }
.ring-2 { animation-duration: 30s; animation-direction: reverse; }
.ring-3 { animation-duration: 40s; }

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

/* Quantum Core */
.quantum-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    z-index: 20;
}

.qc-shell {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid transparent;
    animation: shellRotate 8s linear infinite;
}

.qc-shell-1 {
    border-color: rgba(0, 255, 242, 0.5);
    animation-duration: 6s;
    box-shadow: 0 0 20px rgba(0, 255, 242, 0.3), inset 0 0 20px rgba(0, 255, 242, 0.1);
}

.qc-shell-2 {
    inset: 10px;
    border-color: rgba(191, 0, 255, 0.5);
    animation-duration: 8s;
    animation-direction: reverse;
    box-shadow: 0 0 15px rgba(191, 0, 255, 0.3), inset 0 0 15px rgba(191, 0, 255, 0.1);
}

.qc-shell-3 {
    inset: 20px;
    border-color: rgba(255, 0, 128, 0.5);
    animation-duration: 10s;
    box-shadow: 0 0 10px rgba(255, 0, 128, 0.3), inset 0 0 10px rgba(255, 0, 128, 0.1);
}

@keyframes shellRotate {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.05); }
    100% { transform: rotate(360deg) scale(1); }
}

.qc-nucleus {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00fff2 0%, #bf00ff 50%, #ff0080 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 0 40px rgba(0, 255, 242, 0.5),
        0 0 60px rgba(191, 0, 255, 0.3),
        0 0 80px rgba(255, 0, 128, 0.2);
    animation: nucleusPulse 2s ease-in-out infinite;
}

@keyframes nucleusPulse {
    0%, 100% { box-shadow: 0 0 40px rgba(0, 255, 242, 0.5), 0 0 60px rgba(191, 0, 255, 0.3), 0 0 80px rgba(255, 0, 128, 0.2); }
    50% { box-shadow: 0 0 60px rgba(0, 255, 242, 0.7), 0 0 80px rgba(191, 0, 255, 0.5), 0 0 100px rgba(255, 0, 128, 0.3); }
}

.qc-energy {
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    background: conic-gradient(from 0deg, transparent, #00fff2, transparent, #bf00ff, transparent, #ff0080, transparent);
    animation: energySpin 3s linear infinite;
    opacity: 0.6;
}

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

.qc-label {
    font-size: 0.7rem;
    font-weight: 800;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    letter-spacing: 2px;
    z-index: 5;
}

/* Platform Nodes */
.platform-node {
    position: absolute;
    width: 65px;
    height: 65px;
    z-index: 15;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.platform-node:hover {
    transform: scale(1.2) translateY(-5px);
    z-index: 25;
}

.platform-node:hover .pn-label {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.platform-node:hover .pn-glow {
    opacity: 1;
    transform: scale(1.5);
}

.pn-glow {
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 255, 242, 0.4) 0%, transparent 70%);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 1;
}

.pn-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid rgba(0, 255, 242, 0.3);
    animation: ringPulse 2s ease-in-out infinite;
}

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

.pn-icon {
    position: absolute;
    inset: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(0, 255, 242, 0.2);
    z-index: 2;
}

.pn-icon img {
    width: 70%;
    height: 70%;
    object-fit: contain;
}

.pn-label {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    font-size: 0.7rem;
    font-weight: 600;
    color: #00fff2;
    text-shadow: 0 0 10px rgba(0, 255, 242, 0.5);
    white-space: nowrap;
    opacity: 0;
    transition: all 0.3s ease;
}

/* Small nodes */
.pn-small {
    width: 45px;
    height: 45px;
}

.pn-small .pn-icon img {
    width: 60%;
    height: 60%;
}

/* Node Positions - Inner Ring */
.pn-salesforce { top: 8%; left: 50%; transform: translateX(-50%); }
.pn-aws { top: 25%; right: 12%; }
.pn-zoho { bottom: 25%; right: 12%; }
.pn-mulesoft { bottom: 8%; left: 50%; transform: translateX(-50%); }

/* Node Positions - Outer Ring */
.pn-twilio { top: 25%; left: 8%; }
.pn-slack { top: 50%; right: 3%; transform: translateY(-50%); }
.pn-servicenow { bottom: 25%; left: 8%; }
.pn-stripe { top: 50%; left: 3%; transform: translateY(-50%); }

/* Small Nodes Scattered */
.pn-jira { top: 12%; left: 25%; }
.pn-zendesk { top: 12%; right: 25%; }
.pn-ringcentral { bottom: 12%; left: 25%; }
.pn-docusign { bottom: 12%; right: 25%; }

/* Custom colors for specific platforms */
.pn-salesforce .pn-ring { border-color: rgba(0, 161, 224, 0.5); }
.pn-salesforce .pn-glow { background: radial-gradient(circle, rgba(0, 161, 224, 0.4) 0%, transparent 70%); }

.pn-aws .pn-ring { border-color: rgba(255, 153, 0, 0.5); }
.pn-aws .pn-glow { background: radial-gradient(circle, rgba(255, 153, 0, 0.4) 0%, transparent 70%); }

.pn-zoho .pn-ring { border-color: rgba(226, 40, 39, 0.5); }
.pn-zoho .pn-glow { background: radial-gradient(circle, rgba(226, 40, 39, 0.4) 0%, transparent 70%); }

.pn-mulesoft .pn-ring { border-color: rgba(0, 164, 189, 0.5); }
.pn-mulesoft .pn-glow { background: radial-gradient(circle, rgba(0, 164, 189, 0.4) 0%, transparent 70%); }

.pn-twilio .pn-ring { border-color: rgba(242, 47, 70, 0.5); }
.pn-twilio .pn-glow { background: radial-gradient(circle, rgba(242, 47, 70, 0.4) 0%, transparent 70%); }

.pn-slack .pn-ring { border-color: rgba(74, 21, 75, 0.5); }
.pn-slack .pn-glow { background: radial-gradient(circle, rgba(74, 21, 75, 0.4) 0%, transparent 70%); }

.pn-servicenow .pn-ring { border-color: rgba(129, 183, 35, 0.5); }
.pn-servicenow .pn-glow { background: radial-gradient(circle, rgba(129, 183, 35, 0.4) 0%, transparent 70%); }

.pn-stripe .pn-ring { border-color: rgba(99, 91, 255, 0.5); }
.pn-stripe .pn-glow { background: radial-gradient(circle, rgba(99, 91, 255, 0.4) 0%, transparent 70%); }

/* Holographic Stats Cards */
.holo-stat-card {
    position: absolute;
    padding: 12px 16px;
    background: rgba(10, 10, 26, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    z-index: 25;
    animation: holoCardFloat 4s ease-in-out infinite;
}

.hsc-border {
    position: absolute;
    inset: 0;
    border-radius: 12px;
    padding: 1px;
    background: linear-gradient(135deg, #00fff2 0%, #bf00ff 50%, #ff0080 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: borderGlow 2s ease-in-out infinite;
}

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

.hsc-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hsc-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hsc-icon svg {
    width: 24px;
    height: 24px;
    color: #00fff2;
    filter: drop-shadow(0 0 8px rgba(0, 255, 242, 0.5));
}

.hsc-text {
    display: flex;
    flex-direction: column;
}

.hsc-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.hsc-label {
    font-size: 0.7rem;
    color: rgba(0, 255, 242, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Stat card positions */
.hsc-1 { top: 5%; right: 5%; animation-delay: 0s; }
.hsc-2 { bottom: 5%; left: 5%; animation-delay: 1s; }
.hsc-3 { bottom: 5%; right: 5%; animation-delay: 2s; }

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

/* Energy Particles */
.energy-particle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, #00fff2 0%, transparent 70%);
    animation: particleFloat 8s ease-in-out infinite;
    z-index: 10;
}

.ep-1 { width: 8px; height: 8px; top: 20%; left: 30%; animation-delay: 0s; }
.ep-2 { width: 6px; height: 6px; top: 40%; left: 15%; animation-delay: 1s; background: radial-gradient(circle, #bf00ff 0%, transparent 70%); }
.ep-3 { width: 10px; height: 10px; top: 60%; left: 25%; animation-delay: 2s; background: radial-gradient(circle, #ff0080 0%, transparent 70%); }
.ep-4 { width: 7px; height: 7px; top: 80%; left: 40%; animation-delay: 3s; }
.ep-5 { width: 9px; height: 9px; top: 25%; right: 25%; animation-delay: 4s; background: radial-gradient(circle, #bf00ff 0%, transparent 70%); }
.ep-6 { width: 5px; height: 5px; top: 55%; right: 20%; animation-delay: 5s; background: radial-gradient(circle, #ff0080 0%, transparent 70%); }
.ep-7 { width: 8px; height: 8px; top: 75%; right: 35%; animation-delay: 6s; }
.ep-8 { width: 6px; height: 6px; top: 35%; right: 40%; animation-delay: 7s; background: radial-gradient(circle, #bf00ff 0%, transparent 70%); }

@keyframes particleFloat {
    0%, 100% {
        transform: translateY(0) translateX(0) scale(1);
        opacity: 0.6;
    }
    25% {
        transform: translateY(-20px) translateX(10px) scale(1.2);
        opacity: 1;
    }
    50% {
        transform: translateY(-10px) translateX(-5px) scale(0.8);
        opacity: 0.8;
    }
    75% {
        transform: translateY(-25px) translateX(15px) scale(1.1);
        opacity: 0.9;
    }
}

/* Light Theme Adjustments */
[data-theme="light"] .hero-neural-network {
    background: linear-gradient(135deg, #f0f4ff 0%, #e8e0ff 50%, #e0f0ff 100%);
    box-shadow:
        0 0 80px rgba(99, 102, 241, 0.15),
        0 0 120px rgba(168, 85, 247, 0.1),
        inset 0 0 100px rgba(255, 255, 255, 0.8);
}

[data-theme="light"] .grid-plane {
    background-image:
        linear-gradient(rgba(99, 102, 241, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(99, 102, 241, 0.08) 1px, transparent 1px);
}

[data-theme="light"] .cyber-glow {
    background: radial-gradient(circle, rgba(168, 85, 247, 0.15) 0%, rgba(99, 102, 241, 0.1) 30%, transparent 70%);
}

[data-theme="light"] .pn-icon {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(99, 102, 241, 0.1);
}

[data-theme="light"] .qc-nucleus {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a855f7 100%);
}

[data-theme="light"] .pn-label {
    color: #6366f1;
    text-shadow: none;
}

[data-theme="light"] .holo-stat-card {
    background: rgba(255, 255, 255, 0.9);
}

[data-theme="light"] .hsc-value {
    color: #1e293b;
    text-shadow: none;
}

[data-theme="light"] .hsc-label {
    color: #6366f1;
}

[data-theme="light"] .hsc-icon svg {
    color: #6366f1;
    filter: none;
}

[data-theme="light"] .hsc-border {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a855f7 100%);
}

[data-theme="light"] .neural-path {
    opacity: 0.3;
}

[data-theme="light"] .energy-particle {
    opacity: 0.4;
}

/* Responsive Styles for Neural Network */
@media (max-width: 1200px) {
    .hero-neural-network {
        min-height: 520px;
    }
    .platform-node {
        width: 55px;
        height: 55px;
    }
    .pn-small {
        width: 40px;
        height: 40px;
    }
    .quantum-core {
        width: 100px;
        height: 100px;
    }
    .qc-nucleus {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 1024px) {
    .hero-neural-network {
        min-height: 480px;
    }
    .platform-node {
        width: 50px;
        height: 50px;
    }
    .pn-small {
        width: 36px;
        height: 36px;
    }
    .quantum-core {
        width: 90px;
        height: 90px;
    }
    .qc-nucleus {
        width: 50px;
        height: 50px;
    }
    .qc-label {
        font-size: 0.6rem;
    }
    .holo-stat-card {
        padding: 10px 14px;
    }
    .hsc-value {
        font-size: 1rem;
    }
    .hsc-label {
        font-size: 0.6rem;
    }
}

@media (max-width: 768px) {
    .hero-neural-network {
        min-height: 420px;
        margin-top: 30px;
    }
    .platform-node {
        width: 44px;
        height: 44px;
    }
    .pn-small {
        display: none;
    }
    .quantum-core {
        width: 80px;
        height: 80px;
    }
    .qc-nucleus {
        width: 45px;
        height: 45px;
    }
    .hsc-3 {
        display: none;
    }
    .neural-lines {
        opacity: 0.6;
    }
    .energy-particle {
        display: none;
    }
    .pn-twilio,
    .pn-stripe {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-neural-network {
        min-height: 350px;
    }
    .platform-node {
        width: 38px;
        height: 38px;
    }
    .pn-icon img {
        width: 60%;
        height: 60%;
    }
    .quantum-core {
        width: 65px;
        height: 65px;
    }
    .qc-nucleus {
        width: 38px;
        height: 38px;
    }
    .qc-label {
        font-size: 0.5rem;
        letter-spacing: 1px;
    }
    .holo-stat-card {
        display: none;
    }
    .pn-servicenow,
    .pn-slack {
        display: none;
    }
    .grid-plane {
        display: none;
    }
    .neural-lines {
        opacity: 0.4;
    }
}
