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

/* Global typing-text cleanup - remove all backgrounds and borders */
.typing-text,
.typing-text-2025 {
    background: transparent !important;
    padding: 0 !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

:root {
    /* Enhanced Color Palette */
    --primary-bg: #0a0a0a;
    --secondary-bg: #111111;
    --accent-bg: #1a1a1a;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --primary-color: #00d4ff;
    --secondary-color: #8b5cf6;
    --accent-color: #10b981;
    --electronic-purple: #9d4edd;
    --text-primary: #ffffff;
    --text-secondary: #a1a1aa;
    --text-muted: #71717a;
    --border-color: #27272a;
    
    /* Enhanced Gradients */
    --gradient-primary: linear-gradient(135deg, #00d4ff 0%, #8b5cf6 50%, #10b981 100%);
    --gradient-secondary: linear-gradient(135deg, #8b5cf6 0%, #10b981 50%, #00d4ff 100%);
    --gradient-accent: linear-gradient(135deg, #10b981 0%, #00d4ff 50%, #8b5cf6 100%);
    --gradient-purple: linear-gradient(135deg, #9d4edd 0%, #c77dff 50%, #9d4edd 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    --gradient-hero: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(139, 92, 246, 0.1) 50%, rgba(16, 185, 129, 0.1) 100%);
    
    /* Enhanced Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    --font-size-5xl: 3rem;
    --font-size-6xl: 3.75rem;
    --font-size-7xl: 4.5rem;
    
    /* Enhanced Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    --spacing-3xl: 6rem;
    --spacing-4xl: 8rem;
    
    /* Enhanced Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-3xl: 2rem;
    --radius-full: 9999px;
    
    /* Enhanced Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-neon: 0 0 20px rgba(0, 212, 255, 0.3);
    --shadow-purple: 0 0 20px rgba(139, 92, 246, 0.3);
    --shadow-green: 0 0 20px rgba(16, 185, 129, 0.3);
    --shadow-glass: 0 8px 32px rgba(0, 0, 0, 0.1);
    --shadow-glass-hover: 0 12px 40px rgba(0, 0, 0, 0.15);
    
    /* Enhanced 3D Transforms */
    --transform-3d-sm: perspective(1000px) rotateX(5deg) rotateY(5deg);
    --transform-3d-md: perspective(1000px) rotateX(10deg) rotateY(10deg);
    --transform-3d-lg: perspective(1000px) rotateX(15deg) rotateY(15deg);
    --transform-hover: perspective(1000px) rotateX(2deg) rotateY(2deg) translateZ(20px);
    --transform-glass: perspective(1000px) rotateX(1deg) rotateY(1deg) translateZ(10px);
    
    /* Enhanced Responsive Variables */
    --animation-duration: 0.5s;
    --transition-duration: 0.3s;
    --backdrop-filter: blur(20px);
    --backdrop-filter-light: blur(10px);
    --box-shadow-complexity: complex;
    --cta-height: 140px;
    --font-size-multiplier: 1;
    --hover-effect: auto;
    --touch-target-size: auto;
    
    /* Enhanced Navbar Specific Variables */
    --navbar-height: 80px;
    --navbar-bg: rgba(10, 10, 10, 0.8);
    --navbar-border: rgba(255, 255, 255, 0.1);
    --navbar-blur: blur(20px);
    --navbar-glow: rgba(0, 212, 255, 0.1);
    
    /* Glassmorphism Variables */
    --glass-opacity: 0.1;
    --glass-border-opacity: 0.2;
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    --glass-backdrop: blur(20px);
}

body {
    font-family: var(--font-family);
    background-color: var(--primary-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 80px;
    font-feature-settings: "cv02", "cv03", "cv04", "cv11";
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y;
}

/* Enhanced Scrolling for All Devices */
html {
    scroll-behavior: auto;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y;
}

/* Mobile-specific scroll optimizations */
@media (max-width: 768px) {
    /* Hide floating decorative layer entirely on mobile */
    .floating-elements,
    .floating-elements-2025 {
        display: none !important;
    }
    html {
        scroll-behavior: auto;
        -webkit-overflow-scrolling: touch;
        touch-action: pan-y;
        overscroll-behavior: none;
        -webkit-tap-highlight-color: transparent;
    }
    
    body {
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
        touch-action: pan-y;
        overscroll-behavior: none;
        -webkit-tap-highlight-color: transparent;
    }
    
    /* Prevent bounce scrolling on iOS */
    .hero, .about, .services, .projects, .team, .contact {
        overscroll-behavior: none;
        -webkit-overflow-scrolling: touch;
    }
}

/* Enhanced Modern Navbar Styles */
.modern-navbar,
.modern-navbar-2025 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.7);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    box-shadow: 
        0 4px 32px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.05) inset;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform, opacity;
    animation: navbarGlow 15s ease-in-out infinite alternate;
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

/* Navbar scroll behavior */
.modern-navbar.navbar-hidden {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}

.modern-navbar.navbar-visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

/* Mobile navbar - fixed position for better UX */
@media (max-width: 768px) {
    .modern-navbar {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        animation: none;
        /* Sabit arka plan - scroll efektleri yok */
        background: linear-gradient(135deg, rgba(10, 10, 10, 0.95) 0%, rgba(17, 17, 17, 0.85) 100%);
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(0, 212, 255, 0.1);
        border-bottom: 1px solid rgba(0, 212, 255, 0.2);
        z-index: 1000;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        will-change: transform, opacity;
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }
    
    /* Mobilde scroll efektlerini devre dışı bırak */
    /* .modern-navbar.scrolled styles removed to prevent conflicts */
    
    /* Mobilde navbar scroll davranışı */
    .modern-navbar.navbar-hidden {
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
    }
    
    .modern-navbar.navbar-visible {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }
    
    /* Mobilde body padding'i navbar yüksekliğine göre ayarla */
    body {
        padding-top: 80px;
    }
}

@keyframes navbarGlow {
    0% {
        box-shadow: 
            0 4px 32px rgba(0, 0, 0, 0.1),
            0 0 0 1px rgba(255, 255, 255, 0.05) inset,
            0 0 20px rgba(0, 212, 255, 0.1);
    }
    100% {
        box-shadow: 
            0 4px 32px rgba(0, 0, 0, 0.1),
            0 0 0 1px rgba(255, 255, 255, 0.08) inset,
            0 0 30px rgba(0, 212, 255, 0.2);
    }
}

/* .modern-navbar.scrolled styles removed to prevent conflicts with smooth transitions */

.nav-container,
.nav-container-2025 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 25px;
}

/* Logo Section */
.nav-logo-section,
.nav-logo-section-2025 {
    flex-shrink: 0;
    padding-left: 24px;
}

.logo-container,
.logo-container-2025 {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo-container:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.logo-icon,
.logo-icon-2025 {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #ffffff;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
    transition: all 0.3s ease;
}

.logo-icon:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.5);
}

/* Logo Image */
.logo-image {
    width: 28px;
    height: 28px;
    object-fit: contain;
    transition: all 0.3s ease;
    animation: logoFloat 3s ease-in-out infinite;
    display: block;
}

/* Disable logo float animation inside navbar */
.modern-navbar .logo-image {
    animation: none !important;
}
.modern-navbar .logo-image:hover {
    transform: none;
    filter: none;
}

.logo-image:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.8));
}

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

.logo-text,
.logo-text-2025 {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.logo-title,
.logo-title-2025 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    transition: all 0.3s ease;
}

.logo-subtitle,
.logo-subtitle-2025 {
    font-size: 0.75rem;
    color: #a1a1aa;
    font-weight: 400;
    transition: all 0.3s ease;
}

.logo-container:hover .logo-title {
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.logo-container:hover .logo-subtitle {
    color: var(--primary-color);
}

/* Desktop Menu */
.nav-menu-desktop,
.nav-menu-desktop-2025 {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-menu-list,
.nav-menu-list-2025 {
    display: flex;
    align-items: center;
    gap: 25px;
    list-style: none;
}

.nav-menu-item,
.nav-menu-item-2025 {
    position: relative;
}

.nav-menu-link,
.nav-menu-link-2025 {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    color: #a1a1aa;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid transparent;
}

.nav-menu-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
    transition: left 0.5s ease;
}

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

.nav-menu-link:hover {
    color: var(--primary-color);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.nav-menu-link.active {
    color: var(--primary-color);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
}

.nav-link-icon,
.nav-link-icon-2025 {
    font-size: 16px;
    color: #a1a1aa;
    transition: all 0.3s ease;
}

.nav-link-text,
.nav-link-text-2025 {
    font-size: 15px;
    color: #a1a1aa;
    transition: all 0.3s ease;
}

.nav-menu-link:hover .nav-link-icon,
.nav-menu-link:hover .nav-link-text,
.nav-menu-link.active .nav-link-icon,
.nav-menu-link.active .nav-link-text,
.nav-menu-link-2025:hover .nav-link-icon-2025,
.nav-menu-link-2025:hover .nav-link-text-2025,
.nav-menu-link-2025.active .nav-link-icon-2025,
.nav-menu-link-2025.active .nav-link-text-2025 {
    color: var(--primary-color);
}

/* Nav Link Indicator */
.nav-link-indicator,
.nav-link-indicator-2025 {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-menu-link:hover .nav-link-indicator,
.nav-menu-link.active .nav-link-indicator,
.nav-menu-link-2025:hover .nav-link-indicator-2025,
.nav-menu-link-2025.active .nav-link-indicator-2025 {
    width: 80%;
}

/* Move contact button to the left */
.nav-menu-item:last-child {
    /* margin-left: -20px; removed for consistent spacing */
}

/* Action Buttons */
.nav-actions {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    flex-shrink: 0;
}

.nav-action-btn {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-sm) var(--spacing-md);
    border: none;
    border-radius: var(--radius-md);
    font-size: var(--font-size-sm);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

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

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

.nav-action-btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-action-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    color: var(--text-primary);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.nav-action-btn.primary {
    background: var(--gradient-primary);
    color: var(--text-primary);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.nav-action-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.4);
}

/* Navbar Background */
.nav-background,
.nav-background-2025 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

/* Navbar Blur */
.nav-blur,
.nav-blur-2025 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

/* Navbar Glow */
.nav-glow,
.nav-glow-2025 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    opacity: 0.5;
}

/* Mobile Bottom Menubar */
.mobile-bottom-menubar {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
    display: none;
}

.mobile-menubar-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 14px;
}

.mobile-menubar-toggle:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.toggle-icon {
    font-size: 16px;
}

.toggle-text {
    font-size: 14px;
}

.mobile-menubar-content {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.7);
    -webkit-backdrop-filter: blur(24px) saturate(160%);
    backdrop-filter: blur(24px) saturate(160%);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.15);
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    max-height: 80vh;
    overflow-y: auto;
    border-radius: 20px 20px 0 0;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y;
}

.mobile-menubar-content.active {
    transform: translateY(0);
}

/* Backdrop blur when menubar is open */
body.menubar-open::before {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.35);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    z-index: 998; /* below menubar (999) */
}

/* Hide chatbot while menubar is open */
body.menubar-open .ai-chatbot {
    display: none !important;
}

/* Mobile Chatbot Positioning */
@media (max-width: 768px) {
    .ai-chatbot {
        bottom: 20px !important;
        right: 20px !important;
        left: auto !important;
        top: auto !important;
    }
    
    .chatbot-container {
        bottom: 80px !important;
        right: 0 !important;
        left: auto !important;
    }
}





.menubar-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.1);
    border: none;
    border-radius: 50%;
    color: #6b7280;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    font-size: 18px;
}

.menubar-close-btn:hover {
    background: rgba(0, 0, 0, 0.2);
    color: #374151;
    transform: scale(1.1);
}

.menubar-menu-list {
    list-style: none;
    margin: 0;
    padding: 70px 40px 20px 60px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.menubar-menu-item {
    position: relative;
}

.menubar-menu-link {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    color: #374151;
    text-decoration: none;
    font-weight: 500;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.menubar-menu-link:hover {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
    transform: translateX(8px);
}

.menubar-menu-link.active {
    background: rgba(59, 130, 246, 0.15);
    color: #3b82f6;
    border-color: rgba(59, 130, 246, 0.2);
}

.menubar-link-icon {
    width: 36px;
    height: 36px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #3b82f6;
    transition: all 0.3s ease;
}

.menubar-menu-link:hover .menubar-link-icon,
.menubar-menu-link.active .menubar-link-icon {
    background: #3b82f6;
    color: white;
}

.menubar-link-text {
    font-size: 16px;
    font-weight: 500;
}



/* Responsive Design */
@media (max-width: 1024px) {
    .nav-menu-desktop {
        display: none;
    }
    
    .mobile-bottom-menubar {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: var(--spacing-sm);
    }
    
    .nav-actions {
        gap: var(--spacing-xs);
    }
    
    .nav-action-btn.primary span {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 var(--spacing-sm);
        gap: var(--spacing-md);
        justify-content: center;
    }
    
    .nav-logo-section {
        padding-left: 0;
        margin: 0;
        flex: 1;
        display: flex;
        justify-content: center;
    }

    /* Mobile: logo left, brand text to its right on one line */
    .logo-container {
        flex-direction: row;
    }
    .logo-text {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2px;
        text-align: center;
        white-space: nowrap;
    }
    .logo-subtitle {
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    /* Make mobile logo brand same size as desktop and slow animation */
    .logo-icon {
        width: 48px;
        height: 48px;
    }

    .logo-image {
        width: 40px;
        height: 40px;
        animation: logoFloat 6s ease-in-out infinite;
    }

    .logo-title {
        font-size: 1.25rem;
        white-space: nowrap;
    }

    .logo-subtitle {
        font-size: 0.75rem;
        white-space: nowrap;
    }
    
    .logo-title {
        font-size: 1.125rem;
    }
    
    .logo-subtitle {
        font-size: 0.7rem;
    }
    
    .nav-actions {
        gap: var(--spacing-xs);
    }
    
    .nav-action-btn {
        padding: var(--spacing-xs) var(--spacing-sm);
    }
    
    .nav-action-btn.secondary {
        display: none;
    }
    
    .mobile-menubar-content {
        max-height: 70vh;
    }
    
    .menubar-close-btn {
        width: 35px;
        height: 35px;
        font-size: 16px;
        top: 15px;
        right: 15px;
    }
    
    .menubar-menu-list {
        padding: 60px 40px 20px 60px;
    }
    

    

}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 var(--spacing-sm);
    }
    
    .logo-text {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2px;
    }
    
    .nav-action-btn.primary {
        padding: var(--spacing-xs);
    }
    
    .nav-action-btn.primary i {
        font-size: 0.875rem;
    }
    
    .mobile-menubar-content {
        max-height: 60vh;
    }
    
    .menubar-close-btn {
        width: 32px;
        height: 32px;
        font-size: 14px;
        top: 12px;
        right: 12px;
    }
    
    .menubar-menu-list {
        padding: 55px 40px 20px 60px;
    }
    

    

    
    .menubar-menu-list {
        padding: 16px 20px;
    }
    
    .menubar-menu-link {
        padding: 14px 16px;
    }
    
    .menubar-logo-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .menubar-link-icon {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
    
    .menubar-link-text {
        font-size: 14px;
    }
}

/* Scroll Progress */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1001;
}

.scroll-progress-bar {
    height: 100%;
    background: var(--gradient-primary);
    width: 0%;
    transition: width 0.1s ease;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
    letter-spacing: -0.02em;
    font-family: var(--font-family);
}

h1 { 
    font-size: var(--font-size-5xl); 
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
h2 { 
    font-size: var(--font-size-4xl); 
    font-weight: 600;
    color: var(--text-primary);
}
h3 { font-size: var(--font-size-3xl); }
h4 { font-size: var(--font-size-2xl); }
h5 { font-size: var(--font-size-xl); }
h6 { font-size: var(--font-size-lg); }

p {
    margin-bottom: var(--spacing-sm);
    color: var(--text-secondary);
}

/* Gradient Text */
.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-sm) var(--spacing-lg);
    border: none;
    border-radius: var(--radius-md);
    font-size: var(--font-size-base);
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    transform: perspective(1000px) translateZ(0);
    backface-visibility: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1;
}

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

