        :root {
            --primary-color: #3B82F6;
            --secondary-color: #1E293B;
            --accent-color: #F59E0B;
            --success-color: #10B981;
            --danger-color: #EF4444;
            --dark-blue: #0F172A;
            --light-gray: #F8FAFC;
            --text-dark: #1E293B;
            --text-light: #64748B;
            --white: #FFFFFF;
            --gradient-primary: linear-gradient(135deg, #3B82F6 0%, #8B5CF6 100%);
            --gradient-secondary: linear-gradient(135deg, #F59E0B 0%, #EF4444 100%);
            --gradient-mesh: conic-gradient(from 0deg at 50% 50%, #3B82F6, #8B5CF6, #06B6D4, #10B981, #F59E0B, #EF4444, #3B82F6);
            --shadow: 0 10px 25px rgba(59, 130, 246, 0.15);
            --shadow-hover: 0 20px 40px rgba(59, 130, 246, 0.25);
            --shadow-dock: 0 8px 32px rgba(0, 0, 0, 0.12);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html,
        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            overflow-x: hidden;
        }

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

        .language-switcher {
            position: fixed;
            top: 24px;
            right: 24px;
            z-index: 1004;
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 8px;
            border-radius: 999px;
            background: rgba(15, 23, 42, 0.72);
            border: 1px solid rgba(255, 255, 255, 0.16);
            backdrop-filter: blur(18px);
            box-shadow: var(--shadow-dock);
            width: fit-content;
            max-width: calc(100vw - 24px);
        }

        .language-btn {
            border: none;
            background: transparent;
            color: var(--white);
            padding: 8px 14px;
            border-radius: 999px;
            font-size: 0.82rem;
            font-weight: 700;
            letter-spacing: 0.04em;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .language-btn:hover {
            background: rgba(255, 255, 255, 0.12);
        }

        .language-btn.active {
            background: var(--white);
            color: var(--secondary-color);
        }

        html[dir="rtl"] body {
            direction: rtl;
        }

        html[dir="rtl"] .language-switcher {
            right: auto;
            left: 24px;
        }

        html[dir="rtl"] .section-header,
        html[dir="rtl"] .hero-content-wrapper,
        html[dir="rtl"] .about-text,
        html[dir="rtl"] .contact-info,
        html[dir="rtl"] .contact-form,
        html[dir="rtl"] .footer-section {
            text-align: right;
        }

        html[dir="rtl"] .hero-badge,
        html[dir="rtl"] .hero-actions {
            flex-direction: row-reverse;
        }

        html[dir="rtl"] .hero-left {
            align-items: flex-end;
        }

        html[dir="rtl"] .hero-stats {
            direction: rtl;
        }

        html[dir="rtl"] .whatsapp-float {
            right: auto;
            left: 30px;
        }

        html[dir="rtl"] .mobile-menu-item:hover {
            transform: translateX(-8px);
        }

        html[dir="rtl"] input[type="email"],
        html[dir="rtl"] input[type="tel"] {
            direction: ltr;
            text-align: left;
        }

        /* Loading Screen */
        .loading-screen {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--dark-blue);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            transition: opacity 0.5s ease, visibility 0.5s ease;
        }

        .loading-screen.fade-out {
            opacity: 0;
            visibility: hidden;
        }

        .loading-content {
            text-align: center;
            color: var(--white);
        }

        .loading-logo {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            margin-bottom: 30px;
            font-size: 2rem;
            font-weight: 700;
        }

        .loading-logo i {
            font-size: 2.5rem;
            color: var(--accent-color);
            animation: pulse-logo 2s ease-in-out infinite;
        }

        .loading-spinner {
            position: relative;
            width: 80px;
            height: 80px;
            margin: 0 auto 20px;
        }

        .spinner-ring {
            position: absolute;
            border: 3px solid transparent;
            border-top: 3px solid var(--primary-color);
            border-radius: 50%;
            animation: spin 1.2s linear infinite;
        }

        .spinner-ring:nth-child(1) {
            width: 80px;
            height: 80px;
            animation-delay: 0s;
        }

        .spinner-ring:nth-child(2) {
            width: 60px;
            height: 60px;
            top: 10px;
            left: 10px;
            border-top-color: var(--accent-color);
            animation-delay: -0.4s;
        }

        .spinner-ring:nth-child(3) {
            width: 40px;
            height: 40px;
            top: 20px;
            left: 20px;
            border-top-color: var(--success-color);
            animation-delay: -0.8s;
        }

        .loading-text {
            font-size: 1.1rem;
            color: var(--text-light);
            animation: fade-in-out 2s ease-in-out infinite;
        }

        @keyframes pulse-logo {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.1); }
        }

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

        @keyframes fade-in-out {
            0%, 100% { opacity: 0.6; }
            50% { opacity: 1; }
        }

        /* Scroll Progress Indicator */
        .scroll-progress {
            position: fixed;
            top: 0;
            left: 0;
            width: 0%;
            height: 4px;
            background: var(--gradient-primary);
            z-index: 1002;
            transition: width 0.1s ease;
        }

        /* WhatsApp Floating Button */
        .whatsapp-float {
            position: fixed;
            bottom: 100px;
            right: 30px;
            z-index: 1000;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .whatsapp-button {
            width: 60px;
            height: 60px;
            background: #25D366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
            transition: all 0.3s ease;
            animation: pulse-whatsapp 2s ease-in-out infinite;
        }

        .whatsapp-button:hover {
            transform: scale(1.1);
            box-shadow: 0 12px 35px rgba(37, 211, 102, 0.4);
        }

        .whatsapp-button i {
            font-size: 1.8rem;
            color: white;
        }

        .whatsapp-tooltip {
            background: var(--dark-blue);
            color: white;
            padding: 8px 16px;
            border-radius: 8px;
            font-size: 0.9rem;
            white-space: nowrap;
            opacity: 0;
            transform: translateX(10px);
            transition: all 0.3s ease;
            pointer-events: none;
        }

        .whatsapp-float:hover .whatsapp-tooltip {
            opacity: 1;
            transform: translateX(0);
        }

        @keyframes pulse-whatsapp {
            0%, 100% { box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3); }
            50% { box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6); }
        }

        /* Touch Gesture Support */
        .touch-friendly {
            touch-action: manipulation;
            user-select: none;
            -webkit-touch-callout: none;
        }

        .swipeable {
            touch-action: pan-x;
            position: relative;
            overflow: hidden;
        }

        .pull-to-refresh {
            position: relative;
        }

        .pull-indicator {
            position: absolute;
            top: -60px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--primary-color);
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .pull-indicator.active {
            top: 10px;
        }

        .pull-indicator i {
            animation: rotate 1s linear infinite;
        }

        /* Modern Header & Dock Navigation */
        .modern-header {
            position: relative;
            z-index: 1000;
        }

        .dock-nav {
            position: fixed;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%);
            z-index: 1001;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .dock-container {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 24px;
            padding: 12px;
            display: flex;
            align-items: center;
            gap: 8px;
            box-shadow: var(--shadow-dock);
        }

        .dock-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 12px;
            border-radius: 16px;
            text-decoration: none;
            color: var(--white);
            position: relative;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            min-width: 60px;
        }

        .dock-item:hover {
            transform: translateY(-8px) scale(1.1);
            background: rgba(255, 255, 255, 0.15);
        }

        .dock-item.active {
            background: var(--gradient-primary);
            transform: translateY(-4px);
        }

        .dock-item.logo-dock {
            background: var(--gradient-primary);
            margin-right: 4px;
        }

        .dock-icon {
            font-size: 1.2rem;
            margin-bottom: 4px;
            transition: all 0.3s ease;
        }

        .dock-label {
            font-size: 0.75rem;
            font-weight: 500;
            opacity: 0;
            transform: translateY(10px);
            transition: all 0.3s ease;
            position: absolute;
            top: -30px;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(30, 41, 59, 0.9);
            padding: 4px 8px;
            border-radius: 6px;
            white-space: nowrap;
            pointer-events: none;
        }

        .dock-item:hover .dock-label {
            opacity: 1;
            transform: translateX(-50%) translateY(-5px);
        }

        .dock-separator {
            width: 1px;
            height: 32px;
            background: rgba(255, 255, 255, 0.2);
            margin: 0 8px;
        }

        /* Mobile Header */
        .mobile-header {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            padding: 1rem 2rem;
            justify-content: space-between;
            align-items: center;
            z-index: 1002;
            border-bottom: 1px solid rgba(59, 130, 246, 0.1);
        }

        .mobile-brand {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary-color);
            min-width: 0;
        }

        .mobile-brand span {
            min-width: 0;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

        .mobile-menu-btn {
            background: none;
            border: none;
            cursor: pointer;
            padding: 8px;
            border-radius: 8px;
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            gap: 4px;
            flex-shrink: 0;
        }

        .mobile-menu-btn span {
            width: 24px;
            height: 2px;
            background: var(--primary-color);
            border-radius: 2px;
            transition: all 0.3s ease;
        }

        .mobile-menu-btn.active span:nth-child(1) {
            transform: rotate(45deg) translate(6px, 6px);
        }

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

        .mobile-menu-btn.active span:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -6px);
        }

        /* Mobile Slide Menu */
        .mobile-slide-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: 320px;
            height: 100vh;
            background: var(--gradient-primary);
            z-index: 1003;
            transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .mobile-slide-menu.active {
            right: 0;
        }

        .mobile-menu-content {
            height: 100%;
            display: flex;
            flex-direction: column;
            padding: 2rem;
            color: var(--white);
        }

        .mobile-menu-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 3rem;
        }

        .mobile-menu-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1.5rem;
            font-weight: 700;
        }

        .mobile-menu-close {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: none;
            background: rgba(255, 255, 255, 0.1);
            color: var(--white);
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .mobile-menu-close:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: rotate(90deg);
        }

        .mobile-menu-nav {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .mobile-menu-item {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 1rem;
            color: var(--white);
            text-decoration: none;
            border-radius: 12px;
            background: rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
            font-size: 1.1rem;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .mobile-menu-item:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateX(8px);
        }

        .mobile-menu-item i:first-child {
            width: 24px;
            text-align: center;
        }

        .mobile-item-arrow {
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .mobile-item-arrow::after {
            content: '→';
            font-size: 0.8rem;
        }

        .mobile-menu-item:hover .mobile-item-arrow {
            background: rgba(255, 255, 255, 0.2);
            transform: translateX(4px);
        }

        .mobile-menu-footer {
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
            color: rgba(255, 255, 255, 0.8);
        }

        .mobile-menu-footer p {
            margin-bottom: 0.5rem;
            font-size: 0.9rem;
        }

        /* New Hero Section */
        .hero-new {
            min-height: 100vh;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            padding: 0;
        }

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

        .mesh-gradient {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--gradient-mesh);
            opacity: 0.1;
            animation: mesh-rotate 20s linear infinite;
        }

        .geometric-shapes {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        .shape {
            position: absolute;
            border-radius: 50%;
            background: var(--gradient-primary);
            opacity: 0.1;
            animation: float-shape 10s ease-in-out infinite;
        }

        .shape-1 {
            width: 300px;
            height: 300px;
            top: 10%;
            left: 10%;
            animation-delay: 0s;
        }

        .shape-2 {
            width: 200px;
            height: 200px;
            top: 60%;
            right: 15%;
            animation-delay: 2s;
            background: var(--gradient-secondary);
        }

        .shape-3 {
            width: 150px;
            height: 150px;
            top: 30%;
            right: 5%;
            animation-delay: 4s;
        }

        .shape-4 {
            width: 100px;
            height: 100px;
            bottom: 20%;
            left: 20%;
            animation-delay: 6s;
            background: var(--gradient-secondary);
        }

        .shape-5 {
            width: 250px;
            height: 250px;
            bottom: 10%;
            right: 30%;
            animation-delay: 8s;
        }

        .particles-container {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }

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

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

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(59, 130, 246, 0.1);
            color: var(--primary-color);
            padding: 8px 16px;
            border-radius: 25px;
            font-size: 0.9rem;
            font-weight: 500;
            width: fit-content;
            border: 1px solid rgba(59, 130, 246, 0.2);
        }

        .hero-title {
            font-size: 4rem;
            font-weight: 800;
            line-height: 1.1;
            color: var(--text-dark);
            margin: 0;
        }

        .title-line {
            display: block;
        }

        .title-line.highlight {
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-description {
            font-size: 1.25rem;
            line-height: 1.6;
            color: var(--text-light);
            margin: 0;
        }

        .hero-stats {
            display: flex;
            gap: 2rem;
        }

        .stat {
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 1rem;
            background: rgba(255, 255, 255, 0.8);
            border-radius: 16px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(59, 130, 246, 0.1);
            min-width: 80px;
        }

        .stat-number {
            font-size: 2rem;
            font-weight: 800;
            color: var(--primary-color);
            line-height: 1;
        }

        .stat-label {
            font-size: 0.9rem;
            color: var(--text-light);
            font-weight: 500;
        }

        .hero-actions {
            display: flex;
            gap: 1rem;
            align-items: center;
        }

        .cta-primary {
            background: var(--gradient-primary);
            color: var(--white);
            border: none;
            padding: 16px 32px;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
            box-shadow: var(--shadow);
        }

        .cta-primary:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-hover);
        }

        .cta-secondary {
            background: rgba(255, 255, 255, 0.8);
            color: var(--text-dark);
            border: 2px solid rgba(59, 130, 246, 0.2);
            padding: 14px 28px;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
            backdrop-filter: blur(10px);
        }

        .cta-secondary:hover {
            background: var(--primary-color);
            color: var(--white);
            border-color: var(--primary-color);
            transform: translateY(-3px);
        }

        .hero-right {
            position: relative;
            height: 600px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero-visual {
            position: relative;
            width: 100%;
            height: 100%;
        }

        .central-device {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 220px;
            height: 340px;
            aspect-ratio: 11 / 17;
            transform: translate(-50%, -50%);
            padding: 14px;
            border-radius: 32px;
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.38) 0%, rgba(255, 255, 255, 0.14) 100%);
            border: 1px solid rgba(255, 255, 255, 0.55);
            box-shadow: 0 24px 60px rgba(15, 23, 42, 0.2);
            backdrop-filter: blur(24px);
            z-index: 8;
            animation: device-glow 4s ease-in-out infinite;
        }

        .floating-card {
            position: absolute;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(25px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 16px;
            padding: 16px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            box-shadow: var(--shadow);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            will-change: transform;
            z-index: 5;
        }

        .floating-card:hover {
            transform: translateY(-12px) scale(1.08);
            box-shadow: var(--shadow-hover);
            background: rgba(255, 255, 255, 1);
            border: 1px solid rgba(59, 130, 246, 0.3);
            z-index: 15;
        }

        .floating-card:hover i {
            transform: scale(1.2);
            color: var(--accent-color);
        }

        .floating-card i {
            font-size: 2rem;
            color: var(--primary-color);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .floating-card span {
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--text-dark);
        }

        .card-1 {
            bottom: -40px;
            left: 20%;
        }

        .card-2 {
            bottom: -40px;
            left: 35%;
        }

        .card-3 {
            bottom: -40px;
            left: 50%;
            transform: translateX(-50%);
        }

        .card-4 {
            bottom: -40px;
            right: 35%;
        }

        .card-5 {
            bottom: -40px;
            right: 20%;
        }

        .card-6 {
            bottom: -70px;
            left: 40%;
        }

        .card-7 {
            bottom: -70px;
            right: 40%;
        }

        .central-workstation {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -60%);
            width: 450px;
            height: 320px;
            z-index: 20;
        }

        .developer-setup {
            position: relative;
            width: 100%;
            height: 100%;
        }

        /* Developer Figure */
        .developer-figure {
            position: absolute;
            bottom: 60px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 25;
        }

        .dev-head {
            width: 20px;
            height: 20px;
            background: #8B5A3C;
            border-radius: 50%;
            margin: 0 auto 2px;
        }

        .dev-body {
            width: 24px;
            height: 35px;
            background: var(--primary-color);
            border-radius: 12px 12px 6px 6px;
            margin: 0 auto;
        }

        .dev-arms {
            position: absolute;
            top: 20px;
            width: 100%;
        }

        .arm-left, .arm-right {
            width: 18px;
            height: 3px;
            background: #8B5A3C;
            border-radius: 2px;
            position: absolute;
            top: 0;
        }

        .arm-left {
            left: -8px;
            transform: rotate(-25deg);
        }

        .arm-right {
            right: -8px;
            transform: rotate(25deg);
        }

        /* Chair */
        .developer-chair {
            position: absolute;
            bottom: 45px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 20;
        }

        .chair-back {
            width: 30px;
            height: 40px;
            background: var(--text-dark);
            border-radius: 15px 15px 5px 5px;
            margin: 0 auto;
        }

        .chair-seat {
            width: 35px;
            height: 8px;
            background: var(--text-dark);
            border-radius: 4px;
            margin: -5px auto 0;
        }

        /* Monitors Setup */
        .monitor-setup {
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            align-items: flex-end;
        }

        .monitor {
            position: relative;
        }

        .monitor-center {
            transform: translateY(-15px);
        }

        .monitor-left {
            transform: rotate(-8deg);
        }

        .monitor-right {
            transform: rotate(8deg);
        }

        .monitor-frame {
            width: 80px;
            height: 50px;
            background: var(--text-dark);
            border-radius: 4px;
            padding: 3px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        }

        .monitor-screen {
            width: 100%;
            height: 100%;
            background: #0a0c10;
            border-radius: 2px;
            overflow: hidden;
            position: relative;
        }

        .monitor-stand {
            width: 12px;
            height: 15px;
            background: var(--text-dark);
            margin: -2px auto 0;
            border-radius: 0 0 3px 3px;
        }

        /* Code Editor (Left Monitor) */
        .code-editor {
            height: 100%;
            background: #1a1a1a;
        }

        .editor-header {
            height: 8px;
            background: #2d2d2d;
            padding: 1px 2px;
        }

        .editor-tabs {
            display: flex;
            gap: 1px;
        }

        .tab {
            font-size: 4px;
            padding: 1px 3px;
            background: #404040;
            color: #ccc;
            border-radius: 1px 1px 0 0;
        }

        .tab.active {
            background: #1a1a1a;
            color: #fff;
        }

        .code-editor .code-lines {
            padding: 2px;
            display: flex;
            flex-direction: column;
            gap: 1px;
        }

        .code-editor .code-line {
            height: 2px;
            background: var(--accent-color);
            border-radius: 1px;
            animation: code-typing 3s ease-in-out infinite;
        }

        .code-editor .code-line:nth-child(1) { width: 90%; animation-delay: 0s; }
        .code-editor .code-line:nth-child(2) { width: 60%; animation-delay: 0.5s; }
        .code-editor .code-line:nth-child(3) { width: 80%; animation-delay: 1s; }

        /* Browser Window (Center Monitor) */
        .browser-window {
            height: 100%;
        }

        .browser-header {
            height: 8px;
            background: #f0f0f0;
            display: flex;
            align-items: center;
            padding: 0 2px;
            gap: 2px;
        }

        .browser-controls {
            display: flex;
            gap: 1px;
        }

        .control {
            width: 2px;
            height: 2px;
            border-radius: 50%;
        }

        .control.red { background: #ff5f57; }
        .control.yellow { background: #ffbd2e; }
        .control.green { background: #28ca42; }

        .address-bar {
            flex: 1;
            height: 4px;
            background: #fff;
            border-radius: 1px;
            margin-left: 2px;
        }

        .website-preview {
            padding: 2px;
            background: #fff;
            height: calc(100% - 8px);
        }

        .preview-header {
            height: 6px;
            background: var(--gradient-primary);
            border-radius: 1px;
            margin-bottom: 2px;
        }

        .preview-content {
            display: flex;
            flex-direction: column;
            gap: 1px;
        }

        .content-block {
            height: 2px;
            background: #e0e0e0;
            border-radius: 1px;
        }

        .content-block.short {
            width: 70%;
        }

        /* Terminal (Right Monitor) */
        .terminal {
            height: 100%;
            background: #0c1419;
            color: #39ff14;
        }

        .terminal-header {
            height: 8px;
            background: #1c2329;
            display: flex;
            align-items: center;
            padding: 0 2px;
        }

        .terminal-title {
            font-size: 4px;
            color: #ccc;
        }

        .terminal-content {
            padding: 2px;
            font-family: 'Courier New', monospace;
        }

        .terminal-line {
            font-size: 3px;
            line-height: 4px;
            color: #39ff14;
            display: flex;
            gap: 2px;
        }

        .prompt {
            color: #00d4aa;
        }

        .command {
            color: #fff;
        }

        .output {
            color: #888;
        }

        .terminal-cursor {
            width: 3px;
            height: 4px;
            background: #39ff14;
            margin-top: 1px;
            animation: cursor-blink 1s ease-in-out infinite;
        }

        /* Desk */
        .desk-surface {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 25px;
            background: linear-gradient(180deg, #8B4513 0%, #654321 100%);
            border-radius: 0 0 8px 8px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        }

        /* Animations */
        @keyframes cursor-blink {
            0%, 50% { opacity: 1; }
            51%, 100% { opacity: 0; }
        }

        @keyframes code-typing {
            0% { width: 0; opacity: 0.5; }
            50% { width: var(--line-width, 80%); opacity: 1; }
            100% { width: 0; opacity: 0.5; }
        }

        .device-screen {
            width: 100%;
            height: 100%;
            background: var(--dark-blue);
            border-radius: 16px;
            padding: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .central-device .screen-content {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0;
            background: transparent;
            border-radius: 0;
            position: static;
        }

        .central-device .code-lines {
            width: 100%;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .central-device .code-line {
            height: 4px;
            background: var(--accent-color);
            border-radius: 2px;
            animation: code-typing 2s ease-in-out infinite;
        }

        .central-device .code-line:nth-child(1) {
            width: 80%;
            animation-delay: 0s;
        }

        .central-device .code-line:nth-child(2) {
            width: 60%;
            animation-delay: 0.3s;
        }

        .central-device .code-line:nth-child(3) {
            width: 40%;
            animation-delay: 0.6s;
        }

        .central-device .code-line:nth-child(4) {
            width: 70%;
            animation-delay: 0.9s;
        }

        .central-device .code-line:nth-child(5) {
            width: 50%;
            animation-delay: 1.2s;
        }

        .hero-scroll-indicator {
            position: absolute;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            color: var(--text-light);
            font-size: 0.9rem;
            z-index: 3;
        }

        .scroll-line {
            width: 2px;
            height: 30px;
            background: var(--gradient-primary);
            border-radius: 2px;
            animation: scroll-line 2s ease-in-out infinite;
        }

        .hero-scroll-indicator i {
            animation: bounce-arrow 2s ease-in-out infinite;
        }

        /* Hero Technology Cards */
        .hero-tech-cards {
            position: absolute;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }

        .tech-card-floating {
            position: absolute;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(25px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 12px;
            padding: 12px 16px;
            display: flex;
            align-items: center;
            gap: 8px;
            box-shadow: 0 8px 32px rgba(59, 130, 246, 0.15);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            pointer-events: auto;
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--text-dark);
            z-index: 10;
            animation: float 3s ease-in-out infinite;
        }

        .tech-card-floating:hover {
            transform: translateY(-8px) scale(1.05);
            box-shadow: 0 15px 40px rgba(59, 130, 246, 0.25);
            background: rgba(255, 255, 255, 1);
            border: 1px solid rgba(59, 130, 246, 0.3);
        }

        .tech-card-floating:hover .tech-card-icon i {
            transform: scale(1.2);
            color: var(--accent-color);
        }

        .tech-card-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            color: var(--primary-color);
            transition: all 0.3s ease;
        }

        .tech-card-name {
            white-space: nowrap;
            font-size: 0.8rem;
            font-weight: 600;
        }

        /* Technology Card Positions */
        .hero-tech-cards .tech-card-floating:nth-child(1) {
            top: 15%;
            left: 10%;
            animation-delay: 0s;
        }

        .hero-tech-cards .tech-card-floating:nth-child(2) {
            top: 25%;
            right: 15%;
            animation-delay: 0.5s;
        }

        .hero-tech-cards .tech-card-floating:nth-child(3) {
            top: 45%;
            left: 5%;
            animation-delay: 1s;
        }

        .hero-tech-cards .tech-card-floating:nth-child(4) {
            top: 35%;
            right: 5%;
            animation-delay: 1.5s;
        }

        .hero-tech-cards .tech-card-floating:nth-child(5) {
            bottom: 35%;
            left: 15%;
            animation-delay: 2s;
        }

        .hero-tech-cards .tech-card-floating:nth-child(6) {
            bottom: 25%;
            right: 20%;
            animation-delay: 2.5s;
        }

        .hero-tech-cards .tech-card-floating:nth-child(7) {
            bottom: 15%;
            left: 25%;
            animation-delay: 3s;
        }

        .hero-tech-cards .tech-card-floating:nth-child(8) {
            bottom: 45%;
            right: 10%;
            animation-delay: 3.5s;
        }

        /* Float Animation */
        @keyframes float {
            0%, 100% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-10px);
            }
        }

        /* About Section */
        .about {
            padding: 120px 0;
            background: linear-gradient(135deg, #F8FAFC 0%, #E2E8F0 100%);
            position: relative;
        }

        .about::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="about-dots" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(59,130,246,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23about-dots)"/></svg>');
            opacity: 0.5;
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .about-text {
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(20px);
            border-radius: 24px;
            padding: 40px;
            border: 1px solid rgba(255, 255, 255, 0.3);
            box-shadow: var(--shadow);
        }

        .about-text h2 {
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
        }

        .about-text p {
            font-size: 1.15rem;
            margin-bottom: 1.5rem;
            color: var(--text-light);
            line-height: 1.7;
        }

        .stats {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin-top: 3rem;
        }

        .stat-item {
            text-align: center;
            padding: 30px 20px;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(20px);
            border-radius: 20px;
            border: 1px solid rgba(59, 130, 246, 0.1);
            box-shadow: var(--shadow);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .stat-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: var(--gradient-primary);
            transition: left 0.3s ease;
            z-index: -1;
        }

        .stat-item:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-hover);
            color: var(--white);
        }

        .stat-item:hover::before {
            left: 0;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--primary-color);
            display: block;
            margin-bottom: 8px;
            transition: color 0.3s ease;
        }

        .stat-item:hover .stat-number {
            color: var(--white);
        }

        .about-visual {
            position: relative;
        }

        .chad-map {
            width: 100%;
            height: 450px;
            background: var(--gradient-primary);
            border-radius: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 1.2rem;
            position: relative;
            overflow: hidden;
            box-shadow: var(--shadow-hover);
        }

        .chad-map::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, rgba(255,255,255,0.1) 25%, transparent 25%, transparent 75%, rgba(255,255,255,0.1) 75%), linear-gradient(45deg, rgba(255,255,255,0.1) 25%, transparent 25%, transparent 75%, rgba(255,255,255,0.1) 75%);
            background-size: 30px 30px;
            background-position: 0 0, 15px 15px;
            opacity: 0.3;
            animation: map-pattern 10s linear infinite;
        }

        @keyframes map-pattern {
            0% { background-position: 0 0, 15px 15px; }
            100% { background-position: 30px 30px, 45px 45px; }
        }

        .location-pin {
            position: absolute;
            top: 45%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 2rem;
            color: var(--accent-color);
            animation: bounce 2s infinite;
        }

        /* Section Header Global Styles */
        .section-header {
            text-align: center;
            margin-bottom: 80px;
            position: relative;
        }

        .section-header h2 {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 800;
        }

        .section-header p {
            font-size: 1.2rem;
            color: var(--text-light);
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.6;
        }

        /* Portfolio Showcase Section */
        .portfolio-showcase {
            padding: 120px 0;
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #f1f5f9 100%);
            position: relative;
            overflow: hidden;
        }

        .portfolio-showcase::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60 60"><defs><pattern id="portfolio-hex" width="60" height="60" patternUnits="userSpaceOnUse"><polygon points="30,5 50,20 50,40 30,55 10,40 10,20" fill="none" stroke="rgba(59,130,246,0.03)" stroke-width="1"/></pattern></defs><rect width="60" height="60" fill="url(%23portfolio-hex)"/></svg>');
        }

        .portfolio-layout {
            display: flex;
            flex-direction: column;
            gap: 80px;
            position: relative;
            z-index: 2;
        }

        /* Featured Project */
        .featured-project {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(20px);
            border-radius: 32px;
            padding: 50px;
            border: 1px solid rgba(255, 255, 255, 0.3);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
            position: relative;
            overflow: hidden;
        }

        .featured-project::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
            border-radius: 50%;
        }

        .project-preview {
            position: relative;
        }

        .preview-screen {
            background: #1f2937;
            border-radius: 16px;
            padding: 20px;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
            position: relative;
            overflow: hidden;
        }

        .screen-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .screen-controls {
            display: flex;
            gap: 8px;
        }

        .control {
            width: 12px;
            height: 12px;
            border-radius: 50%;
        }

        .control.red { background: #ef4444; }
        .control.yellow { background: #f59e0b; }
        .control.green { background: #10b981; }

        .url-bar {
            background: rgba(255, 255, 255, 0.1);
            color: #9ca3af;
            font-size: 0.8rem;
            padding: 6px 12px;
            border-radius: 8px;
            font-family: 'Courier New', monospace;
        }

        .screen-content {
            height: 280px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 12px;
            padding: 20px;
            position: relative;
        }

        .app-interface {
            background: rgba(255, 255, 255, 0.95);
            border-radius: 12px;
            padding: 20px;
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .interface-header {
            display: flex;
            align-items: center;
            gap: 12px;
            padding-bottom: 15px;
            border-bottom: 2px solid #f1f5f9;
            color: var(--secondary-color);
            font-weight: 600;
        }

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

        .interface-body {
            flex: 1;
            padding: 15px 0;
        }

        .data-row {
            height: 8px;
            background: linear-gradient(90deg, #e5e7eb 0%, #d1d5db 100%);
            margin-bottom: 10px;
            border-radius: 4px;
            animation: pulse-data 2s ease-in-out infinite;
        }

        .data-row.short {
            width: 60%;
        }

        .chart-area {
            display: flex;
            align-items: end;
            gap: 8px;
            height: 80px;
            margin-top: 20px;
        }

        .chart-bar {
            flex: 1;
            background: var(--gradient-primary);
            border-radius: 4px 4px 0 0;
            animation: chart-grow 1.5s ease-out;
        }

        @keyframes pulse-data {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.6; }
        }

        @keyframes chart-grow {
            0% { height: 0 !important; }
        }

        .project-stats {
            position: absolute;
            bottom: 20px;
            right: 20px;
            display: flex;
            gap: 15px;
        }

        .stat-bubble {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 12px 16px;
            text-align: center;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.3);
        }

        .stat-value {
            display: block;
            font-weight: 700;
            color: var(--primary-color);
            font-size: 1.1rem;
        }

        .stat-label {
            font-size: 0.75rem;
            color: var(--text-light);
        }

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

        .project-category {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(59, 130, 246, 0.1);
            color: var(--primary-color);
            font-size: 0.85rem;
            font-weight: 600;
            padding: 8px 16px;
            border-radius: 20px;
            margin-bottom: 20px;
            border: 1px solid rgba(59, 130, 246, 0.2);
        }

        .project-details h3 {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--secondary-color);
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .project-details > p {
            font-size: 1.1rem;
            color: var(--text-light);
            line-height: 1.7;
            margin-bottom: 30px;
        }

        .project-features {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin: 30px 0;
        }

        .feature-highlight {
            display: flex;
            align-items: center;
            gap: 8px;
            background: rgba(34, 197, 94, 0.1);
            color: #059669;
            font-size: 0.9rem;
            font-weight: 600;
            padding: 8px 14px;
            border-radius: 15px;
            border: 1px solid rgba(34, 197, 94, 0.2);
        }

        .feature-highlight i {
            font-size: 1rem;
        }

        .tech-stack-advanced {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin: 30px 0;
            padding: 25px;
            background: rgba(248, 250, 252, 0.9);
            border-radius: 16px;
            border: 1px solid rgba(226, 232, 240, 0.8);
        }

        .tech-group {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .tech-type {
            font-weight: 600;
            color: var(--secondary-color);
            min-width: 80px;
            font-size: 0.9rem;
        }

        .tech-badges {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
        }

        .tech-badge-pro {
            background: rgba(59, 130, 246, 0.1);
            color: var(--primary-color);
            font-size: 0.8rem;
            font-weight: 600;
            padding: 6px 12px;
            border-radius: 12px;
            border: 1px solid rgba(59, 130, 246, 0.2);
            transition: all 0.3s ease;
        }

        .tech-badge-pro:hover {
            background: var(--primary-color);
            color: var(--white);
            transform: translateY(-2px);
        }

        .tech-badge-pro.react { border-color: #61dafb; background: rgba(97, 218, 251, 0.1); color: #0ea5e9; }
        .tech-badge-pro.node { border-color: #68a063; background: rgba(104, 160, 99, 0.1); color: #16a34a; }
        .tech-badge-pro.stripe { border-color: #635bff; background: rgba(99, 91, 255, 0.1); color: #635bff; }
        .tech-badge-pro.dotnet { border-color: #512bd4; background: rgba(81, 43, 212, 0.1); color: #512bd4; }

        .project-actions {
            display: flex;
            gap: 15px;
            margin-top: 30px;
        }

        .project-cta {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 12px 24px;
            border-radius: 25px;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 0.95rem;
        }

        .project-cta.primary {
            background: var(--gradient-primary);
            color: var(--white);
            box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
        }

        .project-cta.primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
        }

        .project-cta.secondary {
            background: transparent;
            color: var(--primary-color);
            border: 2px solid var(--primary-color);
        }

        .project-cta.secondary:hover {
            background: var(--primary-color);
            color: var(--white);
            transform: translateY(-2px);
        }

        /* Portfolio Grid Modern */
        .portfolio-grid-modern {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
        }

        .project-card {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(20px);
            border-radius: 20px;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.3);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            cursor: pointer;
        }

        .project-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--gradient-primary);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .project-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
        }

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

        .card-image {
            height: 160px;
            background: var(--gradient-primary);
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .image-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .project-card:hover .image-overlay {
            background: rgba(0, 0, 0, 0.4);
        }

        .overlay-icon {
            width: 80px;
            height: 80px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            transition: all 0.3s ease;
        }

        .project-card:hover .overlay-icon {
            transform: scale(1.1);
            background: rgba(255, 255, 255, 0.3);
        }

        .overlay-icon i {
            font-size: 2rem;
            color: var(--white);
        }

        .project-type {
            position: absolute;
            top: 15px;
            right: 15px;
            background: rgba(255, 255, 255, 0.9);
            color: var(--primary-color);
            font-size: 0.75rem;
            font-weight: 600;
            padding: 6px 12px;
            border-radius: 12px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.3);
        }

        .card-content {
            padding: 25px;
        }

        .card-content h4 {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--secondary-color);
            margin-bottom: 12px;
            line-height: 1.3;
        }

        .card-content > p {
            color: var(--text-light);
            line-height: 1.6;
            margin-bottom: 20px;
            font-size: 0.95rem;
        }

        .card-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            padding: 15px;
            background: rgba(248, 250, 252, 0.8);
            border-radius: 12px;
        }

        .completion-status {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 0.8rem;
            font-weight: 600;
        }

        .completion-status i {
            color: #10b981;
        }

        .project-impact {
            font-size: 0.8rem;
            color: var(--text-light);
        }

        .impact-metric {
            font-weight: 600;
        }

        .tech-stack-mini {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
        }

        .tech-pill {
            background: rgba(59, 130, 246, 0.1);
            color: var(--primary-color);
            font-size: 0.75rem;
            font-weight: 600;
            padding: 4px 10px;
            border-radius: 10px;
            border: 1px solid rgba(59, 130, 246, 0.2);
        }

        /* Portfolio Stats */
        .portfolio-stats {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(20px);
            border-radius: 24px;
            padding: 50px;
            border: 1px solid rgba(255, 255, 255, 0.3);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
            text-align: center;
        }

        .stats-header {
            margin-bottom: 40px;
        }

        .stats-header h3 {
            font-size: 2rem;
            font-weight: 700;
            color: var(--secondary-color);
            margin-bottom: 10px;
        }

        .stats-header p {
            color: var(--text-light);
            font-size: 1.1rem;
        }

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

        .metric-card {
            text-align: center;
            padding: 25px;
        }

        .metric-icon {
            width: 70px;
            height: 70px;
            background: var(--gradient-primary);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            transition: all 0.3s ease;
        }

        .metric-card:hover .metric-icon {
            transform: scale(1.1) rotate(5deg);
        }

        .metric-icon i {
            font-size: 1.8rem;
            color: var(--white);
        }

        .metric-value {
            display: block;
            font-size: 2.5rem;
            font-weight: 800;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 8px;
        }

        .metric-label {
            color: var(--text-light);
            font-weight: 600;
            font-size: 1rem;
        }

        /* Technology Mastery Section */
        .tech-mastery {
            padding: 120px 0;
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
            position: relative;
            overflow: hidden;
        }

        .tech-mastery::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="tech-pattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(59,130,246,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23tech-pattern)"/></svg>');
        }

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

        .section-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgba(59, 130, 246, 0.1);
            color: var(--primary-color);
            padding: 12px 24px;
            border-radius: 30px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 20px;
            border: 1px solid rgba(59, 130, 246, 0.2);
        }

        .tech-mastery .section-header h2 {
            font-size: 3rem;
            font-weight: 800;
            color: var(--secondary-color);
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .accent-text {
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .tech-showcase {
            display: grid;
            grid-template-columns: 1fr 400px;
            gap: 60px;
            position: relative;
            z-index: 2;
        }

        .tech-categories {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
        }

        .tech-category {
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(20px);
            border-radius: 24px;
            padding: 40px 30px;
            border: 1px solid rgba(255, 255, 255, 0.3);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .tech-category::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--gradient-primary);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .tech-category:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        .tech-category:hover::before {
            transform: scaleX(1);
        }

        .category-header {
            text-align: center;
            margin-bottom: 30px;
        }

        .category-icon {
            width: 70px;
            height: 70px;
            background: var(--gradient-primary);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            transition: all 0.3s ease;
        }

        .tech-category:hover .category-icon {
            transform: scale(1.1) rotate(5deg);
        }

        .category-icon i {
            font-size: 2rem;
            color: var(--white);
        }

        .category-header h3 {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--secondary-color);
            margin-bottom: 8px;
        }

        .category-header p {
            color: var(--text-light);
            font-size: 0.9rem;
        }

        .tech-items {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            justify-content: center;
        }

        .tech-badge {
            display: flex;
            align-items: center;
            gap: 8px;
            background: rgba(59, 130, 246, 0.1);
            border: 1px solid rgba(59, 130, 246, 0.2);
            border-radius: 25px;
            padding: 8px 16px;
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--primary-color);
            transition: all 0.3s ease;
        }

        .tech-badge:hover {
            background: var(--primary-color);
            color: var(--white);
            transform: translateY(-2px);
        }

        .tech-badge i {
            font-size: 1rem;
        }

        .tech-spotlight {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(20px);
            border-radius: 24px;
            padding: 50px 40px;
            border: 1px solid rgba(255, 255, 255, 0.3);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
            position: relative;
            overflow: hidden;
        }

        .tech-spotlight::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 120px;
            height: 120px;
            background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
            border-radius: 50%;
        }

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

        .spotlight-icon {
            width: 80px;
            height: 80px;
            background: var(--gradient-primary);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 30px;
            animation: pulse-spotlight 3s ease-in-out infinite;
        }

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

        .spotlight-icon i {
            font-size: 2.2rem;
            color: var(--white);
        }

        .spotlight-content h3 {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--secondary-color);
            margin-bottom: 15px;
        }

        .spotlight-content > p {
            color: var(--text-light);
            line-height: 1.6;
            margin-bottom: 30px;
        }

        .spotlight-features {
            display: grid;
            gap: 15px;
        }

        .feature-item {
            display: flex;
            align-items: center;
            gap: 12px;
            color: var(--secondary-color);
            font-weight: 500;
        }

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

        /* Team Section */
        .team-showcase {
            padding: 120px 0;
            background: linear-gradient(135deg, #F8FAFC 0%, #E2E8F0 100%);
            position: relative;
        }

        .team-showcase::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="team-pattern" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="2" fill="rgba(59,130,246,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23team-pattern)"/></svg>');
            opacity: 0.3;
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin-top: 60px;
            position: relative;
            z-index: 2;
        }

        .team-member {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(20px);
            border-radius: 24px;
            padding: 30px;
            border: 1px solid rgba(255, 255, 255, 0.3);
            box-shadow: var(--shadow);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            cursor: pointer;
        }

        .team-member:hover {
            transform: translateY(-12px) scale(1.02);
            box-shadow: var(--shadow-hover);
            border: 1px solid rgba(59, 130, 246, 0.3);
        }

        .team-member::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--gradient-primary);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .team-member:hover::before {
            transform: scaleX(1);
        }

        .member-avatar {
            position: relative;
            width: 80px;
            height: 80px;
            margin: 0 auto 20px;
        }

        .avatar-placeholder {
            width: 100%;
            height: 100%;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            color: white;
            font-size: 1.8rem;
            border: 3px solid rgba(255, 255, 255, 0.9);
            box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.06), var(--shadow);
        }

        .avatar-placeholder img {
            display: block;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }

        .member-status {
            position: absolute;
            bottom: 5px;
            right: 5px;
            width: 16px;
            height: 16px;
            border-radius: 50%;
            border: 3px solid white;
        }

        .member-status.online {
            background: var(--success-color);
        }

        .member-status.away {
            background: var(--accent-color);
        }

        .member-info h3 {
            font-size: 1.4rem;
            margin-bottom: 5px;
            color: var(--text-dark);
            text-align: center;
        }

        .member-info .role {
            font-size: 1rem;
            color: var(--primary-color);
            font-weight: 600;
            text-align: center;
            margin-bottom: 15px;
        }

        .member-info .bio {
            font-size: 0.95rem;
            color: var(--text-light);
            line-height: 1.6;
            margin-bottom: 20px;
            text-align: center;
        }

        .member-skills {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            justify-content: center;
            margin-bottom: 20px;
        }

        .skill-tag {
            background: rgba(59, 130, 246, 0.1);
            color: var(--primary-color);
            padding: 6px 12px;
            border-radius: 16px;
            font-size: 0.8rem;
            font-weight: 600;
            border: 1px solid rgba(59, 130, 246, 0.2);
        }

        .member-fun-fact {
            display: flex;
            align-items: center;
            gap: 8px;
            justify-content: center;
            margin-bottom: 20px;
            font-size: 0.9rem;
            color: var(--text-light);
            font-style: italic;
        }

        .member-fun-fact i {
            color: var(--accent-color);
        }

        .member-social {
            display: flex;
            gap: 12px;
            justify-content: center;
        }

        .member-social a {
            width: 40px;
            height: 40px;
            background: rgba(59, 130, 246, 0.1);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-color);
            text-decoration: none;
            transition: all 0.3s ease;
            border: 1px solid rgba(59, 130, 246, 0.2);
        }

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

        .team-stats {
            margin-top: 80px;
            position: relative;
            z-index: 2;
        }

        .stats-container-team {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(20px);
            border-radius: 24px;
            padding: 40px;
            border: 1px solid rgba(255, 255, 255, 0.3);
            box-shadow: var(--shadow);
        }

        .stat-item-team {
            display: flex;
            align-items: center;
            gap: 20px;
            text-align: left;
        }

        .stat-icon-team {
            width: 60px;
            height: 60px;
            background: var(--gradient-primary);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
        }

        .stat-content-team {
            flex: 1;
        }

        .stat-number-team {
            display: block;
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary-color);
            line-height: 1;
        }

        .stat-label-team {
            font-size: 0.9rem;
            color: var(--text-light);
            font-weight: 600;
        }

        /* Blog Section */
        .blog-showcase {
            padding: 120px 0;
            background: var(--white);
            position: relative;
        }

        .blog-showcase::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 1000px;
            height: 1000px;
            background: conic-gradient(from 0deg, rgba(59, 130, 246, 0.02), rgba(245, 158, 11, 0.02), rgba(59, 130, 246, 0.02));
            border-radius: 50%;
            animation: rotate 30s linear infinite;
        }

        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
            margin-top: 60px;
            position: relative;
            z-index: 2;
        }

        .blog-post {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(20px);
            border-radius: 24px;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.3);
            box-shadow: var(--shadow);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
        }

        .blog-post:hover {
            transform: translateY(-12px) scale(1.02);
            box-shadow: var(--shadow-hover);
            border: 1px solid rgba(59, 130, 246, 0.3);
        }

        .blog-post.featured {
            grid-column: span 2;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0;
        }

        .post-image {
            position: relative;
            height: 250px;
            background: var(--gradient-primary);
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .post-image .image-placeholder {
            font-size: 3rem;
            color: rgba(255, 255, 255, 0.8);
        }

        .post-category {
            position: absolute;
            top: 20px;
            left: 20px;
            background: rgba(255, 255, 255, 0.9);
            color: var(--primary-color);
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
        }

        .post-date {
            position: absolute;
            top: 20px;
            right: 20px;
            background: rgba(0, 0, 0, 0.7);
            color: white;
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 0.8rem;
        }

        .post-content {
            padding: 30px;
        }

        .post-content h3 {
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: var(--text-dark);
            line-height: 1.4;
        }

        .post-content p {
            color: var(--text-light);
            margin-bottom: 20px;
            line-height: 1.6;
        }

        .post-meta {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 20px;
            font-size: 0.9rem;
            color: var(--text-light);
        }

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

        .author-avatar {
            width: 32px;
            height: 32px;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 0.9rem;
        }

        .read-time {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .post-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 20px;
        }

        .tag {
            background: rgba(59, 130, 246, 0.1);
            color: var(--primary-color);
            padding: 4px 12px;
            border-radius: 12px;
            font-size: 0.8rem;
            font-weight: 600;
            border: 1px solid rgba(59, 130, 246, 0.2);
        }

        .read-more {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .read-more:hover {
            gap: 12px;
            color: var(--accent-color);
        }

        .read-more i {
            transition: transform 0.3s ease;
        }

        .read-more:hover i {
            transform: translateX(4px);
        }

        .blog-cta {
            text-align: center;
            margin-top: 60px;
            position: relative;
            z-index: 2;
        }

        .blog-cta-button {
            background: var(--gradient-primary);
            color: white;
            border: none;
            padding: 16px 40px;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .blog-cta-button:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-hover);
            gap: 15px;
        }

        /* Contact Section */
        .contact {
            padding: 120px 0;
            background: var(--white);
            position: relative;
        }

        .contact::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 800px;
            height: 800px;
            background: conic-gradient(from 0deg, rgba(59, 130, 246, 0.03), rgba(245, 158, 11, 0.03), rgba(59, 130, 246, 0.03));
            border-radius: 50%;
            animation: rotate 20s linear infinite;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            position: relative;
            z-index: 2;
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .contact-info h3 {
            font-size: 2rem;
            margin-bottom: 30px;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 700;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            padding: 25px;
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(20px);
            border-radius: 20px;
            border: 1px solid rgba(59, 130, 246, 0.1);
            box-shadow: var(--shadow);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .contact-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: var(--gradient-primary);
            opacity: 0.05;
            transition: left 0.3s ease;
        }

        .contact-item:hover {
            transform: translateX(8px);
            box-shadow: var(--shadow-hover);
        }

        .contact-item:hover::before {
            left: 0;
        }

        .contact-item i {
            color: var(--primary-color);
            font-size: 1.5rem;
            width: 24px;
            margin-top: 4px;
            transition: all 0.3s ease;
        }

        .contact-item:hover i {
            transform: scale(1.2);
        }

        .contact-item div strong {
            color: var(--secondary-color);
            font-weight: 700;
            font-size: 1.1rem;
            display: block;
            margin-bottom: 5px;
        }

        .contact-form {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(20px);
            padding: 50px;
            border-radius: 24px;
            border: 1px solid rgba(255, 255, 255, 0.3);
            box-shadow: var(--shadow);
            position: relative;
            overflow: hidden;
        }

        .contact-form::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100px;
            height: 100px;
            background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
            border-radius: 50%;
        }

        .form-group {
            margin-bottom: 30px;
            position: relative;
        }

        .form-group label {
            display: block;
            margin-bottom: 10px;
            font-weight: 600;
            color: var(--secondary-color);
            font-size: 1rem;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 18px 20px;
            border: 2px solid rgba(59, 130, 246, 0.1);
            border-radius: 12px;
            background: rgba(255, 255, 255, 0.8);
            font-family: inherit;
            font-size: 1rem;
            transition: all 0.3s ease;
            position: relative;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary-color);
            background: var(--white);
            box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
            transform: translateY(-2px);
        }

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

        .contact-form button {
            background: var(--gradient-primary);
            color: var(--white);
            border: none;
            padding: 18px 40px;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            width: 100%;
            position: relative;
            overflow: hidden;
        }

        .contact-form button::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;
        }

        .contact-form button:hover::before {
            left: 100%;
        }

        .contact-form button:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-hover);
        }

        /* Footer */
        footer {
            background: var(--secondary-color);
            color: var(--white);
            padding: 80px 0 40px;
            position: relative;
            overflow: hidden;
        }

        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, transparent 50%, rgba(245, 158, 11, 0.1) 100%);
        }

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

        .footer-section {
            position: relative;
        }

        .footer-section h3 {
            margin-bottom: 25px;
            color: var(--accent-color);
            font-size: 1.3rem;
            font-weight: 700;
            position: relative;
        }

        .footer-section h3::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 40px;
            height: 3px;
            background: var(--gradient-primary);
            border-radius: 2px;
        }

        .footer-section p,
        .footer-section a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            margin-bottom: 12px;
            display: block;
            line-height: 1.6;
            transition: all 0.3s ease;
        }

        .footer-section a:hover {
            color: var(--accent-color);
            transform: translateX(5px);
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 25px;
        }

        .social-links a {
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 1.2rem;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .social-links a::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: var(--gradient-primary);
            transition: left 0.3s ease;
        }

        .social-links a:hover::before {
            left: 0;
        }

        .social-links a:hover {
            transform: translateY(-5px);
            border-color: var(--primary-color);
        }

        .social-links a i {
            position: relative;
            z-index: 2;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 30px;
            text-align: center;
            color: rgba(255, 255, 255, 0.6);
            position: relative;
            z-index: 2;
        }

        .footer-bottom p {
            margin: 0;
            font-size: 0.95rem;
        }

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

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

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

        @keyframes float-shape {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(180deg); }
        }

        /* Enhanced floating animations that avoid the central device area */
        @keyframes float-orbit-safe {
            0% { transform: translate(0px, 0px) rotate(0deg); }
            25% { transform: translate(10px, -15px) rotate(90deg); }
            50% { transform: translate(0px, -20px) rotate(180deg); }
            75% { transform: translate(-10px, -15px) rotate(270deg); }
            100% { transform: translate(0px, 0px) rotate(360deg); }
        }

        @keyframes float-wave-safe {
            0% { transform: translateX(0px) translateY(0px) rotate(0deg); }
            33% { transform: translateX(15px) translateY(-12px) rotate(4deg); }
            66% { transform: translateX(-8px) translateY(-25px) rotate(-2deg); }
            100% { transform: translateX(0px) translateY(0px) rotate(0deg); }
        }

        @keyframes float-drift-safe {
            0% { transform: translate(0px, 0px) rotate(0deg) scale(1); }
            20% { transform: translate(18px, -8px) rotate(12deg) scale(1.03); }
            40% { transform: translate(-12px, -20px) rotate(-8deg) scale(0.97); }
            60% { transform: translate(22px, -28px) rotate(15deg) scale(1.05); }
            80% { transform: translate(-8px, -12px) rotate(-4deg) scale(1.01); }
            100% { transform: translate(0px, 0px) rotate(0deg) scale(1); }
        }

        @keyframes float-spiral-safe {
            0% { transform: translate(0px, 0px) rotate(0deg); }
            25% { transform: translate(15px, -12px) rotate(45deg); }
            50% { transform: translate(0px, -25px) rotate(90deg); }
            75% { transform: translate(-15px, -12px) rotate(135deg); }
            100% { transform: translate(0px, 0px) rotate(180deg); }
        }

        @keyframes float-bounce-safe {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            15% { transform: translateY(-6px) rotate(2deg); }
            30% { transform: translateY(-16px) rotate(-1deg); }
            45% { transform: translateY(-10px) rotate(3deg); }
            60% { transform: translateY(-24px) rotate(-2deg); }
            75% { transform: translateY(-14px) rotate(1deg); }
        }

        @keyframes float-sway-safe {
            0% { transform: translateX(0px) translateY(0px) rotate(0deg); }
            25% { transform: translateX(-20px) translateY(-8px) rotate(-6deg); }
            50% { transform: translateX(0px) translateY(-16px) rotate(0deg); }
            75% { transform: translateX(20px) translateY(-8px) rotate(6deg); }
            100% { transform: translateX(0px) translateY(0px) rotate(0deg); }
        }

        @keyframes float-circle-safe {
            0% { transform: translate(0px, 0px) rotate(0deg); }
            12.5% { transform: translate(12px, -6px) rotate(45deg); }
            25% { transform: translate(18px, -18px) rotate(90deg); }
            37.5% { transform: translate(12px, -30px) rotate(135deg); }
            50% { transform: translate(0px, -36px) rotate(180deg); }
            62.5% { transform: translate(-12px, -30px) rotate(225deg); }
            75% { transform: translate(-18px, -18px) rotate(270deg); }
            87.5% { transform: translate(-12px, -6px) rotate(315deg); }
            100% { transform: translate(0px, 0px) rotate(360deg); }
        }

        /* Add a subtle glow pulsing effect for all floating cards */
        .floating-card::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(45deg, 
                transparent, 
                rgba(59, 130, 246, 0.1), 
                transparent, 
                rgba(139, 92, 246, 0.1), 
                transparent);
            border-radius: 18px;
            opacity: 0;
            animation: card-glow 4s ease-in-out infinite;
            z-index: -1;
        }

        @keyframes card-glow {
            0%, 100% { opacity: 0; transform: scale(1); }
            50% { opacity: 1; transform: scale(1.02); }
        }

        @keyframes float-card {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-15px); }
        }

        @keyframes device-glow {
            0%, 100% { box-shadow: 0 20px 40px rgba(59, 130, 246, 0.3); }
            50% { box-shadow: 0 25px 50px rgba(59, 130, 246, 0.5); }
        }

        @keyframes code-typing {
            0% { width: 0; }
            50% { width: var(--max-width, 100%); }
            100% { width: 0; }
        }

        @keyframes scroll-line {
            0%, 100% { opacity: 0.3; }
            50% { opacity: 1; }
        }

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

        @keyframes logo-pulse {
            0%, 100% { opacity: 0; }
            50% { opacity: 0.1; }
        }

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

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

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

        /* Responsive Design */
        @media (max-width: 768px) {
            .featured-project {
                grid-template-columns: 1fr;
                gap: 40px;
                padding: 40px 30px;
            }

            .portfolio-grid-modern {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .project-card {
                margin: 0;
            }

            .card-content {
                padding: 20px;
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }

            .portfolio-stats {
                padding: 40px 30px;
            }
        }

        @media (max-width: 1024px) {
            .hero-content-wrapper {
                grid-template-columns: 1fr;
                gap: 3rem;
                text-align: center;
            }

            .hero-right {
                height: 400px;
            }

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

            .central-device {
                width: 160px;
                height: 240px;
            }
        }

        @media (max-width: 768px) {
            .mobile-header {
                padding: 0.9rem 1rem;
                gap: 0.75rem;
            }

            .mobile-brand {
                gap: 8px;
                font-size: 1.15rem;
            }

            .dock-nav {
                display: none;
            }

            .mobile-header {
                display: flex;
            }

            .hero-new {
                min-height: auto;
                align-items: flex-start;
                padding: 128px 0 56px;
            }

            .hero-content-wrapper {
                gap: 2.5rem;
                padding: 0 1rem;
                text-align: left;
            }

            .hero-left {
                gap: 1.5rem;
                align-items: flex-start;
            }

            .hero-badge {
                max-width: 100%;
                flex-wrap: wrap;
                padding: 10px 14px;
                font-size: 0.82rem;
            }

            .hero-title {
                max-width: 10ch;
                font-size: clamp(2.4rem, 9vw, 3rem);
                line-height: 1.02;
            }

            .hero-description {
                max-width: 34ch;
                font-size: 1rem;
            }

            .hero-stats {
                display: grid;
                grid-template-columns: repeat(3, minmax(0, 1fr));
                gap: 0.75rem;
                width: 100%;
            }

            .hero-actions {
                flex-direction: column;
                align-items: stretch;
                gap: 0.875rem;
                width: 100%;
            }

            .cta-primary,
            .cta-secondary {
                width: 100%;
                max-width: none;
                justify-content: center;
            }

            .hero-right {
                width: 100%;
                height: clamp(340px, 72vw, 430px);
            }

            .hero-visual {
                display: block;
                height: 100%;
                padding: 0.75rem;
                border-radius: 28px;
                background: rgba(255, 255, 255, 0.58);
                border: 1px solid rgba(255, 255, 255, 0.62);
                backdrop-filter: blur(18px);
                overflow: hidden;
            }

            .central-device {
                position: absolute;
                top: 50%;
                left: 50%;
                width: clamp(130px, 34vw, 170px);
                height: clamp(220px, 48vw, 280px);
                transform: translate(-50%, -50%);
                margin: 0;
                padding: 10px;
                border-radius: 26px;
            }

            .device-screen {
                padding: 12px;
                border-radius: 18px;
            }

            .central-device .screen-content {
                align-items: flex-start;
                padding-top: 2px;
            }

            .central-device .code-lines {
                gap: 6px;
            }

            .central-device .code-line {
                height: 3px;
                border-radius: 999px;
            }

            .hero-tech-cards {
                position: absolute;
                inset: 0;
                display: block;
                width: 100%;
                height: 100%;
                pointer-events: none;
            }

            .hero-tech-cards .tech-card-floating {
                position: absolute;
                min-width: 78px;
                max-width: 98px;
                padding: 8px 10px;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                gap: 4px;
                text-align: center;
                border-radius: 10px;
                animation-duration: 4s;
            }

            .tech-card-icon {
                font-size: 0.95rem;
            }

            .tech-card-name {
                white-space: normal;
                font-size: 0.68rem;
                line-height: 1.15;
            }

            .hero-tech-cards .tech-card-floating:nth-child(1) {
                top: 10%;
                left: 4%;
            }

            .hero-tech-cards .tech-card-floating:nth-child(2) {
                top: 14%;
                right: 5%;
            }

            .hero-tech-cards .tech-card-floating:nth-child(3) {
                top: 37%;
                left: 0;
            }

            .hero-tech-cards .tech-card-floating:nth-child(4) {
                top: 33%;
                right: 0;
            }

            .hero-tech-cards .tech-card-floating:nth-child(5) {
                bottom: 23%;
                left: 6%;
            }

            .hero-tech-cards .tech-card-floating:nth-child(6) {
                bottom: 21%;
                right: 7%;
            }

            .hero-tech-cards .tech-card-floating:nth-child(7) {
                bottom: 7%;
                left: 20%;
            }

            .hero-tech-cards .tech-card-floating:nth-child(8) {
                bottom: 8%;
                right: 19%;
            }

            .floating-card {
                padding: 12px;
            }

            .floating-card i {
                font-size: 1.5rem;
            }

            .floating-card span {
                font-size: 0.75rem;
            }

            .mobile-slide-menu {
                width: 280px;
            }

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

            .hero-scroll-indicator {
                display: none;
            }
        }

        @media (max-width: 480px) {
            .hero-title {
                max-width: none;
                font-size: clamp(2rem, 10.5vw, 2.45rem);
            }

            .hero-description {
                max-width: none;
                font-size: 0.95rem;
            }

            .hero-stats {
                grid-template-columns: repeat(3, minmax(0, 1fr));
                gap: 0.6rem;
            }

            .stat {
                min-width: 0;
                width: 100%;
                padding: 0.85rem 0.5rem;
                border-radius: 14px;
            }

            .stat-number {
                font-size: 1.45rem;
            }

            .stat-label {
                font-size: 0.75rem;
                text-align: center;
            }

            .hero-right {
                height: clamp(300px, 88vw, 360px);
                margin-top: 0.25rem;
            }

            .hero-visual {
                padding: 0.65rem;
                border-radius: 24px;
            }

            .central-device {
                width: clamp(118px, 37vw, 148px);
                height: clamp(198px, 56vw, 236px);
                max-height: none;
                padding: 9px;
                border-radius: 24px;
            }

            .device-screen {
                padding: 10px;
                border-radius: 16px;
            }

            .central-device .screen-content {
                padding-top: 1px;
            }

            .central-device .code-lines {
                gap: 5px;
            }

            .central-device .code-line {
                height: 2px;
            }

            .floating-card {
                padding: 8px;
            }

            .hero-tech-cards {
                inset: 0;
            }

            .hero-tech-cards .tech-card-floating {
                min-width: 68px;
                max-width: 82px;
                padding: 7px 8px;
                gap: 3px;
                border-radius: 9px;
            }

            .hero-badge {
                font-size: 0.78rem;
            }

            .tech-card-icon {
                font-size: 0.88rem;
            }

            .tech-card-name {
                font-size: 0.62rem;
                line-height: 1.1;
            }

            .hero-tech-cards .tech-card-floating:nth-child(1) {
                top: 10%;
                left: 3%;
            }

            .hero-tech-cards .tech-card-floating:nth-child(2) {
                top: 13%;
                right: 3%;
            }

            .hero-tech-cards .tech-card-floating:nth-child(3) {
                top: 38%;
                left: 0;
            }

            .hero-tech-cards .tech-card-floating:nth-child(4) {
                top: 34%;
                right: 0;
            }

            .hero-tech-cards .tech-card-floating:nth-child(5) {
                bottom: 22%;
                left: 4%;
            }

            .hero-tech-cards .tech-card-floating:nth-child(6) {
                bottom: 20%;
                right: 4%;
            }

            .hero-tech-cards .tech-card-floating:nth-child(7) {
                bottom: 7%;
                left: 16%;
            }

            .hero-tech-cards .tech-card-floating:nth-child(8) {
                bottom: 7%;
                right: 16%;
            }

            .mobile-brand {
                font-size: 1.3rem;
            }

            .about-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .stat-item {
                padding: 20px;
            }

            .tech-showcase {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .tech-categories {
                grid-template-columns: 1fr;
                gap: 25px;
            }

            .tech-spotlight {
                padding: 40px 30px;
            }

            .portfolio-grid-modern {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .project-card {
                padding: 25px 20px;
            }

            .contact-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .contact-form {
                padding: 30px;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 30px;
                text-align: center;
            }

            .social-links {
                justify-content: center;
            }

            .section-header h2 {
                font-size: 2rem;
            }

            .section-header p {
                font-size: 1rem;
            }
        }

        @media (max-width: 480px) {
            .tech-categories {
                grid-template-columns: 1fr;
                gap: 15px;
            }

            .category-icon {
                width: 60px;
                height: 60px;
            }

            .category-icon i {
                font-size: 1.5rem;
            }

            .contact-form {
                padding: 20px;
            }

            .contact-info h3 {
                font-size: 1.5rem;
            }

            .contact-item {
                padding: 20px;
                flex-direction: column;
                text-align: center;
                gap: 15px;
            }

            .footer-section h3 {
                font-size: 1.1rem;
            }

            .social-links a {
                width: 40px;
                height: 40px;
                font-size: 1rem;
            }
        }

        /* Services Showcase Section */
        .services-showcase {
            padding: 120px 0;
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
            position: relative;
            overflow: hidden;
        }

        .services-showcase::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="service-dots" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(59,130,246,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23service-dots)"/></svg>');
            opacity: 0.5;
        }

        .services-layout {
            display: flex;
            flex-direction: column;
            gap: 80px;
            position: relative;
            z-index: 2;
        }

        .services-grid-enhanced {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .service-card-modern {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(20px);
            border-radius: 24px;
            padding: 40px 30px;
            border: 1px solid rgba(255, 255, 255, 0.3);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            cursor: pointer;
        }

        .service-card-modern::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--gradient-primary);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .service-card-modern:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        .service-card-modern:hover::before {
            transform: scaleX(1);
        }

        .service-header {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            margin-bottom: 30px;
        }

        .service-icon-wrapper {
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .service-icon-bg {
            position: absolute;
            top: -10px;
            left: -10px;
            right: -10px;
            bottom: -10px;
            background: var(--gradient-primary);
            border-radius: 20px;
            opacity: 0.1;
            transition: all 0.3s ease;
        }

        .service-card-modern:hover .service-icon-bg {
            opacity: 0.2;
            transform: scale(1.1);
        }

        .service-icon {
            width: 60px;
            height: 60px;
            background: var(--gradient-primary);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            z-index: 2;
            transition: all 0.3s ease;
        }

        .service-card-modern:hover .service-icon {
            transform: scale(1.1) rotate(5deg);
        }

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

        .service-badge {
            position: absolute;
            top: -8px;
            right: -8px;
            background: var(--accent-color);
            color: var(--white);
            font-size: 0.7rem;
            font-weight: 600;
            padding: 4px 8px;
            border-radius: 10px;
            white-space: nowrap;
            z-index: 3;
        }

        .service-badge.trending {
            background: var(--success-color);
        }

        .service-meta {
            flex: 1;
        }

        .service-meta h3 {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--secondary-color);
            margin-bottom: 8px;
            line-height: 1.3;
        }

        .service-tagline {
            color: var(--text-light);
            font-size: 0.9rem;
            font-weight: 500;
            margin: 0;
        }

        .service-content {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }

        .service-description {
            color: var(--text-light);
            line-height: 1.6;
            font-size: 0.95rem;
        }

        .service-highlights {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }

        .highlight-item {
            display: flex;
            align-items: center;
            gap: 8px;
            background: rgba(59, 130, 246, 0.1);
            border: 1px solid rgba(59, 130, 246, 0.2);
            border-radius: 20px;
            padding: 8px 12px;
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--primary-color);
            transition: all 0.3s ease;
        }

        .highlight-item:hover {
            background: var(--primary-color);
            color: var(--white);
            transform: translateY(-2px);
        }

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

        .highlight-icon i {
            font-size: 0.9rem;
        }

        .service-features-advanced {
            background: rgba(248, 250, 252, 0.8);
            border-radius: 12px;
            padding: 20px;
            border: 1px solid rgba(226, 232, 240, 0.8);
        }

        .service-features-advanced h4 {
            font-size: 1rem;
            font-weight: 600;
            color: var(--secondary-color);
            margin-bottom: 15px;
        }

        .features-list {
            list-style: none;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 10px;
        }

        .features-list li {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.85rem;
            color: var(--text-light);
            font-weight: 500;
        }

        .features-list li i {
            color: var(--success-color);
            font-size: 0.9rem;
        }

        .service-cta {
            background: var(--gradient-primary);
            color: var(--white);
            border: none;
            border-radius: 50px;
            padding: 14px 28px;
            font-size: 0.95rem;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .service-cta::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;
        }

        .service-cta:hover::before {
            left: 100%;
        }

        .service-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
        }

        /* Service Process Section */
        .service-process {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(20px);
            border-radius: 24px;
            padding: 50px 40px;
            border: 1px solid rgba(255, 255, 255, 0.3);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        }

        .process-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .process-header h3 {
            font-size: 2rem;
            font-weight: 700;
            color: var(--secondary-color);
            margin-bottom: 15px;
        }

        .process-header p {
            color: var(--text-light);
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto;
        }

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

        .process-step {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            padding: 25px;
            background: rgba(248, 250, 252, 0.8);
            border-radius: 16px;
            border: 1px solid rgba(226, 232, 240, 0.8);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .process-step::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: var(--gradient-primary);
            opacity: 0.05;
            transition: left 0.3s ease;
        }

        .process-step:hover::before {
            left: 0;
        }

        .process-step:hover {
            transform: translateY(-5px);
            border-color: var(--primary-color);
        }

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

        .step-content h4 {
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--secondary-color);
            margin-bottom: 10px;
        }

        .step-content p {
            color: var(--text-light);
            line-height: 1.6;
            font-size: 0.95rem;
        }

        /* Service Stats Section */
        .service-stats {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(20px);
            border-radius: 24px;
            padding: 50px 40px;
            border: 1px solid rgba(255, 255, 255, 0.3);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        }

        .stats-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
        }

        .stat-item-enhanced {
            display: flex;
            align-items: center;
            gap: 20px;
            padding: 25px;
            background: rgba(248, 250, 252, 0.8);
            border-radius: 16px;
            border: 1px solid rgba(226, 232, 240, 0.8);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .stat-item-enhanced::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: var(--gradient-primary);
            opacity: 0.05;
            transition: left 0.3s ease;
        }

        .stat-item-enhanced:hover::before {
            left: 0;
        }

        .stat-item-enhanced:hover {
            transform: translateY(-5px);
            border-color: var(--primary-color);
        }

        .stat-icon {
            width: 60px;
            height: 60px;
            background: var(--gradient-primary);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .stat-icon i {
            font-size: 1.5rem;
            color: var(--white);
        }

        .stat-content {
            display: flex;
            flex-direction: column;
            gap: 5px;
        }

        .stat-number {
            font-size: 1.8rem;
            font-weight: 800;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .stat-label {
            color: var(--text-light);
            font-size: 0.9rem;
            font-weight: 500;
        }

        /* Services Responsive Design */
        @media (max-width: 768px) {
            .services-grid-enhanced {
                grid-template-columns: 1fr;
                gap: 25px;
            }

            .service-card-modern {
                padding: 30px 25px;
            }

            .service-header {
                flex-direction: column;
                align-items: center;
                text-align: center;
                gap: 15px;
            }

            .service-highlights {
                justify-content: center;
            }

            .features-list {
                grid-template-columns: 1fr;
            }

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

            .stats-container {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }

            .service-process,
            .service-stats {
                padding: 40px 30px;
            }
        }

        @media (max-width: 480px) {
            .services-showcase {
                padding: 80px 0;
            }

            .service-card-modern {
                padding: 25px 20px;
            }

            .stats-container {
                grid-template-columns: 1fr;
                gap: 15px;
            }

            .stat-item-enhanced {
                padding: 20px;
            }

            .process-step {
                padding: 20px;
            }

            .service-process,
            .service-stats {
                padding: 30px 20px;
            }
        }

        /* Scroll reveal animation */
        .reveal {
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.6s ease;
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* Mobile Responsive Styles for New Features */
        @media (max-width: 768px) {
            .language-switcher {
                top: auto;
                right: auto;
                bottom: 16px;
                left: 16px;
                gap: 4px;
                padding: 5px;
                z-index: 1005;
            }

            .language-btn {
                padding: 6px 9px;
                font-size: 0.7rem;
            }

            html[dir="rtl"] .language-switcher {
                left: auto;
                right: 16px;
            }

            /* Loading screen mobile adjustments */
            .loading-logo {
                font-size: 1.5rem;
                margin-bottom: 20px;
            }
            
            .loading-spinner {
                width: 60px;
                height: 60px;
            }
            
            .spinner-ring:nth-child(1) {
                width: 60px;
                height: 60px;
            }
            
            .spinner-ring:nth-child(2) {
                width: 45px;
                height: 45px;
                top: 7.5px;
                left: 7.5px;
            }
            
            .spinner-ring:nth-child(3) {
                width: 30px;
                height: 30px;
                top: 15px;
                left: 15px;
            }

            /* WhatsApp button mobile positioning */
            .whatsapp-float {
                bottom: 16px;
                right: 16px;
                z-index: 1005;
            }

            html[dir="rtl"] .whatsapp-float {
                left: 16px;
                right: auto;
            }
            
            .whatsapp-button {
                width: 50px;
                height: 50px;
            }
            
            .whatsapp-button i {
                font-size: 1.5rem;
            }
            
            .whatsapp-tooltip {
                display: none; /* Hide tooltip on mobile */
            }

            /* Team section mobile styles */
            .team-grid {
                grid-template-columns: 1fr;
                gap: 25px;
                margin-top: 40px;
            }
            
            .team-member {
                padding: 25px 20px;
            }
            
            .member-avatar {
                width: 70px;
                height: 70px;
                margin-bottom: 15px;
            }
            
            .avatar-placeholder {
                font-size: 1.5rem;
            }
            
            .member-info h3 {
                font-size: 1.2rem;
            }
            
            .member-info .bio {
                font-size: 0.9rem;
            }
            
            .member-skills {
                justify-content: center;
            }
            
            .skill-tag {
                font-size: 0.75rem;
                padding: 5px 10px;
            }
            
            .stats-container-team {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
                padding: 30px 20px;
            }
            
            .stat-item-team {
                flex-direction: column;
                text-align: center;
                gap: 10px;
            }
            
            .stat-icon-team {
                width: 50px;
                height: 50px;
                font-size: 1.2rem;
            }
            
            .stat-number-team {
                font-size: 1.5rem;
            }

            /* Blog section mobile styles */
            .blog-grid {
                grid-template-columns: 1fr;
                gap: 25px;
                margin-top: 40px;
            }
            
            .blog-post.featured {
                grid-column: span 1;
                display: block;
            }
            
            .post-image {
                height: 200px;
            }
            
            .post-content {
                padding: 20px;
            }
            
            .post-content h3 {
                font-size: 1.1rem;
                margin-bottom: 12px;
            }
            
            .post-content p {
                font-size: 0.9rem;
                margin-bottom: 15px;
            }
            
            .post-meta {
                font-size: 0.8rem;
                margin-bottom: 15px;
            }
            
            .author-avatar {
                width: 28px;
                height: 28px;
                font-size: 0.8rem;
            }
            
            .post-tags {
                margin-bottom: 15px;
            }
            
            .tag {
                font-size: 0.75rem;
                padding: 3px 8px;
            }

            /* Touch gesture improvements */
            .touch-friendly {
                min-height: 44px; /* iOS recommended minimum touch target */
                min-width: 44px;
            }
            
            .swipeable {
                padding: 10px 0;
            }

            /* Enhanced mobile form validation */
            .form-group input,
            .form-group textarea {
                padding: 16px 18px;
                font-size: 16px; /* Prevent zoom on iOS */
            }
            
            .validation-message {
                font-size: 0.75rem !important;
            }
            
            .notification {
                right: 10px !important;
                left: 10px !important;
                right: auto !important;
                font-size: 0.9rem;
                padding: 12px 15px !important;
            }
        }

        @media (max-width: 480px) {
            .language-switcher {
                bottom: 14px;
                left: 14px;
            }

            html[dir="rtl"] .language-switcher {
                left: auto;
                right: 14px;
            }

            /* Extra small mobile adjustments */
            .blog-post {
                margin-bottom: 20px;
            }
            
            .post-content {
                padding: 15px;
            }
            
            .team-member {
                padding: 20px 15px;
            }
            
            .stats-container-team {
                grid-template-columns: 1fr;
                gap: 15px;
                padding: 25px 15px;
            }
            
            .whatsapp-float {
                bottom: 14px;
                right: 14px;
            }

            html[dir="rtl"] .whatsapp-float {
                left: 14px;
                right: auto;
            }
            
            .whatsapp-button {
                width: 45px;
                height: 45px;
            }
            
            .whatsapp-button i {
                font-size: 1.3rem;
            }
            
            /* Improved mobile typography */
            .member-info h3 {
                font-size: 1.1rem;
            }
            
            .post-content h3 {
                font-size: 1rem;
                line-height: 1.3;
            }
        }

        /* Additional utility classes for enhanced interactions */
        .fadeInUp {
            animation: fadeInUp 0.6s ease forwards;
        }

        .slideInLeft {
            animation: slideInLeft 0.6s ease forwards;
        }

        .slideInRight {
            animation: slideInRight 0.6s ease forwards;
        }

        .bounceIn {
            animation: bounceIn 0.8s ease forwards;
        }

        .valid {
            border-color: var(--success-color) !important;
            box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1) !important;
        }

        .invalid {
            border-color: var(--danger-color) !important;
            box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1) !important;
        }

        /* Enhanced animations */
        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

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

        @keyframes bounceIn {
            0% {
                opacity: 0;
                transform: scale(0.3);
            }
            50% {
                transform: scale(1.05);
            }
            70% {
                transform: scale(0.9);
            }
            100% {
                opacity: 1;
                transform: scale(1);
            }
        }

        /* Accessibility improvements */
        @media (prefers-reduced-motion: reduce) {
            *,
            *::before,
            *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
                scroll-behavior: auto !important;
            }
            
            .loading-spinner,
            .tech-card-floating,
            .member-avatar,
            .whatsapp-button {
                animation: none !important;
            }
        }

        /* High contrast mode support */
        @media (prefers-contrast: high) {
            .tech-card-floating,
            .team-member,
            .blog-post {
                border: 2px solid var(--text-dark) !important;
            }
            
            .whatsapp-button {
                border: 2px solid #000 !important;
            }
        }
