 :root {
            --primary-blue: #0066cc;
            --secondary-blue: #0099ff;
            --accent-blue: #00ccff;
            --light-blue: #e6f4ff;
            --very-light-blue: #f0f9ff;
            --dark-blue: #003d7a;
            --text-dark: #1a1a1a;
            --text-gray: #4a5568;
            --white: #ffffff;
            --gray-50: #f9fafb;
            --gray-100: #f3f4f6;
            --gray-200: #e5e7eb;
            --gray-300: #d1d5db;
            --gradient-start: #ffffff;
            --gradient-end: #e6f4ff;
            --purple-primary: #8b5cf6;
            --purple-secondary: #a855f7;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            overflow-x: hidden;
            background: #ffffff;
            color: var(--text-dark);
        }

        /* Animated background */
        .animated-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            background: linear-gradient(180deg, #ffffff 0%, #f0f9ff 50%, #e6f4ff 100%);
            overflow: hidden;
        }

        .animated-bg::before {
            content: '';
            position: absolute;
            width: 200%;
            height: 200%;
            top: -50%;
            left: -50%;
            background: radial-gradient(circle, rgba(0, 153, 255, 0.05) 0%, transparent 50%);
            animation: pulse 15s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1) rotate(0deg); }
            50% { transform: scale(1.1) rotate(180deg); }
        }

        /* Floating particles */
        .particle {
            position: absolute;
            background: rgba(0, 153, 255, 0.2);
            border-radius: 50%;
            pointer-events: none;
            animation: float 20s infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(100vh) scale(0); }
            10% { transform: translateY(90vh) scale(1); }
            90% { transform: translateY(10vh) scale(1); }
            100% { transform: translateY(0) scale(0); }
        }

        /* Animation delays */
        .animation-delay-2s {
            animation-delay: 2s;
        }

        .animation-delay-4s {
            animation-delay: 4s;
        }

        /* Device frame styling */
        .device-frame {
            transform: perspective(1000px) rotateY(-15deg) rotateX(5deg);
            transition: transform 0.3s ease;
        }

        .device-frame:hover {
            transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
        }

        /* 3D video container */
        .video-device-3d {
            transform-style: preserve-3d;
            transform: perspective(1200px) rotateX(10deg) rotateY(15deg) rotateZ(-2deg) scale(0.95);
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            animation: float3d 6s ease-in-out infinite;
        }
        
        .video-device-3d:hover {
            transform: perspective(1200px) rotateX(5deg) rotateY(5deg) rotateZ(0deg) scale(1.05);
        }
        
        @keyframes float3d {
            0%, 100% {
                transform: perspective(1200px) rotateX(10deg) rotateY(15deg) rotateZ(-2deg) scale(0.95) translateY(0);
            }
            50% {
                transform: perspective(1200px) rotateX(8deg) rotateY(20deg) rotateZ(-1deg) scale(0.98) translateY(-20px);
            }
        }
        
        /* 3D shadow effect */
        .device-shadow {
            position: absolute;
            bottom: -40px;
            left: 50%;
            transform: translateX(-50%) scaleY(0.3) scaleX(0.8);
            width: 100%;
            height: 100%;
            background: radial-gradient(ellipse at center, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0) 70%);
            filter: blur(20px);
            opacity: 0.6;
            z-index: -1;
        }
        
        /* Inner screen 3D effect */
        .video-screen-3d {
            transform: translateZ(20px);
            box-shadow: 
                0 0 0 1px rgba(255,255,255,0.1),
                0 10px 40px rgba(0,0,0,0.3),
                inset 0 0 20px rgba(0,0,0,0.2);
        }

        /* New float animation for badges */
        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
        }

        /* Gradient text */
        .gradient-text {
            background: linear-gradient(135deg, var(--accent-blue), var(--secondary-blue));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        /* Service card hover effect */
        .service-card {
            transition: all 0.3s ease;
            transform-style: preserve-3d;
            perspective: 1000px;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 102, 204, 0.15);
        }
        
        /* Icon hover animations */
        .icon-wrapper {
            transition: all 0.3s ease;
        }
        
        .service-card:hover .icon-wrapper,
        .industry-card:hover .icon-wrapper,
        .group:hover .icon-wrapper {
            transform: scale(1.2);
            background: linear-gradient(135deg, var(--accent-blue), var(--secondary-blue));
        }
        
        .icon-wrapper i {
            transition: all 0.3s ease;
        }
        
        .service-card:hover .icon-wrapper i,
        .industry-card:hover .icon-wrapper i,
        .group:hover .icon-wrapper i {
            color: white !important;
        }
        
        /* Read more link */
        .read-more-link {
            opacity: 0;
            transform: translateY(10px);
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.25rem;
            color: var(--primary-blue);
            font-size: 0.875rem;
            font-weight: 600;
            margin-top: 0.5rem;
        }
        
        .service-card:hover .read-more-link,
        .industry-card:hover .read-more-link,
        .group:hover .read-more-link {
            opacity: 1;
            transform: translateY(0);
        }
        
        .read-more-link i {
            transition: transform 0.3s ease;
        }
        
        .read-more-link:hover i {
            transform: translateX(4px);
        }

        /* Code animation */
        .code-line {
            opacity: 0;
            animation: typeIn 0.5s ease forwards;
        }

        @keyframes typeIn {
            to { opacity: 1; }
        }

        /* Mobile menu animation - removed old classes */

        /* Dallas skyline SVG animation */
        .skyline-path {
            stroke-dasharray: 1000;
            stroke-dashoffset: 1000;
            animation: drawSkyline 3s ease forwards;
        }

        @keyframes drawSkyline {
            to { stroke-dashoffset: 0; }
        }

        /* Industry icon hover */
        .industry-card {
            transition: all 0.3s ease;
        }

        .industry-card:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 30px rgba(0, 102, 204, 0.15);
        }

        /* Smooth scroll */
        html {
            scroll-behavior: smooth;
        }

        /* Progress bar animation */
        .progress-bar {
            width: 0;
            transition: width 2s ease-out;
        }
        
        /* Counter animation */
        .counter {
            display: inline-block;
            font-variant-numeric: tabular-nums;
        }

        /* Enhanced navigation styles */
        .nav-services {
            position: relative;
        }

        .nav-dropdown {
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%);
            background: white;
            border-radius: 16px;
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            margin-top: 8px;
            padding: 24px;
            min-width: 400px;
            border: 1px solid rgba(0, 0, 0, 0.05);
        }

        .nav-services:hover .nav-dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateX(-50%) translateY(0);
        }

        /* Service flow animation */
        .service-flow {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .service-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 16px;
            border-radius: 12px;
            transition: all 0.3s ease;
            position: relative;
            flex: 1;
        }

        .service-item:hover {
            transform: translateY(-4px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }

        .service-item.design:hover {
            background: linear-gradient(135deg, #f3e8ff, #e9d5ff);
        }

        .service-item.build:hover {
            background: linear-gradient(135deg, #dbeafe, #bfdbfe);
        }

        .service-item.market:hover {
            background: linear-gradient(135deg, #d1fae5, #a7f3d0);
        }

        .flow-arrow {
            color: #6b7280;
            animation: flow-pulse 2s ease-in-out infinite;
        }

        @keyframes flow-pulse {
            0%, 100% { opacity: 0.5; transform: translateX(0); }
            50% { opacity: 1; transform: translateX(4px); }
        }

        .service-icon {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 8px;
            transition: all 0.3s ease;
        }

        .service-item.design .service-icon {
            background: linear-gradient(135deg, #8b5cf6, #a855f7);
        }

        .service-item.build .service-icon {
            background: linear-gradient(135deg, #3b82f6, #2563eb);
        }

        .service-item.market .service-icon {
            background: linear-gradient(135deg, #10b981, #059669);
        }

        /* Active state for current page */
        .nav-active {
            color: #8b5cf6 !important;
            font-weight: 600;
        }

       /* Active state for current page */
        .nav-active {
            color: #18093c !important;
            font-weight: 600;
        }
        /* Breadcrumb navigation row - part of main nav */
        .breadcrumb-nav-row {
            height: 5vh;
            min-height: 40px;
            background: linear-gradient(135deg, #5c8af6 0%, #a855f7 100%);
            display: flex;
            align-items: center;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .breadcrumb-nav-container {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .breadcrumb-nav-link {
            color: rgba(255, 255, 255, 0.9);
            text-decoration: none;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            font-weight: 500;
            padding: 4px 8px;
            border-radius: 6px;
        }

        .breadcrumb-nav-link:hover {
            color: #fbbf24;
            background: rgba(255, 255, 255, 0.1);
            transform: translateX(2px);
        }

        .breadcrumb-nav-separator {
            color: rgba(255, 255, 255, 0.6);
            transition: color 0.3s ease;
        }

        .breadcrumb-nav-current {
            color: white;
            font-weight: 600;
            padding: 4px 8px;
            background: rgba(255, 255, 255, 0.15);
            border-radius: 6px;
        }


        /* Mobile navigation enhancements */
        .mobile-nav-item {
            display: flex;
            align-items: center;
            padding: 12px 0;
            border-bottom: 1px solid #f3f4f6;
        }

        .mobile-nav-item:last-child {
            border-bottom: none;
        }

        .mobile-nav-item.active {
            background: linear-gradient(135deg, #f3e8ff, #e9d5ff);
            border-radius: 8px;
            padding: 12px 16px;
            margin: 4px 0;
            border-bottom: none;
        }

        .mobile-service-badge {
            display: inline-flex;
            align-items: center;
            padding: 4px 8px;
            border-radius: 6px;
            font-size: 12px;
            font-weight: 600;
            margin-left: 8px;
        }

        .mobile-service-badge.design {
            background: #f3e8ff;
            color: #7c3aed;
        }

        .mobile-service-badge.build {
            background: #dbeafe;
            color: #2563eb;
        }

        .mobile-service-badge.market {
            background: #d1fae5;
            color: #059669;
        }


        /*CREATIVE SERVICES PAGE*??/
/* Gradient text */
        .gradient-text {
            background: linear-gradient(135deg, var(--purple-primary), var(--purple-secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Creative gradient */
        .creative-gradient {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        /* Smooth scroll */
        html {
            scroll-behavior: smooth;
        }

        /* Hero animation */
        .hero-creative {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            position: relative;
            overflow: hidden;
        }

        .hero-creative::before {
            content: '';
            position: absolute;
            width: 200%;
            height: 200%;
            top: -50%;
            left: -50%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
            animation: pulse 15s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1) rotate(0deg); }
            50% { transform: scale(1.1) rotate(180deg); }
        }
         /* Service cards */
        .creative-service-card {
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .creative-service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .creative-service-card:hover::before {
            opacity: 1;
        }

        .creative-service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(102, 126, 234, 0.2);
        }

        /* Portfolio grid */
        .portfolio-item {
            position: relative;
            overflow: hidden;
            cursor: pointer;
        }

        .portfolio-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: 1;
        }

        .portfolio-item:hover::before {
            opacity: 1;
        }

        .portfolio-overlay {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            color: white;
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: 2;
        }

        .portfolio-item:hover .portfolio-overlay {
            opacity: 1;
        }

        /* Process timeline */
        .process-step {
            position: relative;
        }

        .process-step::after {
            content: '';
            position: absolute;
            left: 50%;
            bottom: -40px;
            width: 2px;
            height: 40px;
            background: linear-gradient(to bottom, #667eea, #764ba2);
            transform: translateX(-50%);
        }

        .process-step:last-child::after {
            display: none;
        }

        /* Video background */
        .video-showcase {
            position: relative;
            background: #000;
            overflow: hidden;
        }

        .video-showcase video {
            position: absolute;
            top: 50%;
            left: 50%;
            min-width: 100%;
            min-height: 100%;
            transform: translate(-50%, -50%);
            opacity: 0.3;
        }

        /* Float animation */
        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }

        .float-animation {
            animation: float 4s ease-in-out infinite;
        }

        /* Pricing card hover */
        .pricing-card {
            transition: all 0.3s ease;
        }

        .pricing-card:hover {
            transform: scale(1.05);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

        /* Icon rotate on hover */
        .icon-rotate {
            transition: transform 0.3s ease;
        }

        .creative-service-card:hover .icon-rotate {
            transform: rotate(15deg);
        }

        /* Campaign type badge */
        .campaign-badge {
            background: linear-gradient(135deg, #667eea, #764ba2);
            color: white;
            padding: 0.25rem 1rem;
            border-radius: 9999px;
            font-size: 0.875rem;
            font-weight: 600;
            display: inline-block;
            margin-bottom: 1rem;
        }

        /*TECH SERVICES PAGE*/

         /* Tech gradient */
        .tech-gradient {
            background: linear-gradient(135deg, #0066cc 0%, #00ccff 100%);
        }

        /* Code block styling */
        .code-block {
            background: #1e1e1e;
            color: #d4d4d4;
            padding: 1.5rem;
            border-radius: 0.5rem;
            overflow-x: auto;
            font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
        }

        .code-block .keyword {
            color: #569cd6;
        }

        .code-block .string {
            color: #ce9178;
        }

        .code-block .comment {
            color: #6a9955;
        }

        .code-block .function {
            color: #dcdcaa;
        }

        /* Service card hover */
        .tech-service-card {
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .tech-service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-blue), var(--secondary-blue));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.3s ease;
        }

        .tech-service-card:hover::before {
            transform: scaleX(1);
        }

        .tech-service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0, 102, 204, 0.15);
        }

        /* Tech stack animation */
        .tech-stack-item {
            transition: all 0.3s ease;
        }

        .tech-stack-item:hover {
            transform: scale(1.1);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        /* Floating animation */
        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }

        .float-animation {
            animation: float 4s ease-in-out infinite;
        }

        /* Process step animation */
        .process-card {
            transition: all 0.3s ease;
        }

        .process-card:hover {
            transform: scale(1.05);
            box-shadow: 0 15px 35px rgba(0, 102, 204, 0.2);
        }

        /* Architecture diagram animation */
        .architecture-component {
            transition: all 0.3s ease;
        }

        .architecture-component:hover {
            transform: scale(1.05);
            filter: brightness(1.1);
        }

        /* Typing animation */
        @keyframes typing {
            from { width: 0; }
            to { width: 100%; }
        }

        .typing-animation {
            overflow: hidden;
            white-space: nowrap;
            animation: typing 3s steps(40, end);
        }

        /* Pulse animation for live indicators */
        @keyframes pulse-dot {
            0% {
                transform: scale(0.95);
                box-shadow: 0 0 0 0 rgba(0, 204, 255, 0.7);
            }
            70% {
                transform: scale(1);
                box-shadow: 0 0 0 10px rgba(0, 204, 255, 0);
            }
            100% {
                transform: scale(0.95);
                box-shadow: 0 0 0 0 rgba(0, 204, 255, 0);
            }
        }

        .pulse-dot {
            animation: pulse-dot 2s infinite;
        }

        /* Mobile app mockup styling */
        .device-mockup {
            transform: perspective(1000px) rotateY(-15deg) rotateX(5deg);
            transition: transform 0.3s ease;
        }

        .device-mockup:hover {
            transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
        }

        /* Cloud architecture animation */
        @keyframes cloud-float {
            0%, 100% { transform: translateX(0) translateY(0); }
            25% { transform: translateX(10px) translateY(-5px); }
            50% { transform: translateX(-5px) translateY(5px); }
            75% { transform: translateX(5px) translateY(-10px); }
        }

        .cloud-float {
            animation: cloud-float 6s ease-in-out infinite;
        }

        /* Matrix effect for hero */
        .matrix-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            opacity: 0.1;
        }

        .matrix-bg::before {
            content: '010110100101011010010101101001';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            font-family: monospace;
            font-size: 20px;
            color: var(--accent-blue);
            word-wrap: break-word;
            animation: matrix-scroll 20s linear infinite;
        }

        @keyframes matrix-scroll {
            0% { transform: translateY(0); }
            100% { transform: translateY(100%); }
        }