.btn-primary {
    background: var(--gradient-primary);
    color: var(--text-primary);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
    border: 1px solid rgba(0, 212, 255, 0.3);
}

.btn-primary:hover {
    transform: perspective(1000px) rotateX(4deg) rotateY(4deg) translateZ(10px) translateY(-3px);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.4), 0 10px 25px rgba(0, 0, 0, 0.3);
    border-color: rgba(0, 212, 255, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--primary-color);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.2);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--primary-bg);
    transform: perspective(1000px) rotateX(4deg) rotateY(4deg) translateZ(10px) translateY(-3px);
    box-shadow: 0 0 25px rgba(0, 212, 255, 0.4), 0 10px 25px rgba(0, 0, 0, 0.3);
    border-color: var(--secondary-color);
}

/* Old navbar styles removed - replaced with modern navbar above */

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

.mobile-menu-toggle:hover::before {
    left: 100%;
}

.mobile-menu-toggle:hover {
    background: rgba(0, 212, 255, 0.2);
    border-color: rgba(0, 212, 255, 0.5);
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform-origin: center;
    position: relative;
}

.mobile-menu-toggle.active {
    background: rgba(0, 212, 255, 0.2);
    border-color: rgba(0, 212, 255, 0.6);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
    background: var(--primary-color);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
    background: var(--primary-color);
}

.mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    -webkit-backdrop-filter: blur(60px) saturate(300%);
    backdrop-filter: blur(60px) saturate(300%);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

.mobile-menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(0, 212, 255, 0.3), 
        rgba(139, 92, 246, 0.3), 
        transparent);
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    background: rgba(10, 15, 25, 0.98);
    -webkit-backdrop-filter: blur(80px) saturate(400%);
    backdrop-filter: blur(80px) saturate(400%);
}

.mobile-menu-content {
    padding: 1.5rem 0;
}

.mobile-menu-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: 1.2rem var(--spacing-lg);
    color: var(--text-primary);
    text-decoration: none;
    font-size: var(--font-size-lg);
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    background: rgba(255, 255, 255, 0.02);
    -webkit-backdrop-filter: blur(0px);
    backdrop-filter: blur(0px);
    border-radius: 12px;
    margin: 6px 12px;
    position: relative;
    overflow: hidden;
}

.mobile-menu-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(0, 212, 255, 0.1), 
        rgba(139, 92, 246, 0.1), 
        rgba(16, 185, 129, 0.05));
    border-radius: 12px;
    transform: scale(0);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: -1;
}

.mobile-menu-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
    z-index: -1;
}

.mobile-menu-item:hover::before {
    transform: scale(1);
}

.mobile-menu-item:hover::after {
    left: 100%;
}

.mobile-menu-item:last-child {
    border-bottom: none;
}

.mobile-menu-item:hover {
    background: rgba(0, 212, 255, 0.08);
    color: var(--primary-color);
    transform: translateX(12px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.2);
    border-color: rgba(0, 212, 255, 0.2);
}

.mobile-menu-item i {
    width: 24px;
    text-align: center;
    font-size: var(--font-size-lg);
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.mobile-menu-item:hover i {
    transform: scale(1.2) rotate(5deg);
    color: var(--primary-color);
}

/* Old navbar styles removed - replaced with modern navbar above */

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(0, 212, 255, 0.15), 
        rgba(139, 92, 246, 0.15), 
        rgba(16, 185, 129, 0.1), 
        rgba(236, 72, 153, 0.05));
    border-radius: 50px;
    transform: scale(0);
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: -1;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        var(--primary-color), 
        var(--secondary-color), 
        var(--accent-color));
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: translateX(-50%);
    border-radius: 1px;
}

.nav-link:hover::before {
    transform: scale(1);
}

.nav-link:hover::after {
    width: 80%;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.nav-link:hover {
    color: var(--primary-color);
    text-shadow: 0 0 40px var(--primary-color);
    transform: perspective(1000px) rotateX(8deg) rotateY(8deg) translateZ(20px);
    box-shadow: 
        0 25px 60px rgba(0, 212, 255, 0.4),
        0 0 0 1px rgba(0, 212, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        0 0 40px rgba(139, 92, 246, 0.2);
    background: rgba(0, 212, 255, 0.06);
    border-color: rgba(0, 212, 255, 0.3);
}

/* Enhanced Animations for Modern Menubar */
@keyframes morphingGradient {
    0% {
        background-position: 0% 50%;
        filter: hue-rotate(0deg) blur(8px);
    }
    25% {
        background-position: 100% 50%;
        filter: hue-rotate(90deg) blur(6px);
    }
    50% {
        background-position: 100% 100%;
        filter: hue-rotate(180deg) blur(8px);
    }
    75% {
        background-position: 0% 100%;
        filter: hue-rotate(270deg) blur(6px);
    }
    100% {
        background-position: 0% 50%;
        filter: hue-rotate(360deg) blur(8px);
    }
}

@keyframes rotateGradient {
    0% {
        background-position: 0% 50%;
        filter: hue-rotate(0deg) blur(6px);
    }
    50% {
        background-position: 100% 50%;
        filter: hue-rotate(180deg) blur(4px);
    }
    100% {
        background-position: 0% 50%;
        filter: hue-rotate(360deg) blur(6px);
    }
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* Hero Section */
.hero,
.hero-2025 {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 0; /* Remove top padding to allow content to go under navbar */
}

.hero-background,
.hero-background-2025 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.hero-video,
.hero-video-2025 {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.5s ease;
}

/* Video fallback styles */
.hero-video[style*="display: none"] + .hero-animated-bg {
    opacity: 1;
    animation: fadeIn 1s ease;
}

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

/* Video fallback animation */
.hero-video-fallback {
    opacity: 0;
    transition: opacity 0.5s ease;
}

.hero-video-fallback[style*="display: block"] {
    opacity: 1;
}

.hero-overlay,
.hero-overlay-2025 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.8) 0%, rgba(10, 10, 10, 0.6) 100%);
    z-index: -1;
}

/* 2025 Modern Animated Background (behind overlay) */
.hero-animated-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: -1;
}

.hero-animated-bg .bg-blob {
    position: absolute;
    width: 40vmax;
    height: 40vmax;
    background: radial-gradient(circle at 30% 30%, rgba(0,212,255,0.35), rgba(0,212,255,0.05) 60%, transparent 70%);
    filter: blur(30px) saturate(120%);
    border-radius: 50%;
    animation: floatBlob 22s ease-in-out infinite;
    mix-blend-mode: screen;
}

.hero-animated-bg .b1 { top: -10vmax; left: -10vmax; animation-delay: 0s; }
.hero-animated-bg .b2 { bottom: -12vmax; right: -8vmax; animation-delay: 5s; background: radial-gradient(circle at 60% 40%, rgba(255,0,153,0.28), rgba(255,0,153,0.05) 60%, transparent 70%); }
.hero-animated-bg .b3 { top: 10vmax; right: -12vmax; animation-delay: 10s; background: radial-gradient(circle at 40% 60%, rgba(0,255,170,0.25), rgba(0,255,170,0.05) 60%, transparent 70%); }
.hero-animated-bg .b4 { bottom: -8vmax; left: -12vmax; animation-delay: 15s; background: radial-gradient(circle at 50% 50%, rgba(255,200,0,0.22), rgba(255,200,0,0.05) 60%, transparent 70%); }

@keyframes floatBlob {
    0%, 100% { transform: translate3d(0,0,0) scale(1); }
    25% { transform: translate3d(6vmax, -3vmax, 0) scale(1.08); }
    50% { transform: translate3d(-4vmax, 5vmax, 0) scale(0.96); }
    75% { transform: translate3d(3vmax, 2vmax, 0) scale(1.05); }
}

@media (max-width: 768px) {
    .hero-animated-bg .bg-blob {
        width: 65vmin;
        height: 65vmin;
        filter: blur(24px);
    }
}

.hero-content,
.hero-content-2025 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    position: relative;
    z-index: 1; /* Ensure content is below navbar */
}

.hero-text,
.hero-text-2025 {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.hero-title,
.hero-title-2025 {
    font-size: var(--font-size-5xl);
    margin-bottom: var(--spacing-md);
    margin-top: 100px; /* Add top margin to push content below navbar */
    animation: fadeInUp 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    align-items: center;
    gap: 4px;
    animation-fill-mode: both;
    font-weight: 700;
    letter-spacing: -0.02em;
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
}

.typing-text,
.typing-text-2025 {
    min-height: 1.2em;
    display: inline-block;
    width: auto;
    color: var(--primary-color) !important;
    font-weight: bold;
    text-shadow: 0 0 10px var(--primary-color);
    background: transparent !important;
    padding: 0 !important;
    border-radius: 0 !important;
    border: none !important;
    -webkit-text-fill-color: var(--primary-color) !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
    font-size: var(--font-size-5xl);
    line-height: 1.2;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    box-shadow: none !important;
    transition: all 0.3s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cursor,
.cursor-2025 {
    color: var(--primary-color);
    font-weight: bold;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.hero-subtitle,
.hero-subtitle-2025 {
    font-size: var(--font-size-xl);
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xl);
    animation: fadeInUp 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s both;
    animation-fill-mode: both;
}

.hero-buttons,
.hero-buttons-2025 {
    display: flex;
    gap: var(--spacing-md);
    animation: fadeInUp 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.6s both;
    animation-fill-mode: both;
}

.hero-visual,
.hero-visual-2025 {
	/* Show the new right-side animation */
	display: flex !important;
	align-items: center;
	justify-content: center;
	position: relative;
	height: 100%;
	min-height: 500px;
}

/* Ultra Modern Floating Elements with Scroll-Based Animation */
.floating-elements,
.floating-elements-2025 {
    position: relative;
    height: 520px;
    width: 100%;
    overflow: hidden;
    background: transparent;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    display: flex;
    align-items: center;
    justify-content: center;
    }

/* Desktop Only - Enhanced CTA on Desktop */
@media (min-width: 769px) {
    .cta-content,
    .cta-title,
    .cta-text,
    .cta-stats,
    .cta-stat,
    .cta-stat-number,
    .cta-stat-label {
        display: none !important;
    }
}

/* Mobile-specific hero title and typing text styles */
@media (max-width: 768px) {
    .hero-title {
        font-size: var(--font-size-3xl);
        margin-top: 80px;
        display: inline-flex;
        flex-wrap: wrap;
        gap: 6px;
        justify-content: center;
        align-items: center;
        text-align: center;
        width: 100%;
    }
    
    .typing-text,
    .typing-text-2025 {
        font-size: var(--font-size-2xl);
        max-width: 100vw;
        text-align: center;
        /* allow wrap up to two lines, remove underline/box look */
        white-space: normal;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        overflow: hidden;
        text-overflow: ellipsis;
        border: 0 !important;
        box-shadow: none !important;
        background: transparent !important;
        -webkit-backdrop-filter: none !important;
        backdrop-filter: none !important;
        padding: 0 !important;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: var(--spacing-sm);
    }
}

/* Ultra Modern Tech Icons with Scroll Parallax */
.tech-icon.modern-icon,
.tech-icon-2025.modern-icon {
    position: absolute;
    width: 90px;
    height: 90px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--primary-color);
    animation: modernFloat 28s ease-in-out infinite;
    -webkit-backdrop-filter: blur(25px);
    backdrop-filter: blur(25px);
    border: 2px solid rgba(0, 212, 255, 0.08);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    will-change: transform, box-shadow, border-color;
}

.tech-icon.modern-icon:hover,
.tech-icon-2025.modern-icon:hover {
    transform: scale(1.4) rotate(8deg);
    background: rgba(0, 212, 255, 0.12);
    box-shadow: 0 0 60px rgba(0, 212, 255, 0.8);
    border-color: var(--primary-color);
    z-index: 10;
}

/* Icon Glow Effect */
.icon-glow,
.icon-glow-2025 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.4) 0%, transparent 70%);
    border-radius: 24px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.tech-icon.modern-icon:hover .icon-glow,
.tech-icon-2025.modern-icon:hover .icon-glow-2025 {
    opacity: 1;
}

/* Particle Trail */
.particle-trail,
.particle-trail-2025 {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 24px;
    background: linear-gradient(45deg, transparent 30%, rgba(0, 212, 255, 0.15) 50%, transparent 70%);
    animation: particleShimmer 4s infinite;
}

/* Enhanced Floating Orbs with Scroll Parallax */
.floating-orb,
.floating-orb-2025 {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.25), transparent);
    animation: orbFloat 28s ease-in-out infinite;
    will-change: transform, opacity;
}

.orb-1 {
    width: 24px;
    height: 24px;
    top: 15%;
    left: 15%;
    animation-delay: 0s;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.3), transparent);
}

.orb-2 {
    width: 18px;
    height: 18px;
    top: 65%;
    right: 12%;
    animation-delay: 2s;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.3), transparent);
}

.orb-3 {
    width: 30px;
    height: 30px;
    bottom: 25%;
    left: 25%;
    animation-delay: 4s;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.3), transparent);
}

.orb-4 {
    width: 20px;
    height: 20px;
    top: 35%;
    right: 8%;
    animation-delay: 6s;
    background: radial-gradient(circle, rgba(157, 78, 221, 0.3), transparent);
}

.orb-5 {
    width: 26px;
    height: 26px;
    bottom: 15%;
    right: 18%;
    animation-delay: 8s;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.3), transparent);
}

.orb-6 {
    width: 16px;
    height: 16px;
    top: 45%;
    left: 35%;
    animation-delay: 10s;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.3), transparent);
}

.orb-7 {
    width: 32px;
    height: 32px;
    top: 70%;
    right: 5%;
    animation-delay: 12s;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.3), transparent);
}

.orb-8 {
    width: 22px;
    height: 22px;
    bottom: 40%;
    left: 75%;
    animation-delay: 14s;
    background: radial-gradient(circle, rgba(239, 68, 68, 0.3), transparent);
}

.orb-9 {
    width: 28px;
    height: 28px;
    top: 8%;
    right: 25%;
    animation-delay: 16s;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.3), transparent);
}

.orb-10 {
    width: 19px;
    height: 19px;
    bottom: 8%;
    left: 55%;
    animation-delay: 18s;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.3), transparent);
}

.orb-11 {
    width: 25px;
    height: 25px;
    top: 88%;
    right: 32%;
    animation-delay: 20s;
    background: radial-gradient(circle, rgba(251, 146, 60, 0.3), transparent);
}

.orb-12 {
    width: 17px;
    height: 17px;
    top: 55%;
    left: 68%;
    animation-delay: 22s;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.3), transparent);
}

/* Enhanced Connection Lines with Scroll Parallax */
.connection-line,
.connection-line-2025 {
    position: absolute;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.4), transparent);
    animation: linePulse 6s ease-in-out infinite;
    will-change: transform, opacity;
}

.line-1 {
    width: 140px;
    top: 25%;
    left: 20%;
    transform: rotate(45deg);
    animation-delay: 0s;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.5), transparent);
}

.line-2 {
    width: 120px;
    top: 55%;
    right: 12%;
    transform: rotate(-30deg);
    animation-delay: 1s;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.5), transparent);
}

.line-3 {
    width: 100px;
    bottom: 35%;
    left: 35%;
    transform: rotate(60deg);
    animation-delay: 2s;
    background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.5), transparent);
}

.line-4 {
    width: 110px;
    top: 75%;
    right: 15%;
    transform: rotate(-45deg);
    animation-delay: 3s;
    background: linear-gradient(90deg, transparent, rgba(157, 78, 221, 0.5), transparent);
}

.line-5 {
    width: 130px;
    top: 20%;
    left: 65%;
    transform: rotate(75deg);
    animation-delay: 4s;
    background: linear-gradient(90deg, transparent, rgba(236, 72, 153, 0.5), transparent);
}

.line-6 {
    width: 95px;
    bottom: 20%;
    right: 55%;
    transform: rotate(-60deg);
    animation-delay: 5s;
    background: linear-gradient(90deg, transparent, rgba(6, 182, 212, 0.5), transparent);
}

.line-7 {
    width: 115px;
    top: 60%;
    left: 15%;
    transform: rotate(30deg);
    animation-delay: 6s;
    background: linear-gradient(90deg, transparent, rgba(245, 158, 11, 0.5), transparent);
}

.line-8 {
    width: 85px;
    bottom: 30%;
    left: 75%;
    transform: rotate(-75deg);
    animation-delay: 7s;
    background: linear-gradient(90deg, transparent, rgba(239, 68, 68, 0.5), transparent);
}

.line-9 {
    width: 125px;
    top: 10%;
    right: 15%;
    transform: rotate(15deg);
    animation-delay: 8s;
    background: linear-gradient(90deg, transparent, rgba(34, 197, 94, 0.5), transparent);
}

.line-10 {
    width: 90px;
    bottom: 10%;
    right: 18%;
    transform: rotate(-15deg);
    animation-delay: 9s;
    background: linear-gradient(90deg, transparent, rgba(168, 85, 247, 0.5), transparent);
}

/* Tech Icon Positions with Enhanced Layout */
.tech-icon.modern-icon:nth-child(1) {
    top: 5%;
    left: 8%;
    animation-delay: 0s;
}

.tech-icon.modern-icon:nth-child(2) {
    top: 20%;
    left: 85%;
    animation-delay: 1s;
}

.tech-icon.modern-icon:nth-child(3) {
    top: 40%;
    left: 5%;
    animation-delay: 2s;
}

.tech-icon.modern-icon:nth-child(4) {
    top: 75%;
    left: 85%;
    animation-delay: 3s;
}

.tech-icon.modern-icon:nth-child(5) {
    top: 10%;
    left: 50%;
    animation-delay: 4s;
}

.tech-icon.modern-icon:nth-child(6) {
    top: 65%;
    left: 20%;
    animation-delay: 5s;
}

.tech-icon.modern-icon:nth-child(7) {
    top: 30%;
    left: 78%;
    animation-delay: 1.5s;
}

.tech-icon.modern-icon:nth-child(8) {
    top: 85%;
    left: 10%;
    animation-delay: 2.5s;
}

.tech-icon.modern-icon:nth-child(9) {
    top: 25%;
    left: 25%;
    animation-delay: 0.5s;
}

.tech-icon.modern-icon:nth-child(10) {
    top: 60%;
    left: 90%;
    animation-delay: 3.5s;
}

.tech-icon.modern-icon:nth-child(11) {
    top: 80%;
    left: 70%;
    animation-delay: 6s;
}

.tech-icon.modern-icon:nth-child(12) {
    top: 2%;
    left: 75%;
    animation-delay: 7s;
}

/* Scroll Indicator */
.scroll-indicator,
.scroll-indicator-2025 {
    position: absolute;
    bottom: var(--spacing-lg);
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-arrow,
.scroll-arrow-2025 {
    width: 30px;
    height: 30px;
    border: 2px solid var(--primary-color);
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
}

/* Enhanced Animations for Scroll-Based Elements */
@keyframes modernFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg) scale(1);
    }
    25% {
        transform: translateY(-30px) rotate(4deg) scale(1.08);
    }
    50% {
        transform: translateY(-20px) rotate(0deg) scale(1);
    }
    75% {
        transform: translateY(-40px) rotate(-4deg) scale(1.08);
    }
}

@keyframes particleShimmer {
    0% {
        transform: translateX(-100%) translateY(-100%);
    }
    100% {
        transform: translateX(100%) translateY(100%);
    }
}

@keyframes orbFloat {
    0%, 100% {
        transform: translateY(0px) scale(1);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-50px) scale(1.3);
        opacity: 1;
    }
}

@keyframes linePulse {
    0%, 100% {
        opacity: 0.4;
        transform: scaleX(1);
    }
    50% {
        opacity: 0.9;
        transform: scaleX(1.2);
    }
}

/* Scroll-Based Parallax Animation Classes - Desktop Only */
@media (min-width: 769px) {
    .parallax-slow {
        transform: translateY(calc(var(--scroll-y) * 0.1px));
    }

    .parallax-medium {
        transform: translateY(calc(var(--scroll-y) * 0.2px));
    }

    .parallax-fast {
        transform: translateY(calc(var(--scroll-y) * 0.3px));
    }

    .parallax-reverse {
        transform: translateY(calc(var(--scroll-y) * -0.15px));
    }

    /* Floating Elements Scroll Animation */
    .floating-elements {
        --scroll-y: 0;
        transition: transform 0.1s ease-out;
    }

    .floating-elements.parallax-enabled {
        transform: translateY(calc(var(--scroll-y) * 0.05px));
    }

    /* Individual Element Scroll Animations */
    .tech-icon.modern-icon.parallax-slow {
        transform: translateY(calc(var(--scroll-y) * 0.08px));
    }

    .tech-icon.modern-icon.parallax-medium {
        transform: translateY(calc(var(--scroll-y) * 0.15px));
    }

    .tech-icon.modern-icon.parallax-fast {
        transform: translateY(calc(var(--scroll-y) * 0.25px));
    }

    .floating-orb.parallax-slow {
        transform: translateY(calc(var(--scroll-y) * 0.05px));
    }

    .floating-orb.parallax-medium {
        transform: translateY(calc(var(--scroll-y) * 0.12px));
    }

    .floating-orb.parallax-fast {
        transform: translateY(calc(var(--scroll-y) * 0.2px));
    }

    .connection-line.parallax-slow {
        transform: translateY(calc(var(--scroll-y) * 0.06px));
    }

    .connection-line.parallax-medium {
        transform: translateY(calc(var(--scroll-y) * 0.14px));
    }

    .connection-line.parallax-fast {
        transform: translateY(calc(var(--scroll-y) * 0.22px));
    }
}

/* Disable all parallax effects on mobile */
@media (max-width: 768px) {
    .parallax-slow,
    .parallax-medium,
    .parallax-fast,
    .parallax-reverse,
    .floating-elements,
    .tech-icon.modern-icon,
    .floating-orb,
    .connection-line {
        transform: none !important;
        transition: none !important;
        --scroll-y: 0 !important;
    }
}

/* Floating Particles Animation */
.floating-particle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.2), transparent);
    animation: particleFloat 15s ease-in-out infinite;
    will-change: transform, opacity;
    z-index: 1;
}

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

/* Enhanced Scroll-Based Animations */
.floating-elements {
    perspective: 1000px;
    transform-style: preserve-3d;
}

.tech-icon.modern-icon,
.floating-orb,
.connection-line,
.floating-particle {
    transform-style: preserve-3d;
    backface-visibility: hidden;
}

/* Mouse Interaction Effects */
.tech-icon.modern-icon:hover {
    transform: scale(1.4) rotate(8deg) translateZ(20px);
    background: rgba(0, 212, 255, 0.15);
    box-shadow: 
        0 0 60px rgba(0, 212, 255, 0.8),
        0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: var(--primary-color);
    z-index: 10;
}

/* Scroll Progress Indicator */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(0, 0, 0, 0.1);
    z-index: 10001;
}

.scroll-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, 
        var(--primary-color), 
        var(--secondary-color), 
        var(--accent-color));
    width: 0%;
    transition: width 0.1s ease;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

/* Section Styles */
section {
    padding: var(--spacing-2xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.section-title {
    font-size: var(--font-size-4xl);
    margin-bottom: var(--spacing-sm);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    background: var(--secondary-bg);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    align-items: center;
}

.about-text h3 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    margin-top: var(--spacing-xl);
}

.stat-item {
    text-align: center;
    padding: var(--spacing-md);
    background: var(--accent-bg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.stat-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-neon);
    border-color: var(--primary-color);
}

.stat-item h4 {
    font-size: var(--font-size-3xl);
    color: var(--primary-color);
    margin-bottom: var(--spacing-xs);
    font-weight: 700;
    transition: all 0.3s ease;
}

.stat-item h4.counter {
    position: relative;
    display: inline-block;
}

.stat-item h4.counter::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.stat-item:hover h4.counter::after {
    width: 100%;
}

.about-image {
    position: relative;
    height: 400px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-placeholder {
    font-size: 4rem;
    color: var(--text-primary);
    width: 100%;
    height: 100%;
}

.image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: inherit;
}

/* Services Section */
.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-xl);
    max-width: 1400px;
    margin: 0 auto;
    justify-content: space-between;
}

.service-card {
    background: rgba(26, 26, 26, 0.9);
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    transform-style: preserve-3d;
    perspective: 1000px;
    flex: 0 0 calc(33.333% - var(--spacing-xl));
    min-width: 300px;
    will-change: transform, box-shadow, border-color;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(139, 92, 246, 0.1));
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: -1;
    transform: scale(0.8);
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1;
}

.service-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.25), 0 15px 30px rgba(0, 0, 0, 0.4);
}

.service-card:hover::before {
    opacity: 1;
    transform: scale(1);
}

.service-card:hover::after {
    left: 100%;
}

.service-card h3,
.service-card p,
.service-card ul,
.service-card .service-icon {
    transition: transform 0.3s ease, z-index 0.3s ease;
    transform-style: preserve-3d;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
    font-size: var(--font-size-xl);
    color: var(--text-primary);
}

.service-card h3 {
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
}

.service-card ul {
    list-style: none;
    margin-top: var(--spacing-md);
}

.service-card li {
    padding: var(--spacing-xs) 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: var(--spacing-md);
}

.service-card li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

/* Projects Section */
.projects {
    background: var(--secondary-bg);
}

.projects-category {
    margin-bottom: var(--spacing-2xl);
}

.projects-category h3 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-lg);
    font-size: var(--font-size-2xl);
}

.projects-grid {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-xl);
    max-width: 1400px;
    margin: 0 auto;
    justify-content: space-between;
}

.project-card {
    background: rgba(26, 26, 26, 0.9);
    padding: var(--spacing-md);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    transform-style: preserve-3d;
    perspective: 1000px;
    flex: 0 0 calc(33.333% - var(--spacing-xl));
    min-width: 300px;
    min-height: 300px;
    will-change: transform, box-shadow, border-color;
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(139, 92, 246, 0.1));
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: -1;
    transform: scale(0.8);
}

.project-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1;
}

.project-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.25), 0 15px 30px rgba(0, 0, 0, 0.4);
}

.project-card:hover::before {
    opacity: 1;
    transform: scale(1);
}

.project-card:hover::after {
    left: 100%;
}

.project-image {
    height: 150px;
    width: 100%;
    background: var(--gradient-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.05);
}

.project-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.project-card:hover .project-image::before {
    transform: translateX(100%);
}

.demo-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.4);
    z-index: 2;
    animation: demoPulse 2s infinite;
}

.restricted-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, #ffa726, #ff9800);
    color: white;
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(255, 167, 38, 0.4);
    z-index: 2;
    animation: restrictedPulse 3s infinite;
}

.preview-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    color: var(--text-primary);
    text-decoration: none;
    font-size: var(--font-size-sm);
    padding: var(--spacing-sm) var(--spacing-md);
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    font-weight: 500;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.preview-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.4);
}

.preview-btn.restricted {
    background: linear-gradient(135deg, #ffa726, #ff9800);
    box-shadow: 0 4px 15px rgba(255, 167, 38, 0.3);
}

.preview-btn.restricted:hover {
    box-shadow: 0 8px 25px rgba(255, 167, 38, 0.4);
}

@keyframes demoPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 2px 8px rgba(255, 107, 107, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 4px 12px rgba(255, 107, 107, 0.5);
    }
}

@keyframes restrictedPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 2px 8px rgba(255, 167, 38, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 4px 12px rgba(255, 167, 38, 0.5);
    }
}

.project-content {
    position: relative;
    z-index: 2;
}

.project-content h4 {
    color: var(--text-primary);
    margin-bottom: var(--spacing-xs);
    font-size: var(--font-size-xl);
    font-weight: 600;
}

.project-content p {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-sm);
    line-height: 1.5;
    font-size: var(--font-size-sm);
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-sm);
}

.project-tech span {
    background: var(--primary-color);
    color: var(--primary-bg);
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--radius-md);
    font-size: var(--font-size-sm);
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 212, 255, 0.2);
}

/* Project Actions */
.project-actions {
    margin-top: auto;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: var(--spacing-sm);
}



/* Preview Modal Close Button */
.preview-modal .close-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    transform: scale(1.1);
}

.preview-modal .close-btn:active {
    transform: scale(0.95);
}

/* Team Section */
.team-grid {
    display: flex;
    flex-direction: row;
    gap: var(--spacing-xl);
    max-width: 1200px;
    margin: 0 auto;
    justify-content: space-between;
}

.team-member {
    flex: 1;
    max-width: calc(50% - var(--spacing-xl));
}

.team-member {
    background: var(--accent-bg);
    border-radius: var(--radius-xl);
    padding: var(--spacing-lg);
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform, box-shadow, border-color;
}

.team-member:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.25), 0 15px 30px rgba(0, 0, 0, 0.4);
    border-color: var(--primary-color);
}

.member-image {
    width: 120px;
    height: 120px;
    background: var(--gradient-primary);
    border-radius: 50%;
    margin: 0 auto var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-3xl);
    color: var(--text-primary);
}

.member-info h4 {
    color: var(--text-primary);
    margin-bottom: var(--spacing-xs);
}

.member-role {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: var(--spacing-sm);
}

.member-desc {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
}

.member-social {
    display: flex;
    justify-content: center;
    gap: var(--spacing-sm);
}

.member-social a {
    width: 40px;
    height: 40px;
    background: var(--accent-bg);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.member-social a:hover {
    background: var(--primary-color);
    color: var(--primary-bg);
    transform: translateY(-2px);
}

/* Contact Section */
.contact {
    background: var(--secondary-bg);
}

.contact-content {
    display: flex;
    flex-direction: row;
    gap: var(--spacing-2xl);
    align-items: flex-start;
}

.contact-info {
    flex: 1;
    max-width: 50%;
    order: 1; /* Solda */
}

.contact-form {
    flex: 1;
    max-width: 50%;
    order: 2; /* Sağda */
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-lg);
    background: var(--accent-bg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-item:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-neon);
    transform: translateY(-3px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-lg);
    color: var(--text-primary);
}

.contact-details h4 {
    color: var(--text-primary);
    margin-bottom: var(--spacing-xs);
}

.contact-details p {
    color: var(--text-secondary);
    margin-bottom: 0;
}

/* Contact Form */
.contact-form {
    background: rgba(255, 255, 255, 0.03);
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: var(--spacing-md);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: var(--spacing-sm);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: var(--font-size-base);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
    transform: translateY(-1px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

/* Modern Checkbox Styles */
.modern-checkbox {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    -webkit-user-select: none;
    user-select: none;
    position: relative;
    padding: 8px 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modern-checkbox:hover {
    transform: translateY(-1px);
}

.modern-checkbox input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    margin: 0;
}

.modern-checkbox .checkmark {
    position: relative;
    width: 22px;
    height: 22px;
    background: var(--accent-bg);
    border: 2px solid var(--border-color);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.modern-checkbox .checkmark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 4px;
}

.modern-checkbox .check-icon {
    width: 14px;
    height: 14px;
    color: var(--primary-bg);
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
    position: relative;
}

.modern-checkbox .checkbox-text {
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

/* Hover effects */
.modern-checkbox:hover .checkmark {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
    transform: scale(1.05);
}

.modern-checkbox:hover .checkbox-text {
    color: var(--text-primary);
}

/* Checked state */
.modern-checkbox input[type="checkbox"]:checked + .checkmark {
    border-color: var(--primary-color);
    background: var(--primary-color);
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 212, 255, 0.3);
}

.modern-checkbox input[type="checkbox"]:checked + .checkmark::before {
    opacity: 1;
}

.modern-checkbox input[type="checkbox"]:checked + .checkmark .check-icon {
    opacity: 1;
    transform: scale(1);
}

.modern-checkbox input[type="checkbox"]:checked ~ .checkbox-text {
    color: var(--text-primary);
    font-weight: 600;
}

/* Focus state for accessibility */
.modern-checkbox input[type="checkbox"]:focus + .checkmark {
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.3);
    outline: none;
}

/* Animation for checkmark */
@keyframes checkmarkAppear {
    0% {
        opacity: 0;
        transform: scale(0.5) rotate(-45deg);
    }
    50% {
        opacity: 1;
        transform: scale(1.2) rotate(0deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

.modern-checkbox input[type="checkbox"]:checked + .checkmark .check-icon {
    animation: checkmarkAppear 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Ripple effect */
.modern-checkbox .checkmark::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(0, 212, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease;
}

.modern-checkbox input[type="checkbox"]:checked + .checkmark::after {
    width: 40px;
    height: 40px;
    animation: ripple 0.6s ease-out;
}

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

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--primary-bg) 0%, var(--secondary-bg) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: var(--spacing-2xl) 0 var(--spacing-lg);
    position: relative;
    overflow: hidden;
}

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

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

/* Desktop Footer - Horizontal Layout */
@media (min-width: 1025px) {
    .footer-content {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        gap: var(--spacing-xl);
    }
    
    .footer-section {
        flex: 1;
        min-width: 200px;
        max-width: 300px;
    }
}

.footer-section h3,
.footer-section h4 {
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
}

.footer-section p {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-sm);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: var(--spacing-xs);
}

.footer-section ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--accent-bg);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-links a:hover {
    background: var(--primary-color);
    color: var(--primary-bg);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.3);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-lg);
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
}

/* Enhanced Footer Responsive Design */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
        text-align: center;
    }
    
    .footer-section {
        padding: var(--spacing-lg) 0;
    }
    
    .social-links {
        justify-content: center;
        margin-top: var(--spacing-md);
    }
    
    .footer-section ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: var(--spacing-sm);
    }
    
    .footer-section ul li {
        margin-bottom: var(--spacing-sm);
    }
}

@media (max-width: 480px) {
    .footer {
        padding: var(--spacing-lg) 0 var(--spacing-md);
    }
    
    .footer-content {
        gap: var(--spacing-md);
    }
    
    .footer-section {
        padding: var(--spacing-md) 0;
    }
    
    .footer-section h3,
    .footer-section h4 {
        font-size: var(--font-size-lg);
        margin-bottom: var(--spacing-sm);
    }
    
    .footer-section p {
        font-size: var(--font-size-sm);
    }
    
    .social-links {
        gap: var(--spacing-md);
    }
    
    .social-links a {
        width: 45px;
        height: 45px;
        font-size: var(--font-size-lg);
    }
}

/* Modern Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(80px) scale(0.8) rotateX(20deg);
        filter: blur(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1) rotateX(0deg);
        filter: blur(0px);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px) scale(0.8) rotateY(-20deg);
        filter: blur(10px);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1) rotateY(0deg);
        filter: blur(0px);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(100px) scale(0.8) rotateY(20deg);
        filter: blur(10px);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1) rotateY(0deg);
        filter: blur(0px);
    }
}

@keyframes modernFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg) scale(1);
    }
    25% {
        transform: translateY(-25px) rotate(3deg) scale(1.05);
    }
    50% {
        transform: translateY(-15px) rotate(0deg) scale(1);
    }
    75% {
        transform: translateY(-35px) rotate(-3deg) scale(1.05);
    }
}

@keyframes particleShimmer {
    0% {
        transform: translateX(-100%) translateY(-100%);
    }
    100% {
        transform: translateX(100%) translateY(100%);
    }
}

@keyframes orbFloat {
    0%, 100% {
        transform: translateY(0px) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-40px) scale(1.2);
        opacity: 1;
    }
}

@keyframes linePulse {
    0%, 100% {
        opacity: 0.3;
        transform: scaleX(1);
    }
    50% {
        opacity: 0.8;
        transform: scaleX(1.1);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg) scale(1) translateZ(0);
    }
    25% {
        transform: translateY(-15px) rotate(3deg) scale(1.04) translateZ(5px);
    }
    50% {
        transform: translateY(-25px) rotate(0deg) scale(1.08) translateZ(10px);
    }
    75% {
        transform: translateY(-15px) rotate(-3deg) scale(1.04) translateZ(5px);
    }
}

@keyframes glow {
    0% {
        box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
        transform: scale(1) rotate(0deg);
    }
    25% {
        box-shadow: 0 0 30px rgba(0, 212, 255, 0.4);
        transform: scale(1.03) rotate(90deg);
    }
    50% {
        box-shadow: 0 0 40px rgba(0, 212, 255, 0.5);
        transform: scale(1.06) rotate(180deg);
    }
    75% {
        box-shadow: 0 0 30px rgba(0, 212, 255, 0.4);
        transform: scale(1.03) rotate(270deg);
    }
    100% {
        box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
        transform: scale(1) rotate(360deg);
    }
}

@keyframes rotateGradient {
    0% {
        background-position: 0% 50%;
        filter: hue-rotate(0deg);
    }
    50% {
        background-position: 100% 50%;
        filter: hue-rotate(180deg);
    }
    100% {
        background-position: 0% 50%;
        filter: hue-rotate(360deg);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0) scale(1) rotate(0deg);
    }
    40% {
        transform: translateX(-50%) translateY(-20px) scale(1.15) rotate(5deg);
    }
    60% {
        transform: translateX(-50%) translateY(-10px) scale(1.08) rotate(-3deg);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
        box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
    }
    50% {
        transform: scale(1.08) rotate(180deg);
        opacity: 0.9;
        box-shadow: 0 0 40px rgba(0, 212, 255, 0.6);
    }
}

@keyframes slideInFromBottom {
    from {
        opacity: 0;
        transform: translateY(150px) scale(0.7) rotateX(30deg);
        filter: blur(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1) rotateX(0deg);
        filter: blur(0px);
    }
}

@keyframes cardHover {
    0% {
        transform: perspective(1000px) rotateX(0deg) rotateY(0deg) translateZ(0) scale(1);
    }
    100% {
        transform: perspective(1000px) rotateX(15deg) rotateY(15deg) translateZ(30px) scale(1.05);
    }
}

@keyframes morphingGradient {
    0% {
        background: linear-gradient(45deg, #00d4ff, #8b5cf6, #10b981);
        background-size: 200% 200%;
        background-position: 0% 50%;
    }
    25% {
        background: linear-gradient(45deg, #8b5cf6, #10b981, #9d4edd);
        background-size: 200% 200%;
        background-position: 50% 50%;
    }
    50% {
        background: linear-gradient(45deg, #10b981, #9d4edd, #00d4ff);
        background-size: 200% 200%;
        background-position: 100% 50%;
    }
    75% {
        background: linear-gradient(45deg, #9d4edd, #00d4ff, #8b5cf6);
        background-size: 200% 200%;
        background-position: 50% 100%;
    }
    100% {
        background: linear-gradient(45deg, #00d4ff, #8b5cf6, #10b981);
        background-size: 200% 200%;
        background-position: 0% 50%;
    }
}

@keyframes neonPulse {
    0%, 100% {
        text-shadow: 0 0 5px var(--primary-color),
                     0 0 10px var(--primary-color),
                     0 0 15px var(--primary-color),
                     0 0 20px var(--primary-color);
        transform: scale(1);
    }
    50% {
        text-shadow: 0 0 10px var(--primary-color),
                     0 0 20px var(--primary-color),
                     0 0 30px var(--primary-color),
                     0 0 40px var(--primary-color);
        transform: scale(1.05);
    }
}

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

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

/* Iframe overlay shimmer animation */
@keyframes iframeShimmer {
    0% {
        transform: translateX(-100%) translateY(-100%);
    }
    100% {
        transform: translateX(100%) translateY(100%);
    }
}

@keyframes magneticPull {
    0% {
        transform: translateX(0) translateY(0) scale(1);
    }
    50% {
        transform: translateX(5px) translateY(-5px) scale(1.02);
    }
    100% {
        transform: translateX(0) translateY(0) scale(1);
    }
}

/* Mouse Follow Animations */
.mouse-follow {
    position: relative;
    transition: transform 0.3s ease-out;
    will-change: transform;
}

.mouse-follow:hover {
    transform: scale(1.05);
}

.mouse-follow-slow {
    transition: transform 0.5s ease-out;
}

.mouse-follow-fast {
    transition: transform 0.1s ease-out;
}

/* Magnetic Effect */
.magnetic {
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.magnetic:hover {
    transform: translate(var(--mouse-x, 0), var(--mouse-y, 0)) scale(1.1);
}

/* Cursor Trail Effect */
.cursor-trail {
    position: fixed;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.8), transparent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: screen;
    transition: transform 0.1s ease-out;
}

.cursor-trail::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.4), transparent);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: cursorPulse 2s ease-in-out infinite;
}

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

/* Glass Effect */
.glass-effect {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.glass-effect-dark {
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Hide desktop nav, show mobile nav */
    .desktop-nav {
        display: none !important;
    }
    
    .mobile-nav {
        display: block !important;
    }

    /* Preview Modal Mobile Styles */
    .preview-content {
        max-width: 95% !important;
        width: 95% !important;
        max-height: 95vh !important;
        padding: var(--spacing-lg) !important;
    }
    
    .preview-website .website-preview {
        height: 400px !important;
        padding: var(--spacing-lg) !important;
    }
    
    .preview-website .website-icon {
        font-size: 3rem !important;
        margin-bottom: var(--spacing-md) !important;
    }
    
    .preview-website .website-actions {
        flex-direction: column !important;
        gap: var(--spacing-sm) !important;
    }
    
    .preview-website .website-actions a,
    .preview-website .website-actions button {
        width: 100% !important;
        justify-content: center !important;
    }
    
    .preview-website {
        margin-bottom: var(--spacing-md) !important;
    }
    
    /* Mobile Navigation Styles */
    .mobile-nav {
        display: block !important;
    }
    
    .mobile-nav-header {
        padding: 1rem var(--spacing-md);
    }
    
    .mobile-logo h2 {
        font-size: var(--font-size-lg);
    }
    
    .mobile-menu-toggle {
        padding: 0.5rem;
    }
    
    .mobile-menu-toggle span {
        width: 25px;
        height: 3px;
    }
    
    .mobile-menu {
        max-height: 70vh;
        overflow-y: auto;
    }
    
    .mobile-menu-item {
        padding: 1.2rem var(--spacing-lg);
        font-size: var(--font-size-lg);
    }
    
    .nav-container {
        padding: 0 var(--spacing-sm);
    }
    
    .nav-logo h2 {
        font-size: var(--font-size-lg);
        font-weight: 700;
    }
    
    /* Enhanced Mobile Menu */
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: rgba(10, 10, 10, 0.98);
        width: 100%;
        height: calc(100vh - 80px);
        text-align: center;
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        -webkit-backdrop-filter: blur(30px) saturate(200%);
        backdrop-filter: blur(30px) saturate(200%);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding: var(--spacing-xl) 0;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        overflow-y: auto;
        z-index: 9998;
    }
    
    .nav-menu.active {
        left: 0;
        transform: translateX(0);
    }
    
    .nav-menu .nav-link {
        display: block;
        padding: var(--spacing-md) var(--spacing-lg);
        margin: var(--spacing-xs) var(--spacing-md);
        font-size: var(--font-size-lg);
        font-weight: 500;
        border-radius: 15px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
    }
    
    .nav-menu .nav-link::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(139, 92, 246, 0.1));
        border-radius: 15px;
        transform: scale(0);
        transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        z-index: -1;
    }
    
    .nav-menu .nav-link:hover::before {
        transform: scale(1);
    }
    
    .nav-menu .nav-link:hover {
        color: var(--primary-color);
        transform: translateX(10px) scale(1.05);
        box-shadow: 0 5px 15px rgba(0, 212, 255, 0.3);
    }
    


    

    
    /* Enhanced Hero Section for Mobile */
    .hero {
        min-height: 100vh;
        padding: var(--spacing-xl) 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
        text-align: center;
        padding: 0 var(--spacing-md);
        max-width: 100%;
    }
    
    .hero-title {
        font-size: var(--font-size-3xl);
        margin-top: 80px;
        line-height: 1.2;
        text-align: center;
    }
    
    .typing-text,
    .typing-text-2025 {
        font-size: var(--font-size-2xl);
        min-height: 1.2em;
        display: inline-block;
        background: transparent !important;
        padding: 0 !important;
        border: none !important;
        box-shadow: none !important;
    }
    
    .hero-subtitle {
        font-size: var(--font-size-lg);
        margin-bottom: var(--spacing-lg);
        text-align: center;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: var(--spacing-md);
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
        padding: var(--spacing-md) var(--spacing-lg);
        font-size: var(--font-size-base);
        border-radius: 15px;
    }
    
    /* Ultra Modern Call-to-Action Area for Mobile */
    .floating-elements {
        display: none; /* Completely removed CTA area on mobile */
    }
    
    .floating-elements::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: none;
        pointer-events: none;
        animation: none;
    }
    
    .floating-elements::after {
        content: '';
        position: absolute;
        top: 15px;
        right: 20px;
        font-size: 1.8rem;
        opacity: 0;
        animation: none;
        filter: none;
        z-index: 3;
    }
    
    .cta-content {
        position: relative;
        z-index: 2;
        animation: contentSlideIn 0.8s ease-out;
        width: 100%;
        max-width: 100%;
        padding: 0 var(--spacing-sm);
    }
    
    .cta-title {
        font-size: var(--font-size-xl);
        font-weight: 700;
        color: #ffffff;
        margin-bottom: var(--spacing-sm);
        text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
        position: relative;
        word-wrap: break-word;
        overflow-wrap: break-word;
        -webkit-hyphens: auto;
        hyphens: auto;
        line-height: 1.2;
    }
    
    .cta-title::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 50%;
        transform: translateX(-50%);
        width: 40px;
        height: 1px;
        background: var(--primary-color);
        border-radius: 0;
        animation: none;
        z-index: 2;
    }
    
    .cta-text {
        font-size: var(--font-size-sm);
        color: rgba(255, 255, 255, 0.95);
        line-height: 1.5;
        margin-bottom: var(--spacing-md);
        font-weight: 400;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
        word-wrap: break-word;
        overflow-wrap: break-word;
        -webkit-hyphens: auto;
        hyphens: auto;
        max-width: 100%;
    }
    
    .cta-stats {
        display: flex;
        justify-content: center;
        gap: var(--spacing-xl);
        margin-top: var(--spacing-md);
        position: relative;
        flex-wrap: wrap;
        width: 100%;
        max-width: 100%;
    }
    
    .cta-stats::before {
        content: '';
        position: absolute;
        top: -8px;
        left: 50%;
        transform: translateX(-50%);
        width: 60%;
        height: 1px;
        background: rgba(0, 212, 255, 0.2);
        z-index: 1;
    }
    
    .cta-stat {
        text-align: center;
        position: relative;
        padding: var(--spacing-sm);
        border-radius: 12px;
        background: rgba(0, 0, 0, 0.6);
        border: 1px solid rgba(0, 212, 255, 0.2);
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
        transition: all 0.3s ease;
        animation: none;
        min-width: 60px;
        flex: 1;
        max-width: 120px;
        box-shadow: 0 4px 15px rgba(0, 212, 255, 0.1);
    }
    
    .cta-stat:hover {
        transform: translateY(-3px);
        background: rgba(0, 212, 255, 0.1);
        border-color: rgba(0, 212, 255, 0.4);
        box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3);
    }
    
    .cta-stat-number {
        font-size: var(--font-size-2xl);
        font-weight: 800;
        color: #00d4ff;
        display: block;
        margin-bottom: 4px;
        text-shadow: 0 0 15px rgba(0, 212, 255, 0.8);
        word-wrap: break-word;
        overflow-wrap: break-word;
        line-height: 1;
    }
    
    .cta-stat-label {
        font-size: var(--font-size-xs);
        color: rgba(255, 255, 255, 0.8);
        text-transform: uppercase;
        letter-spacing: 1px;
        font-weight: 600;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
        word-wrap: break-word;
        overflow-wrap: break-word;
        line-height: 1.2;
        display: block;
    }
    
    /* All floating elements hidden on mobile */
    .tech-icon.modern-icon,
    .floating-orb,
    .connection-line {
        display: none;
    }
    
    /* Enhanced About Section for Mobile */
    .about-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
        text-align: center;
    }
    
    .about-text {
        order: 2;
    }
    
    .about-visual {
        order: 1;
    }
    
    .about-image {
        height: 300px;
        margin-bottom: var(--spacing-lg);
    }

    /* Mobile-specific fine-tuning for about visual */
    @media (max-width: 480px) {
        .about-image {
            height: 220px;
            border-radius: 16px;
        }
    }
    @media (max-width: 360px) {
        .about-image {
            height: 180px;
        }
    }

    /* Ensure full GIF visibility on mobile without cropping */
    @media (max-width: 768px) {
        .about-image {
            height: auto;
        }
        .image-placeholder {
            width: 100%;
            height: auto;
        }
        .image-placeholder img {
            width: 100%;
            height: auto;
            object-fit: contain;
        }
    }
    
    .stats {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
        margin-top: var(--spacing-lg);
    }
    
    .stat-item {
        padding: var(--spacing-lg);
        border-radius: 15px;
        background: rgba(26, 26, 26, 0.8);
        border: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .stat-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 212, 255, 0.3);
        border-color: var(--primary-color);
    }
    
    /* Enhanced Services Section for Mobile */
    .services-grid {
        display: flex;
        flex-direction: column;
        gap: var(--spacing-lg);
        align-items: center;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .service-card {
        width: 100%;
        max-width: 500px;
        padding: var(--spacing-lg);
        border-radius: 20px;
        background: rgba(26, 26, 26, 0.9);
        border: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        text-align: center;
    }
    
    .service-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 35px rgba(0, 212, 255, 0.2);
        border-color: var(--primary-color);
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
        font-size: var(--font-size-2xl);
        margin-bottom: var(--spacing-md);
    }
    

    
    /* Enhanced Team Section for Mobile */
    .team-grid {
        display: flex;
        flex-direction: column;
        gap: var(--spacing-lg);
        align-items: center;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .team-member {
        width: 100%;
        max-width: 500px;
        padding: var(--spacing-lg);
        border-radius: 20px;
        background: rgba(26, 26, 26, 0.9);
        border: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        text-align: center;
    }
    
    .team-member:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 35px rgba(0, 212, 255, 0.2);
        border-color: var(--primary-color);
    }
    
    .member-image {
        width: 100px;
        height: 100px;
        margin-bottom: var(--spacing-md);
    }
    
    /* Enhanced Contact Section for Mobile */
    .contact-content {
        flex-direction: column;
        gap: var(--spacing-xl);
        align-items: stretch;
    }
    
    .contact-info {
        order: 2;
        width: 100%;
        max-width: 100%;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: stretch;
    }
    
    .contact-item {
        width: 100%;
        max-width: 100%;
    }
    
    .contact-form {
        order: 1;
        width: 100%;
        max-width: 100%;
        padding: var(--spacing-lg);
        border-radius: 20px;
        background: rgba(26, 26, 26, 0.9);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .contact-item {
        padding: var(--spacing-lg);
        border-radius: 15px;
        background: rgba(26, 26, 26, 0.8);
        border: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .contact-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 212, 255, 0.3);
        border-color: var(--primary-color);
    }
    
    /* Enhanced Footer for Mobile */
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
        text-align: center;
    }
    
    .footer-section {
        padding: var(--spacing-lg) 0;
    }
    
    .social-links {
        justify-content: center;
        margin-top: var(--spacing-md);
    }
    

    
    /* Enhanced Mobile Animations */
    @keyframes floatMobile {
        0%, 100% {
            transform: translateY(0px) rotate(0deg) scale(1);
            opacity: 0.8;
        }
        25% {
            transform: translateY(-8px) rotate(3deg) scale(1.05);
            opacity: 1;
        }
        50% {
            transform: translateY(-4px) rotate(-2deg) scale(0.95);
            opacity: 0.9;
        }
        75% {
            transform: translateY(-12px) rotate(2deg) scale(1.1);
            opacity: 1;
        }
    }
    
    @keyframes modernFloatMobile {
        0%, 100% {
            transform: translateY(0px) rotate(0deg) scale(1);
            opacity: 0.85;
        }
        20% {
            transform: translateY(-12px) rotate(1deg) scale(1.02);
            opacity: 1;
        }
        40% {
            transform: translateY(-6px) rotate(-0.5deg) scale(0.98);
            opacity: 0.9;
        }
        60% {
            transform: translateY(-18px) rotate(0.5deg) scale(1.05);
            opacity: 0.95;
        }
        80% {
            transform: translateY(-10px) rotate(-1deg) scale(1.01);
            opacity: 0.88;
        }
    }
    
    @keyframes techPulse {
        0%, 100% {
            transform: translateY(0px) scale(1);
            opacity: 0.9;
        }
        25% {
            transform: translateY(-8px) scale(1.05);
            opacity: 1;
        }
        50% {
            transform: translateY(-4px) scale(0.95);
            opacity: 0.8;
        }
        75% {
            transform: translateY(-12px) scale(1.1);
            opacity: 0.95;
        }
    }
    
    @keyframes borderRotate {
        0% {
            transform: rotate(0deg);
        }
        100% {
            transform: rotate(360deg);
        }
    }
    
    @keyframes gradientShift {
        0%, 100% {
            opacity: 0.8;
            transform: scale(1);
        }
        50% {
            opacity: 1;
            transform: scale(1.1);
        }
    }
    
    @keyframes scanLine {
        0%, 100% {
            opacity: 0.3;
            transform: translate(-50%, -50%) scaleX(0.8);
        }
        50% {
            opacity: 1;
            transform: translate(-50%, -50%) scaleX(1.2);
        }
    }
    
    @keyframes rocketFloat {
        0%, 100% {
            transform: translateY(0px) rotate(0deg);
            opacity: 0.6;
        }
        50% {
            transform: translateY(-5px) rotate(5deg);
            opacity: 1;
        }
    }
    
    @keyframes lightningBolt {
        0%, 100% {
            transform: scale(1) rotate(0deg);
            opacity: 0.8;
            filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.6));
        }
        50% {
            transform: scale(1.2) rotate(5deg);
            opacity: 1;
            filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.8));
        }
    }
    
    @keyframes fireGlow {
        0%, 100% {
            transform: scale(1);
            opacity: 0.8;
            filter: drop-shadow(0 0 8px rgba(255, 69, 0, 0.6));
        }
        50% {
            transform: scale(1.1);
            opacity: 1;
            filter: drop-shadow(0 0 15px rgba(255, 69, 0, 0.8));
        }
    }
    
    @keyframes gradientPulse {
        0%, 100% {
            opacity: 0.8;
            transform: scale(1);
        }
        50% {
            opacity: 1;
            transform: scale(1.05);
        }
    }
    
    @keyframes contentSlideIn {
        0% {
            opacity: 0;
            transform: translateY(20px);
        }
        100% {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    @keyframes titleUnderline {
        0%, 100% {
            width: 60px;
            opacity: 0.6;
        }
        50% {
            width: 80px;
            opacity: 1;
        }
    }
    
    @keyframes statPulse {
        0%, 100% {
            transform: scale(1);
            opacity: 0.9;
        }
        50% {
            transform: scale(1.02);
            opacity: 1;
        }
    }
}

@media (max-width: 480px) {
    /* Small mobile preview modal */
    .preview-content {
        max-width: 98% !important;
        width: 98% !important;
        padding: var(--spacing-md) !important;
        max-height: 95vh !important;
        background: rgba(26, 26, 26, 0.98) !important;
        border: 1px solid rgba(0, 212, 255, 0.3) !important;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6) !important;
    }
    
    .preview-content .website-preview {
        height: auto !important;
        min-height: 250px;
        max-height: 350px;
        overflow-y: auto;
        padding: var(--spacing-md) !important;
    }
    
    .preview-content .website-icon {
        font-size: 2.5rem !important;
        margin-bottom: var(--spacing-sm) !important;
    }
    
    .preview-content h3 {
        font-size: var(--font-size-lg) !important;
        margin-bottom: var(--spacing-sm) !important;
    }
    
    .preview-content p {
        font-size: var(--font-size-sm) !important;
        margin-bottom: var(--spacing-md) !important;
    }
    
    .preview-content .website-actions {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
    
    .preview-content .website-actions a,
    .preview-content .website-actions button {
        width: 100%;
        justify-content: center;
        padding: var(--spacing-sm) var(--spacing-md);
        font-size: var(--font-size-sm);
    }
    
    .preview-website .website-preview {
        height: 300px !important;
        padding: var(--spacing-md) !important;
    }
    
    .preview-website .website-icon {
        font-size: 2.5rem !important;
        margin-bottom: var(--spacing-sm) !important;
    }
    
    .preview-website h3 {
        font-size: var(--font-size-xl) !important;
    }
    
    .preview-website p {
        font-size: var(--font-size-sm) !important;
    }
    
    .preview-header h3 {
        font-size: var(--font-size-lg) !important;
    }
    
    .preview-header p {
        font-size: var(--font-size-sm) !important;
    }
    
    /* Small mobile navigation */
    .mobile-nav-header {
        padding: 0.8rem var(--spacing-sm);
    }
    
    .mobile-logo h2 {
        font-size: var(--font-size-base);
    }
    
    .mobile-menu-toggle {
        padding: 0.4rem;
    }
    
    .mobile-menu-toggle span {
        width: 20px;
        height: 2px;
    }
    
    .mobile-menu {
        top: 60px;
        max-height: calc(100vh - 60px);
        background: rgba(15, 25, 40, 0.95);
        backdrop-filter: blur(100px);
        -webkit-backdrop-filter: blur(100px);
    }
    
    .mobile-menu-item {
        padding: var(--spacing-md);
        font-size: var(--font-size-base);
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(0px);
        -webkit-backdrop-filter: blur(0px);
        border-radius: 6px;
        margin: 3px 6px;
    }
    
    /* Small mobile hero */
    .hero-title {
        font-size: var(--font-size-xl);
        margin-top: 60px;
        line-height: 1.2;
    }
    
    .typing-text,
    .typing-text-2025 {
        font-size: var(--font-size-lg);
        background: transparent !important;
        padding: 0 !important;
        border: none !important;
        box-shadow: none !important;
    }
    
    .hero-subtitle {
        font-size: var(--font-size-sm);
        margin-bottom: var(--spacing-md);
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
    
    .hero-buttons .btn {
        padding: var(--spacing-sm) var(--spacing-md);
        font-size: var(--font-size-sm);
        border-radius: 10px;
        width: 100%;
        max-width: 280px;
    }
    
    /* Small mobile sections */
    .section-title {
        font-size: var(--font-size-xl);
        margin-bottom: var(--spacing-sm);
    }
    
    .section-subtitle {
        font-size: var(--font-size-sm);
        margin-bottom: var(--spacing-md);
    }
    
    .container {
        padding: 0 var(--spacing-sm);
    }
    
    section {
        padding: var(--spacing-lg) 0;
    }
    
    /* Small mobile cards */
    .service-card,
    .project-card,
    .team-member,
    .contact-item {
        padding: var(--spacing-md);
        border-radius: 12px;
        margin-bottom: var(--spacing-sm);
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
        font-size: var(--font-size-lg);
    }
    
    .member-image {
        width: 70px;
        height: 70px;
    }
    
    /* Small mobile form */
    .contact-form {
        padding: var(--spacing-md);
        border-radius: 12px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: var(--spacing-sm);
        font-size: 16px;
        border-radius: 8px;
    }
    
    /* Small mobile buttons */
    .btn {
        padding: var(--spacing-sm) var(--spacing-md);
        font-size: var(--font-size-sm);
        border-radius: 8px;
        min-height: 44px;
    }
    
    /* Small mobile stats */
    .stat-item {
        padding: var(--spacing-md);
        border-radius: 12px;
    }
    
    .stat-item h4 {
        font-size: var(--font-size-xl);
    }
    
    /* Ultra Modern Call-to-Action Area for Small Mobile */
    .floating-elements {
        height: 120px;
        margin-top: var(--spacing-md);
        background: rgba(0, 0, 0, 0.8);
        border-radius: 18px;
        border: 2px solid rgba(0, 212, 255, 0.25);
        box-shadow: 0 6px 24px rgba(0, 212, 255, 0.15), inset 0 0 16px rgba(0, 212, 255, 0.05);
        padding: var(--spacing-md);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        min-height: 120px;
        max-height: 120px;
        width: 100%;
        max-width: 100%;
    }
    
    .floating-elements::after {
        content: '';
        font-size: 1.4rem;
        top: 12px;
        right: 18px;
        filter: none;
        animation: none;
    }
    
    /* CTA Content - Only for Mobile */
    .cta-content {
        padding: 0 var(--spacing-xs);
    }
    
    .cta-title {
        font-size: var(--font-size-lg);
        margin-bottom: var(--spacing-xs);
        line-height: 1.1;
    }
    
    .cta-title::after {
        width: 40px;
        height: 1.5px;
    }
    
    .cta-text {
        font-size: var(--font-size-xs);
        margin-bottom: var(--spacing-sm);
        line-height: 1.3;
    }
    
    .cta-stats {
        gap: var(--spacing-xs);
        margin-top: var(--spacing-xs);
        flex-wrap: wrap;
    }
    
    .cta-stat {
        padding: var(--spacing-xs);
        border-radius: 10px;
        background: rgba(0, 0, 0, 0.6);
        border: 1px solid rgba(0, 212, 255, 0.2);
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
        min-width: 50px;
        max-width: 80px;
        flex: 1;
        box-shadow: 0 3px 12px rgba(0, 212, 255, 0.1);
    }
    
    .cta-stat-number {
        font-size: var(--font-size-lg);
        color: #00d4ff;
        text-shadow: 0 0 10px rgba(0, 212, 255, 0.6);
        line-height: 1;
    }
    
    .cta-stat-label {
        font-size: 0.6rem;
        line-height: 1.1;
    }
}

/* Extra Small Mobile Optimizations */
@media (max-width: 360px) {
    .floating-elements {
        height: 110px;
        min-height: 110px;
        max-height: 110px;
        padding: var(--spacing-sm);
        margin-top: var(--spacing-sm);
        background: rgba(0, 0, 0, 0.8);
        border-radius: 16px;
        border: 2px solid rgba(0, 212, 255, 0.25);
        box-shadow: 0 5px 20px rgba(0, 212, 255, 0.15), inset 0 0 12px rgba(0, 212, 255, 0.05);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        width: 100%;
        max-width: 100%;
    }
    
    .cta-content {
        padding: 0 var(--spacing-xs);
    }
    
    .cta-title {
        font-size: var(--font-size-base);
        margin-bottom: var(--spacing-xs);
        line-height: 1.1;
    }
    
    .cta-text {
        font-size: 0.7rem;
        margin-bottom: var(--spacing-xs);
        line-height: 1.2;
    }
    
    .cta-stats {
        gap: var(--spacing-xs);
        margin-top: var(--spacing-xs);
    }
    
    .cta-stat {
        padding: 4px;
        border-radius: 8px;
        background: rgba(0, 0, 0, 0.6);
        border: 1px solid rgba(0, 212, 255, 0.2);
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
        min-width: 45px;
        max-width: 70px;
        box-shadow: 0 2px 8px rgba(0, 212, 255, 0.1);
    }
    
    .cta-stat-number {
        font-size: var(--font-size-base);
        color: #00d4ff;
        text-shadow: 0 0 8px rgba(0, 212, 255, 0.6);
        line-height: 1;
    }
    
    .cta-stat-label {
        font-size: 0.55rem;
        line-height: 1;
    }
}

/* Landscape Mobile Optimizations - Simple */
@media (max-width: 768px) and (orientation: landscape) {
    /* Hide heavy elements in landscape */
    .floating-elements,
    .tech-icon.modern-icon {
        display: none !important;
    }
    
    /* Simple landscape optimizations */
    .hero {
        min-height: 60vh;
    }
    
    .mobile-bottom-menubar {
        bottom: 15px;
        left: 15px;
    }
    
    /* Landscape Chatbot */
    .ai-chatbot {
        bottom: 15px !important;
        right: 15px !important;
    }
    
    .cta-title {
        font-size: var(--font-size-base);
        margin-bottom: var(--spacing-xs);
    }
    
    .cta-text {
        font-size: var(--font-size-xs);
        margin-bottom: var(--spacing-xs);
    }
    
    .cta-stats {
        gap: var(--spacing-sm);
        margin-top: var(--spacing-xs);
    }
    
    .cta-stat {
        padding: var(--spacing-xs);
        border-radius: 10px;
        background: rgba(0, 0, 0, 0.6);
        border: 1px solid rgba(0, 212, 255, 0.2);
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
        min-width: 55px;
        max-width: 90px;
        box-shadow: 0 3px 12px rgba(0, 212, 255, 0.1);
    }
    
    .cta-stat-number {
        font-size: var(--font-size-lg);
        color: #00d4ff;
        text-shadow: 0 0 10px rgba(0, 212, 255, 0.6);
    }
    
    .cta-stat-label {
        font-size: 0.65rem;
    }
}
    
    /* All floating elements hidden on small mobile */
    .tech-icon.modern-icon,
    .floating-orb,
    .connection-line {
        display: none;
    }
    
    /* Small mobile grids */
.services-grid,
.projects-grid,
.team-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-sm);
}

/* Enhanced Small Mobile Support */
@media (max-width: 480px) {
    .container {
        padding: 0 var(--spacing-sm);
        max-width: 100%;
    }
    
    .hero-content {
        padding: 0 var(--spacing-sm);
        margin-top: 60px;
    }
    
    .mobile-bottom-menubar {
        bottom: 15px;
        left: 15px;
    }
    
    .mobile-menubar-toggle {
        padding: 10px 14px;
        font-size: 13px;
    }
    
    .btn {
        min-height: 44px;
        padding: var(--spacing-sm) var(--spacing-md);
        font-size: 14px;
    }
    
    /* Small Mobile Chatbot */
    .ai-chatbot {
        bottom: 15px !important;
        right: 15px !important;
    }
    
    .chatbot-container {
        bottom: 70px !important;
    }
}
    
    .stats {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }
    
    /* Small mobile contact */
    .contact-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .contact-info {
        order: 2;
    }
    
    .contact-form {
        order: 1;
    }
    
    /* Small mobile about */
    .about-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
        text-align: center;
    }
    
    .about-text {
        order: 2;
    }
    
    .about-visual {
        order: 1;
    }
    
    /* Small mobile footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
        text-align: center;
    }
    
    .footer-section {
        margin-bottom: var(--spacing-md);
    }
    
    .social-links {
        justify-content: center;
        gap: var(--spacing-md);
    }
    
    .social-links a {
        width: 45px;
        height: 45px;
        font-size: var(--font-size-lg);
    }

/* Enhanced Mobile Touch Interactions */
@media (hover: none) and (pointer: coarse) {
    /* Touch-friendly interactions for mobile */
    .nav-link,
    .btn,
    .service-card,
    .project-card,
    .team-member,
    .contact-item,
    .mobile-menu-item {
        transition: all 0.2s ease;
        -webkit-tap-highlight-color: transparent;
    }
    
    .nav-link:active,
    .btn:active,
    .service-card:active,
    .project-card:active,
    .team-member:active,
    .contact-item:active,
    .mobile-menu-item:active {
        transform: scale(0.98);
    }
    
    /* Enhanced touch targets */
    .nav-link {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: var(--spacing-sm) var(--spacing-md);
    }
    
    .btn {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: var(--spacing-md) var(--spacing-lg);
    }
    
    /* Disable hover effects on touch devices */
    .service-card:hover,
    .project-card:hover,
    .team-member:hover,
    .contact-item:hover {
        transform: none;
    }
    
    /* Enhanced mobile scrolling */
    .nav-menu {
        -webkit-overflow-scrolling: touch;
        scroll-behavior: auto;
        touch-action: pan-y;
    }
    
    /* Prevent zoom on input focus */
    input, select, textarea {
        font-size: 16px !important;
        touch-action: manipulation;
    }
    
    /* Prevent horizontal scroll on mobile */
    * {
        max-width: 100%;
        box-sizing: border-box;
    }
    
    /* Better touch targets */
    button, a, .clickable {
        min-height: 44px;
        min-width: 44px;
        touch-action: manipulation;
    }
    
    /* Prevent text selection on mobile */
    * {
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        -khtml-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }
    
    /* Allow text selection for inputs and content */
    input, textarea, .selectable {
        -webkit-user-select: text;
        -khtml-user-select: text;
        -moz-user-select: text;
        -ms-user-select: text;
        user-select: text;
    }
    
    /* Optimize animations for mobile */
    * {
        will-change: auto;
    }
    
    /* Reduce motion for better performance */
    @media (prefers-reduced-motion: reduce) {
        *, *::before, *::after {
            animation-duration: 0.01ms !important;
            animation-iteration-count: 1 !important;
            transition-duration: 0.01ms !important;
        }
    }
    
    /* Mobile optimized class */
    .mobile-optimized * {
        animation-duration: 0.3s !important;
        transition-duration: 0.2s !important;
    }
    
    .mobile-optimized .floating-elements {
        display: none !important;
    }
    
    .mobile-optimized .cursor-trail {
        display: none !important;
    }
    
    /* Better touch feedback */
    .mobile-menu-item {
        min-height: 50px;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        padding: var(--spacing-md) var(--spacing-lg);
        border-radius: 8px;
        margin: 2px var(--spacing-sm);
    }
    
    .mobile-menu-item:active {
        background: rgba(0, 212, 255, 0.1);
        transform: scale(0.98);
    }
    
    /* Fix mobile typing animation */
    .typing-text,
    .typing-text-2025 {
        font-size: var(--font-size-2xl) !important;
        padding: 0 !important;
        min-height: 1.1em !important;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
    }
    
    /* CTA area completely removed on mobile */
    .floating-elements {
        display: none !important;
    }
}

/* Tablet Optimizations */
@media (min-width: 769px) and (max-width: 1024px) {
    /* Tablet-specific adjustments */
    .hero-title {
        font-size: var(--font-size-4xl);
        margin-top: 90px;
    }
    
    .typing-text,
    .typing-text-2025 {
        font-size: var(--font-size-4xl);
        padding: 0;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
        text-align: center;
        padding: 0 var(--spacing-lg);
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-lg);
    }
    
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-lg);
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-lg);
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
        text-align: center;
    }
    
    .stats {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-lg);
    }
    
    /* Tablet floating elements */
    .floating-elements {
        height: 400px;
    }
    
    .tech-icon.modern-icon {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }
    
    /* Tablet navigation */
    .mobile-nav {
        display: none !important;
    }
    
    .desktop-nav {
        display: block !important;
    }
    
    .nav-menu {
        gap: var(--spacing-md);
    }
    
    .nav-link {
        font-size: var(--font-size-base);
        padding: var(--spacing-sm) var(--spacing-md);
    }
    
    /* Tablet footer */
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-lg);
    }
    
    .footer-section {
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

/* Enhanced Mobile Performance Optimizations */
@media (max-width: 768px) {
    /* Mobile Performance Mode - Simple */
.mobile-perf-mode {
    --animation-duration: 0.5s !important;
    --transition-duration: 0.3s !important;
}

/* Hide heavy elements on mobile */
.mobile-perf-mode .floating-elements,
.mobile-perf-mode .tech-icon.modern-icon {
    display: none !important;
}
    
    /* Reduce animations for better performance on mobile */
    .tech-icon.modern-icon {
        animation-duration: 8s;
    }
    
    .floating-elements {
        transform: translateZ(0);
        will-change: transform;
    }
    
    /* Optimize 3D transforms for mobile */
    .service-card,
    .project-card,
    .team-member {
        transform: translateZ(0);
        will-change: transform;
    }
    
    /* Reduce shadow complexity for mobile */
    .service-card,
    .project-card,
    .team-member,
    .contact-item {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    }
    
    .service-card:hover,
    .project-card:hover,
    .team-member:hover,
    .contact-item:hover {
        box-shadow: 0 8px 20px rgba(0, 212, 255, 0.2);
    }
    
    /* Mobile-specific improvements */
    .container {
        padding: 0 var(--spacing-md);
        max-width: 100%;
        overflow-x: hidden;
    }
    
    section {
        padding: var(--spacing-xl) 0;
        overflow-x: hidden;
    }
    
    /* Fix mobile overflow issues */
    .hero {
        overflow: hidden;
        min-height: 100vh;
        padding: 0;
    }
    
    .hero-content {
        padding: 0 var(--spacing-md);
        margin-top: 80px;
    }
    
    /* Mobile form improvements */
    .contact-form {
        padding: var(--spacing-lg);
        border-radius: 15px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: var(--spacing-md);
        border-radius: 10px;
        font-size: 16px;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        touch-action: manipulation;
    }
    
    /* Prevent zoom on iOS */
    .form-group input[type="text"],
    .form-group input[type="email"],
    .form-group input[type="tel"],
    .form-group textarea {
        font-size: 16px !important;
    }
    
    /* Mobile button improvements */
    .btn {
        padding: var(--spacing-md) var(--spacing-lg);
        border-radius: 12px;
        font-size: var(--font-size-base);
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
    }
    
    /* Simple mobile touch optimizations */
    .mobile-perf-mode .btn {
        transform: translateZ(0) !important;
        will-change: transform !important;
    }
    
    /* Mobile card improvements */
    .service-card,
    .project-card,
    .team-member {
        padding: var(--spacing-lg);
        border-radius: 15px;
        margin-bottom: var(--spacing-md);
    }
    
    /* Mobile preview modal improvements */
    .preview-modal {
        padding: var(--spacing-sm);
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
    }
    
    .preview-content {
        border-radius: var(--radius-lg);
        max-height: 90vh;
        overflow-y: auto;
        background: rgba(26, 26, 26, 0.98);
        border: 1px solid rgba(255, 255, 255, 0.15);
        box-shadow: 0 15px 50px rgba(0, 0, 0, 0.8);
        padding: var(--spacing-lg);
        margin: var(--spacing-sm);
        width: 95%;
        max-width: 95%;
    }
    
    .preview-content .preview-header h3 {
        font-size: var(--font-size-2xl) !important;
        margin-bottom: var(--spacing-sm) !important;
    }
    
    .preview-content .preview-header p {
        font-size: var(--font-size-base) !important;
        line-height: 1.6 !important;
        max-width: 100% !important;
    }
    
    .preview-content .preview-website h4 {
        font-size: var(--font-size-lg) !important;
        margin-bottom: var(--spacing-md) !important;
    }
    
    .preview-content .website-preview {
        height: auto !important;
        min-height: 250px !important;
        max-height: 350px !important;
        overflow-y: auto;
        padding: var(--spacing-lg) !important;
    }
    
    .preview-content .website-icon {
        font-size: 3rem !important;
        margin-bottom: var(--spacing-md) !important;
    }
    
    .preview-content .website-preview h3 {
        font-size: var(--font-size-xl) !important;
        margin-bottom: var(--spacing-sm) !important;
    }
    
    .preview-content .website-preview p {
        font-size: var(--font-size-sm) !important;
        margin-bottom: var(--spacing-md) !important;
        max-width: 100% !important;
    }
    
    .preview-content .website-actions {
        flex-direction: column !important;
        gap: var(--spacing-sm) !important;
        margin-bottom: var(--spacing-md) !important;
    }
    
    .preview-content .website-actions a,
    .preview-content .website-actions button {
        width: 100% !important;
        justify-content: center !important;
        padding: var(--spacing-md) var(--spacing-lg) !important;
        min-width: auto !important;
        font-size: var(--font-size-base) !important;
    }
    
    .preview-content .website-url {
        margin-top: var(--spacing-md) !important;
        padding: var(--spacing-sm) var(--spacing-md) !important;
        font-size: var(--font-size-xs) !important;
    }
    
    .preview-content .preview-features h4 {
        font-size: var(--font-size-lg) !important;
        margin-bottom: var(--spacing-md) !important;
    }
    
    .preview-content .preview-features ul {
        grid-template-columns: 1fr !important;
        gap: var(--spacing-sm) !important;
    }
    
    .preview-content .preview-features li {
        padding: var(--spacing-sm) !important;
        font-size: var(--font-size-sm) !important;
    }
    
    .preview-content .preview-tech h4 {
        font-size: var(--font-size-lg) !important;
        margin-bottom: var(--spacing-md) !important;
    }
    
    .preview-content .preview-tech span {
        padding: var(--spacing-xs) var(--spacing-sm) !important;
        font-size: var(--font-size-xs) !important;
    }
    
    .preview-content .close-btn {
        top: var(--spacing-sm) !important;
        right: var(--spacing-sm) !important;
        width: 40px !important;
        height: 40px !important;
        font-size: var(--font-size-lg) !important;
    }
    
    /* Mobile navigation improvements */
    .mobile-nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: rgba(0, 150, 255, 0.15);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(0, 212, 255, 0.3);
        box-shadow: 0 4px 20px rgba(0, 150, 255, 0.2);
    }
    
    .mobile-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(15, 25, 40, 0.95);
        backdrop-filter: blur(100px);
        -webkit-backdrop-filter: blur(100px);
        border-top: 1px solid rgba(0, 212, 255, 0.2);
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        transform: translateY(-100%);
        transition: transform 0.3s ease;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }
    
    .mobile-menu.active {
        transform: translateY(0);
    }
    
    .mobile-menu-item {
        padding: var(--spacing-lg);
        border-bottom: 1px solid rgba(0, 212, 255, 0.2);
        font-size: var(--font-size-lg);
        font-weight: 500;
        color: rgba(255, 255, 255, 0.9);
        transition: all 0.3s ease;
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(0px);
        -webkit-backdrop-filter: blur(0px);
        border-radius: 8px;
        margin: 4px 8px;
    }
    
    .mobile-menu-item:last-child {
        border-bottom: none;
    }
    
    .mobile-menu-item:hover {
        background: rgba(0, 212, 255, 0.08);
        color: var(--primary-color);
        backdrop-filter: blur(0px);
        -webkit-backdrop-filter: blur(0px);
    }
    
    .mobile-menu-item i {
        margin-right: var(--spacing-md);
        width: 20px;
        text-align: center;
        color: var(--primary-color);
    }
    
    /* Fix mobile typing animation */
    .hero-title {
        font-size: var(--font-size-2xl) !important;
        margin-top: 60px !important;
    }
    
    .typing-text,
    .typing-text-2025 {
        font-size: var(--font-size-xl) !important;
        padding: 0 !important;
        min-height: 1.1em !important;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
    }
    
    /* CTA area completely removed on mobile */
    .floating-elements {
        display: none !important;
    }
}

/* Mobile Animation Performance Optimizations */
@media (max-width: 768px) {
    /* Disable heavy animations on mobile for better performance */
    .tech-icon,
    .floating-orb,
    .connection-line {
        animation: none !important;
        transform: none !important;
        transition: none !important;
    }
    
    /* Simplify 3D effects on mobile */
    .service-card:hover,
    .project-card:hover,
    .team-member:hover,
    .contact-item:hover {
        transform: none !important;
        box-shadow: var(--shadow-md) !important;
    }
    
    /* Disable floating elements on mobile */
    .floating-elements {
        display: none !important;
    }
    
    /* Optimize scroll behavior for mobile */
    html {
        scroll-behavior: auto;
        -webkit-overflow-scrolling: touch;
        touch-action: pan-y;
        overscroll-behavior: none;
    }
    
    body {
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
        touch-action: pan-y;
        overscroll-behavior: none;
    }
    
    /* Prevent bounce scrolling on iOS */
    .hero, .about, .services, .projects, .team, .contact {
        overscroll-behavior: none;
        -webkit-overflow-scrolling: touch;
    }
    
    /* Simplify navbar animations on mobile */
    .modern-navbar {
        animation: none !important;
        transition: background 0.3s ease;
    }
    
    /* Disable complex shadows on mobile */
    .glass-2025,
    .neumorphism-2025 {
        box-shadow: var(--shadow-md) !important;
        backdrop-filter: blur(10px) !important;
        -webkit-backdrop-filter: blur(10px) !important;
    }
    
    /* Simplify button animations on mobile */
    .btn:hover {
        transform: none !important;
        box-shadow: var(--shadow-md) !important;
    }
    
    /* Disable particle effects on mobile */
    .particle-trail,
    .icon-glow {
        display: none !important;
    }
    
    /* Optimize card animations for mobile */
    .card-2025 {
        transition: box-shadow 0.3s ease, transform 0.2s ease !important;
    }
    
    .card-2025:active {
        transform: scale(0.98) !important;
    }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
    /* Further reduce animations on very small screens */
    .fade-in,
    .slide-up,
    .scale-in {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
    
    /* Simplify all transitions */
    * {
        transition-duration: 0.2s !important;
        transition-timing-function: ease !important;
    }
    
    /* Disable complex hover effects */
    .hover-3d-2025:hover {
        transform: none !important;
    }
    
    /* Optimize touch targets */
    .btn,
    .nav-menu-link,
    .preview-btn {
        min-height: 44px;
        min-width: 44px;
    }
}

/* Landscape mobile optimization */
@media (max-width: 768px) and (orientation: landscape) {
    /* Reduce animations in landscape mode for better performance */
    .hero-video {
        display: none !important;
    }
    
    .floating-elements {
        display: none !important;
    }
    
    /* Simplify hero section */
    .hero-content {
        padding: 2rem 1rem !important;
    }
}

/* High DPI mobile devices */
@media (-webkit-min-device-pixel-ratio: 2) and (max-width: 768px) {
    /* Optimize for high DPI screens */
    .glass-2025 {
        backdrop-filter: blur(8px) !important;
        -webkit-backdrop-filter: blur(8px) !important;
    }
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    /* Disable all animations for users who prefer reduced motion */
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .tech-icon,
    .floating-orb,
    .connection-line,
    .floating-elements {
        display: none !important;
    }
}

/* Mobile touch optimization */
@media (max-width: 768px) {
    /* Optimize touch interactions */
    .btn,
    .nav-menu-link,
    .preview-btn,
    .service-card,
    .project-card,
    .team-member {
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        user-select: none;
    }
    
    /* Improve scrolling performance */
    .container,
    .section {
        will-change: auto;
        transform: translateZ(0);
        backface-visibility: hidden;
    }
    
    /* Disable hardware acceleration for better battery life */
    .glass-2025,
    .neumorphism-2025 {
        transform: translateZ(0);
        backface-visibility: hidden;
    }
    
    /* Optimize text rendering */
    body {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        text-rendering: optimizeLegibility;
    }
}

/* Navbar title background cleanup */
.modern-navbar .logo-title {
	background: transparent !important;
	-webkit-background-clip: initial !important;
	background-clip: initial !important;
	-webkit-text-fill-color: currentColor !important;
	padding: 0 !important;
	border: none !important;
	box-shadow: none !important;
}

/* Services card title background cleanup */
.service-card .text-gradient-2025,
.card-2025 .text-gradient-2025 {
	background: transparent !important;
	-webkit-background-clip: initial !important;
	background-clip: initial !important;
	-webkit-text-fill-color: currentColor !important;
	color: var(--text-primary) !important;
	padding: 0 !important;
	border: none !important;
	box-shadow: none !important;
}

/* Force desktop animations on mobile when requested */
.force-desktop-anims .floating-elements,
.force-desktop-anims .tech-icon,
.force-desktop-anims .floating-orb,
.force-desktop-anims .connection-line {
	animation: initial !important;
	transform: initial !important;
	transition: initial !important;
	display: initial !important;
}

/* Ensure hero video shows when forcing desktop anims */
.force-desktop-anims .hero-video { display: block !important; }

/* Hero Right Side Animation Styles - Enhanced with RGB & Purple Effects */
.hero-right-animation {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Tech Showcase - Enhanced Grid Layout */
.tech-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 24px;
    max-width: 340px;
    position: relative;
}

.tech-showcase::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: radial-gradient(circle at center, rgba(139, 92, 246, 0.08) 0%, transparent 70%);
    border-radius: 24px;
    z-index: -1;
    animation: showcaseGlow 4s ease-in-out infinite alternate;
}

.tech-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(139, 92, 246, 0.05) 100%);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 20px;
    padding: 24px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.tech-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.2), transparent);
    transition: left 0.6s ease;
}

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

.tech-card:hover {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15) 0%, rgba(236, 72, 153, 0.1) 100%);
    border-color: rgba(139, 92, 246, 0.6);
    transform: translateY(-8px) scale(1.05);
    box-shadow: 
        0 20px 60px rgba(139, 92, 246, 0.3),
        0 0 0 1px rgba(139, 92, 246, 0.2) inset,
        0 0 40px rgba(236, 72, 153, 0.2);
}

.tech-icon {
    font-size: 36px;
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 50%, #00d4ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 16px;
    transition: all 0.4s ease;
    position: relative;
    animation: iconColorShift 3s ease-in-out infinite;
}

.tech-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.4s ease;
}

.tech-card:hover .tech-icon::after {
    transform: translate(-50%, -50%) scale(1);
}

.tech-card:hover .tech-icon {
    transform: scale(1.2);
    filter: drop-shadow(0 0 25px rgba(139, 92, 246, 0.8));
    animation: iconPulse 0.6s ease-in-out infinite alternate;
}

.tech-label {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.tech-card:hover .tech-label {
    color: rgba(255, 255, 255, 1);
    text-shadow: 0 0 15px rgba(139, 92, 246, 0.8);
}

/* Floating Dots - Enhanced RGB Background */
.floating-dots {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.dot {
    position: absolute;
    border-radius: 50%;
    opacity: 0.7;
    animation: floatDot 8s ease-in-out infinite;
    filter: blur(0.5px);
}

.dot-1 { 
    width: 10px; 
    height: 10px; 
    background: radial-gradient(circle, #8b5cf6, #ec4899);
    top: 12%; 
    left: 8%; 
    animation-delay: 0s;
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.6);
}

.dot-2 { 
    width: 8px; 
    height: 8px; 
    background: radial-gradient(circle, #ec4899, #00d4ff);
    top: 22%; 
    right: 12%; 
    animation-delay: 2s;
    box-shadow: 0 0 18px rgba(236, 72, 153, 0.6);
}

.dot-3 { 
    width: 9px; 
    height: 9px; 
    background: radial-gradient(circle, #00d4ff, #8b5cf6);
    top: 58%; 
    left: 18%; 
    animation-delay: 4s;
    box-shadow: 0 0 22px rgba(0, 212, 255, 0.6);
}

.dot-4 { 
    width: 7px; 
    height: 7px; 
    background: radial-gradient(circle, #8b5cf6, #ec4899);
    top: 68%; 
    right: 22%; 
    animation-delay: 6s;
    box-shadow: 0 0 16px rgba(139, 92, 246, 0.6);
}

.dot-5 { 
    width: 8px; 
    height: 8px; 
    background: radial-gradient(circle, #ec4899, #00d4ff);
    bottom: 18%; 
    left: 12%; 
    animation-delay: 1s;
    box-shadow: 0 0 18px rgba(236, 72, 153, 0.6);
}

.dot-6 { 
    width: 9px; 
    height: 9px; 
    background: radial-gradient(circle, #00d4ff, #8b5cf6);
    bottom: 28%; 
    right: 18%; 
    animation-delay: 3s;
    box-shadow: 0 0 22px rgba(0, 212, 255, 0.6);
}

/* Enhanced RGB Animations */
@keyframes showcaseGlow {
    0% { 
        background: radial-gradient(circle at center, rgba(139, 92, 246, 0.08) 0%, transparent 70%);
    }
    100% { 
        background: radial-gradient(circle at center, rgba(236, 72, 153, 0.08) 0%, transparent 70%);
    }
}

@keyframes iconColorShift {
    0% { 
        background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 50%, #00d4ff 100%);
    }
    50% { 
        background: linear-gradient(135deg, #ec4899 0%, #00d4ff 50%, #8b5cf6 100%);
    }
    100% { 
        background: linear-gradient(135deg, #00d4ff 0%, #8b5cf6 50%, #ec4899 100%);
    }
}

@keyframes iconPulse {
    0% { 
        transform: scale(1.2);
    }
    100% { 
        transform: scale(1.3);
    }
}

@keyframes floatDot {
    0%, 100% { 
        transform: translateY(0px) scale(1);
        opacity: 0.7;
    }
    25% {
        transform: translateY(-25px) scale(1.2);
        opacity: 0.9;
    }
    50% { 
        transform: translateY(-30px) scale(1.3);
        opacity: 1;
    }
    75% {
        transform: translateY(-20px) scale(1.1);
        opacity: 0.8;
    }
}

/* Mobile Responsive for Enhanced RGB Hero Right Animation */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
    
    .hero-visual {
        min-height: 320px;
        margin-top: var(--spacing-lg);
    }
    
    .tech-showcase {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
        padding: 20px;
        max-width: 300px;
    }
    
    .tech-card {
        padding: 20px 16px;
        border-radius: 16px;
    }
    
    .tech-icon {
        font-size: 30px;
        margin-bottom: 14px;
    }
    
    .tech-label {
        font-size: 13px;
        letter-spacing: 0.6px;
    }
    
    .dot {
        filter: blur(0.3px);
    }
    
    .dot-1 { width: 8px; height: 8px; }
    .dot-2 { width: 6px; height: 6px; }
    .dot-3 { width: 7px; height: 7px; }
    .dot-4 { width: 5px; height: 5px; }
    .dot-5 { width: 6px; height: 6px; }
    .dot-6 { width: 7px; height: 7px; }
}

@media (max-width: 480px) {
    .hero-visual {
        min-height: 280px;
    }
    
    .tech-showcase {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        padding: 16px;
        max-width: 260px;
    }
    
    .tech-card {
        padding: 16px 12px;
        border-radius: 14px;
    }
    
    .tech-icon {
        font-size: 26px;
        margin-bottom: 12px;
    }
    
    .tech-label {
        font-size: 12px;
        letter-spacing: 0.5px;
    }
    
    .dot-1 { width: 6px; height: 6px; }
    .dot-2 { width: 5px; height: 5px; }
    .dot-3 { width: 6px; height: 6px; }
    .dot-4 { width: 4px; height: 4px; }
    .dot-5 { width: 5px; height: 5px; }
    .dot-6 { width: 6px; height: 6px; }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .tech-card {
        transition: none;
    }
    
    .tech-card:hover {
        transform: none;
    }
    
    .tech-icon {
        transition: none;
        animation: none;
    }
    
    .tech-card:hover .tech-icon {
        transform: none;
        animation: none;
    }
    
    .tech-card::before {
        transition: none;
    }
    
    .tech-card:hover::before {
        left: -100%;
    }
    
    .dot {
        animation: none;
    }
    
    .tech-showcase::before {
        animation: none;
    }
}

/* Mobile Responsive for Projects Section */
@media (max-width: 768px) {
    .projects-grid {
        flex-direction: column;
        align-items: center;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .project-card {
        width: 100%;
        max-width: 500px;
        border-radius: 20px;
        overflow: hidden;
        background: rgba(26, 26, 26, 0.9);
        border: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        flex-direction: column;
        padding: var(--spacing-lg);
        gap: var(--spacing-md);
        text-align: center;
    }
    
    .project-card:hover {
        transform: translateX(8px) scale(1.02);
        border-color: var(--primary-color);
        box-shadow: 0 20px 40px rgba(0, 212, 255, 0.25), 0 15px 30px rgba(0, 0, 0, 0.4);
    }
    
    .project-image {
        height: 200px;
        width: 100%;
        min-width: auto;
    }
    
    .project-content {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: var(--spacing-md);
        justify-content: space-between;
        min-height: 120px;
    }
    
    .project-content h4 {
        color: var(--text-primary);
        margin-bottom: var(--spacing-sm);
        font-size: var(--font-size-2xl);
        font-weight: 600;
    }
    
    .project-content p {
        color: var(--text-secondary);
        margin-bottom: var(--spacing-md);
        line-height: 1.6;
        font-size: var(--font-size-base);
    }
    
    .project-tech {
        display: flex;
        flex-wrap: wrap;
        gap: var(--spacing-sm);
        margin-bottom: var(--spacing-md);
    }
    
    .project-tech span {
        background: var(--accent-bg);
        color: var(--text-secondary);
        padding: var(--spacing-sm) var(--spacing-md);
        border-radius: var(--radius-sm);
        font-size: var(--font-size-sm);
        border: 1px solid var(--border-color);
    }
}

@media (max-width: 480px) {
    .projects-grid {
        gap: var(--spacing-md);
        padding: 0 var(--spacing-xs);
    }
    
    .project-card {
        min-height: 300px;
        padding: var(--spacing-sm);
    }
    
    .project-image {
        height: 160px;
        width: 100%;
    }
    
    .project-content h4 {
        font-size: var(--font-size-lg);
        margin-bottom: var(--spacing-xs);
    }
    
    .project-content p {
        font-size: 12px;
        margin-bottom: var(--spacing-sm);
    }
    
    .project-tech {
        gap: 6px;
    }
    
    .project-tech span {
        font-size: 10px;
        padding: 3px 6px;
    }
    
    .preview-btn {
        padding: 8px 12px;
        font-size: 11px;
        width: 100%;
        justify-content: center;
    }
    
    .demo-badge,
    .restricted-badge {
        padding: 3px 6px;
        font-size: 9px;
        border-radius: 10px;
    }
}

/* Tablet Responsive */
@media (min-width: 769px) and (max-width: 1024px) {
    .projects-grid {
        gap: var(--spacing-lg);
    }
    
    .project-card {
        min-height: 350px;
        flex: 0 0 calc(50% - var(--spacing-xl));
    }
    
    .project-image {
        height: 190px;
        width: 100%;
    }
}

/* Client References Section - Side by Side Layout */
.client-references .projects-grid {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-xl);
    max-width: 1400px;
    margin: 0 auto;
    justify-content: space-between;
}

.client-references .project-card {
    flex: 0 0 calc(33.333% - var(--spacing-xl));
    min-width: 300px;
    background: rgba(26, 26, 26, 0.9);
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    transform-style: preserve-3d;
    perspective: 1000px;
    will-change: transform, box-shadow, border-color;
}

.client-references .project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(139, 92, 246, 0.1));
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: -1;
    transform: scale(0.8);
}

.client-references .project-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1;
}

.client-references .project-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.25), 0 15px 30px rgba(0, 0, 0, 0.4);
}

.client-references .project-card:hover::before {
    opacity: 1;
    transform: scale(1);
}

.client-references .project-card:hover::after {
    left: 100%;
}

/* Mobile Responsive for Client References */
@media (max-width: 768px) {
    .client-references .projects-grid {
        flex-direction: column;
        align-items: center;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .client-references .project-card {
        width: 100%;
        max-width: 500px;
        border-radius: 20px;
        overflow: hidden;
        background: rgba(26, 26, 26, 0.9);
        border: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        flex-direction: column;
        padding: var(--spacing-lg);
        gap: var(--spacing-md);
        text-align: center;
    }
    
    .client-references .project-card:hover {
        transform: translateX(8px) scale(1.02);
        border-color: var(--primary-color);
        box-shadow: 0 20px 40px rgba(0, 212, 255, 0.25), 0 15px 30px rgba(0, 0, 0, 0.4);
    }
}

@media (max-width: 480px) {
    .client-references .project-card {
        min-height: 300px;
        padding: var(--spacing-sm);
    }
    
    .client-references .project-image {
        height: 160px;
        width: 100%;
    }
    
    .client-references .project-content h4 {
        font-size: var(--font-size-lg);
        margin-bottom: var(--spacing-xs);
    }
    
    .client-references .project-content p {
        font-size: 12px;
        margin-bottom: var(--spacing-sm);
    }
    
    .client-references .project-tech {
        gap: 6px;
    }
    
    .client-references .project-tech span {
        background: var(--primary-color);
        color: var(--primary-bg);
        font-size: 10px;
        padding: 3px 6px;
        border-radius: var(--radius-sm);
        font-weight: 600;
        box-shadow: 0 2px 8px rgba(0, 212, 255, 0.2);
    }
    
    .client-references .preview-btn {
        padding: 8px 12px;
        font-size: 11px;
        width: 100%;
        justify-content: center;
    }
    
    .client-references .demo-badge,
    .client-references .quote-badge {
        padding: 3px 6px;
        font-size: 9px;
        border-radius: 10px;
    }
}

/* Client References Section - Center Images */
.client-references .project-image {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 200px;
    width: 100%;
    background: var(--gradient-secondary);
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.client-references .image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: var(--font-size-3xl);
    color: var(--text-primary);
}

.client-references .image-placeholder i {
    font-size: 48px;
    color: #ffffff;
    transition: all 0.3s ease;
}

.client-references .project-card:hover .image-placeholder i {
    transform: scale(1.1);
    color: #ffffff;
}

/* Mobile Responsive for Client References */
@media (max-width: 768px) {
    .client-references .projects-grid {
        flex-direction: column;
        align-items: center;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .client-references .project-card {
        width: 100%;
        max-width: 500px;
        border-radius: 20px;
        overflow: hidden;
        background: rgba(26, 26, 26, 0.9);
        border: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        padding: var(--spacing-lg);
        text-align: center;
    }
    
    .client-references .project-card:hover {
        transform: translateX(8px) scale(1.02);
        border-color: var(--primary-color);
        box-shadow: 0 20px 40px rgba(0, 212, 255, 0.25), 0 15px 30px rgba(0, 0, 0, 0.4);
    }
    
    .client-references .project-image {
        height: 200px;
        width: 100%;
        min-width: auto;
        margin-bottom: var(--spacing-md);
    }
    
    .client-references .project-content {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: var(--spacing-md);
        justify-content: space-between;
        min-height: 120px;
    }
    
    .client-references .project-content h4 {
        color: var(--text-primary);
        margin-bottom: var(--spacing-sm);
        font-size: var(--font-size-2xl);
        font-weight: 600;
    }
    
    .client-references .project-content p {
        color: var(--text-secondary);
        margin-bottom: var(--spacing-md);
        line-height: 1.6;
        font-size: var(--font-size-base);
    }
    
    .client-references .project-tech {
        display: flex;
        flex-wrap: wrap;
        gap: var(--spacing-sm);
        margin-bottom: var(--spacing-md);
        justify-content: center;
    }
    
    .client-references .project-tech span {
        background: var(--primary-color);
        color: var(--primary-bg);
        padding: var(--spacing-sm) var(--spacing-md);
        border-radius: var(--radius-md);
        font-size: var(--font-size-sm);
        font-weight: 600;
        box-shadow: 0 2px 8px rgba(0, 212, 255, 0.2);
    }
    
    .client-references .project-actions {
        margin-top: auto;
        display: flex;
        justify-content: center;
    }
    
    .client-references .preview-btn {
        padding: var(--spacing-md) var(--spacing-lg);
        font-size: var(--font-size-base);
        width: auto;
        justify-content: center;
    }
}

/* Tablet Responsive for Client References */
@media (min-width: 769px) and (max-width: 1024px) {
    .client-references .project-card {
        flex: 0 0 calc(50% - var(--spacing-xl));
        min-height: 350px;
    }
}

/* Client References Section - Center Images */
.client-references .project-image {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 200px;
    width: 100%;
    background: var(--gradient-secondary);
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.client-references .image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: var(--font-size-3xl);
    color: var(--text-primary);
}

.client-references .image-placeholder i {
    font-size: 48px;
    color: #ffffff;
    transition: all 0.3s ease;
}

.client-references .project-card:hover .image-placeholder i {
    transform: scale(1.1);
    color: #ffffff;
}

/* Client References Technology Tags - Same as Main Projects */
.client-references .project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.client-references .project-tech span {
    background: var(--primary-color);
    color: var(--primary-bg);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--radius-md);
    font-size: var(--font-size-sm);
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 212, 255, 0.2);
}

/* Client References Project Actions */
.client-references .project-actions {
    margin-top: auto;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: var(--spacing-sm);
}

/* Mobile Responsive for Client References */
@media (max-width: 768px) {
    .client-references .projects-grid {
        flex-direction: column;
        align-items: center;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .client-references .project-card {
        width: 100%;
        max-width: 500px;
        border-radius: 20px;
        overflow: hidden;
        background: rgba(26, 26, 26, 0.9);
        border: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        padding: var(--spacing-lg);
        text-align: center;
    }
    
    .client-references .project-card:hover {
        transform: translateX(8px) scale(1.02);
        border-color: var(--primary-color);
        box-shadow: 0 20px 40px rgba(0, 212, 255, 0.25), 0 15px 30px rgba(0, 0, 0, 0.4);
    }
    
    .client-references .project-image {
        height: 200px;
        width: 100%;
        min-width: auto;
        margin-bottom: var(--spacing-md);
    }
    
    .client-references .project-content {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: var(--spacing-md);
        justify-content: space-between;
        min-height: 120px;
    }
    
    .client-references .project-content h4 {
        color: var(--text-primary);
        margin-bottom: var(--spacing-sm);
        font-size: var(--font-size-2xl);
        font-weight: 600;
    }
    
    .client-references .project-content p {
        color: var(--text-secondary);
        margin-bottom: var(--spacing-md);
        line-height: 1.6;
        font-size: var(--font-size-base);
    }
    
    .client-references .project-tech {
        display: flex;
        flex-wrap: wrap;
        gap: var(--spacing-sm);
        margin-bottom: var(--spacing-md);
        justify-content: center;
    }
    
    .client-references .project-tech span {
        background: var(--primary-color);
        color: var(--primary-bg);
        padding: var(--spacing-sm) var(--spacing-md);
        border-radius: var(--radius-md);
        font-size: var(--font-size-sm);
        font-weight: 600;
        box-shadow: 0 2px 8px rgba(0, 212, 255, 0.2);
    }
    
    .client-references .project-actions {
        margin-top: auto;
        display: flex;
        justify-content: center;
    }
    
    .client-references .preview-btn {
        padding: var(--spacing-md) var(--spacing-lg);
        font-size: var(--font-size-base);
        width: auto;
        justify-content: center;
    }
}

.new-project-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    color: white;
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.4);
    z-index: 2;
    animation: newProjectPulse 2s infinite;
}

@keyframes newProjectPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 2px 8px rgba(139, 92, 246, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 4px 12px rgba(139, 92, 246, 0.5);
    }
}

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

/* Client References Technology Tags - Match Visual Design */
.client-references .project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
    justify-content: flex-start;
}

.client-references .project-tech span {
    background: #00d4ff;
    color: #ffffff;
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--radius-md);
    font-size: var(--font-size-sm);
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 212, 255, 0.3);
    border: none;
}

/* Client References Project Actions - Dark Button Style */
.client-references .project-actions {
    margin-top: auto;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: var(--spacing-sm);
}

.client-references .preview-btn {
    background: #1a1a1a;
    color: #ffffff;
    border: 1px solid #333;
    padding: var(--spacing-md) var(--spacing-lg);
    border-radius: var(--radius-md);
    font-size: var(--font-size-base);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.client-references .preview-btn:hover {
    background: #333;
    border-color: #00d4ff;
    box-shadow: 0 6px 20px rgba(0, 212, 255, 0.3);
    transform: translateY(-2px);
}

/* Comprehensive Client References Section */
.client-references .projects-grid {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-xl);
    max-width: 1400px;
    margin: 0 auto;
    justify-content: space-between;
}

.client-references .project-card {
    background: rgba(26, 26, 26, 0.9);
    padding: var(--spacing-md);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    transform-style: preserve-3d;
    perspective: 1000px;
    flex: 0 0 calc(33.333% - var(--spacing-xl));
    min-width: 300px;
    min-height: 300px;
    will-change: transform, box-shadow, border-color;
}

.client-references .project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(139, 92, 246, 0.1));
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: -1;
    transform: scale(0.8);
}

.client-references .project-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1;
}

.client-references .project-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.25), 0 15px 30px rgba(0, 0, 0, 0.4);
}

.client-references .project-card:hover::before {
    opacity: 1;
    transform: scale(1);
}

.client-references .project-card:hover::after {
    left: 100%;
}

.client-references .project-image {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
    width: 100%;
    background: var(--gradient-secondary);
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    margin-bottom: var(--spacing-sm);
}

.client-references .image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: var(--font-size-3xl);
    color: var(--text-primary);
}

.client-references .image-placeholder i {
    font-size: 48px;
    color: #ffffff;
    transition: all 0.3s ease;
}

.client-references .project-card:hover .image-placeholder i {
    transform: scale(1.1);
    color: #ffffff;
}

.client-references .project-content {
    position: relative;
    z-index: 2;
}

.client-references .project-content h4 {
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
    font-size: var(--font-size-2xl);
    font-weight: 600;
}

.client-references .project-content p {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
    line-height: 1.6;
    font-size: var(--font-size-base);
}

/* Technology Tags - Light Blue as shown in image */
.client-references .project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
    justify-content: flex-start;
}

.client-references .project-tech span {
    background: #00d4ff;
    color: #ffffff;
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--radius-md);
    font-size: var(--font-size-sm);
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 212, 255, 0.3);
    border: none;
}

/* Project Actions - Dark Button as shown in image */
.client-references .project-actions {
    margin-top: auto;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: var(--spacing-sm);
}

.client-references .preview-btn {
    background: #1a1a1a;
    color: #ffffff;
    border: 1px solid #333;
    padding: var(--spacing-md) var(--spacing-lg);
    border-radius: var(--radius-md);
    font-size: var(--font-size-base);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.client-references .preview-btn:hover {
    background: #333;
    border-color: #00d4ff;
    box-shadow: 0 6px 20px rgba(0, 212, 255, 0.3);
    transform: translateY(-2px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .client-references .projects-grid {
        flex-direction: column;
        align-items: center;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .client-references .project-card {
        width: 100%;
        max-width: 500px;
        border-radius: 20px;
        padding: var(--spacing-lg);
        text-align: center;
    }
    
    .client-references .project-card:hover {
        transform: translateX(8px) scale(1.02);
    }
    
    .client-references .project-tech {
        justify-content: center;
    }
    
    .client-references .project-actions {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .client-references .project-card {
        min-height: 300px;
        padding: var(--spacing-sm);
    }
    
    .client-references .project-image {
        height: 160px;
    }
    
    .client-references .project-content h4 {
        font-size: var(--font-size-lg);
    }
    
    .client-references .project-content p {
        font-size: 12px;
    }
    
    .client-references .project-tech span {
        font-size: 10px;
        padding: 3px 6px;
    }
    
    .client-references .preview-btn {
        padding: 8px 12px;
        font-size: 11px;
        width: 100%;
        justify-content: center;
    }
}

/* Tablet Responsive */
@media (min-width: 769px) and (max-width: 1024px) {
    .client-references .project-card {
        flex: 0 0 calc(50% - var(--spacing-xl));
        min-height: 350px;
    }
}

