/* Hero Section styles moved to style.css for consistency */
        
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 50%, rgba(96, 165, 250, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 40% 80%, rgba(59, 130, 246, 0.3) 0%, transparent 50%);
            animation: gradientShift 20s ease-in-out infinite;
        }
        
        @keyframes gradientShift {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.8; }
        }
        
/* Hero particle and content styles moved to style.css for consistency */
        
/* Hero text styles moved to style.css for consistency */
        
        .hero-cta {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            justify-content: flex-start;
        }

        /* Button styles moved to style.css for reusability */

        /* Tech Stack Visualization */
        .hero-tech-stack {
            position: relative;
            width: 300px;
            height: 300px;
            margin: 0 auto;
        }

        .tech-item {
            position: absolute;
            width: 60px;
            height: 60px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.4s ease;
            animation: techFloat 6s ease-in-out infinite;
        }

        .tech-item:hover {
            transform: scale(1.1);
            background: rgba(255, 255, 255, 0.2);
        }

        .tech-item:nth-child(1) {
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            animation-delay: 0s;
        }

        .tech-item:nth-child(2) {
            top: 25%;
            right: 0;
            animation-delay: 1s;
        }

        .tech-item:nth-child(3) {
            bottom: 25%;
            right: 0;
            animation-delay: 2s;
        }

        .tech-item:nth-child(4) {
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            animation-delay: 3s;
        }

        .tech-item:nth-child(5) {
            bottom: 25%;
            left: 0;
            animation-delay: 4s;
        }

        .tech-item:nth-child(6) {
            top: 25%;
            left: 0;
            animation-delay: 5s;
        }

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

        /* Services Grid */
        .services-section {
            background: white;
            margin-top: -50px;
            position: relative;
            z-index: 3;
            border-radius: 30px 30px 0 0;
            padding: 80px 0;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2.5rem;
            margin-top: 3rem;
        }

        /* Service card styles moved to style.css for reusability */

        .service-cta {
            background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
            color: white;
            border: none;
            padding: 12px 24px;
            border-radius: 12px;
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            margin-top: 1rem;
        }

        .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(37, 99, 235, 0.4);
            color: white;
        }

        .service-cta i {
            transition: transform 0.3s ease;
        }

        .service-cta:hover i {
            transform: translateX(3px);
        }

        /* Process Section */
        .process-section {
            padding: var(--section-padding) 0;
            background: white;
        }

        .process-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-top: 4rem;
        }

        .process-item {
            text-align: center;
            position: relative;
            cursor: pointer;
            transition: var(--transition);
        }

        .process-item:hover {
            transform: translateY(-5px);
        }

        .process-number {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            font-weight: 700;
            margin: 0 auto 1.5rem;
            position: relative;
            transition: var(--transition);
            overflow: hidden;
        }

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

        .process-item:hover .process-number::before {
            left: 100%;
        }

        .process-item:hover .process-number {
            transform: scale(1.1);
            box-shadow: 0 10px 25px rgba(37, 99, 235, 0.4);
        }

        .process-title {
            font-family: var(--font-display);
            font-size: 1.3rem;
            font-weight: 600;
            background: var(--gradient-brand-mix);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1rem;
            display: inline-block;
        }

        .process-description {
            color: var(--neutral-600);
            line-height: 1.6;
        }

        /* CTA Section */
        .cta-section {
            padding: var(--section-padding) 0;
            background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
            color: white;
            text-align: center;
        }

        .cta-section h2 {
            font-family: var(--font-display);
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .cta-section p {
            font-size: 1.25rem;
            opacity: 0.9;
            margin-bottom: 2.5rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .btn-white {
            background: white;
            color: var(--primary-blue);
            border: none;
            padding: 15px 30px;
            font-weight: 600;
            border-radius: 12px;
            text-decoration: none;
            transition: var(--transition);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }

        .btn-white:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
            color: var(--primary-blue);
        }

        /* Footer styles moved to website/footer.css */

        /* Responsive Design */
        @media (max-width: 1200px) {
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 2rem;
            }
        }

        @media (max-width: 768px) {
            .hero {
                padding: 120px 0 80px;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .services-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .service-card {
                padding: 2rem 1.5rem;
            }

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

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

        @media (max-width: 576px) {
            .hero h1 {
                font-size: 2rem;
            }

            .services-grid {
                grid-template-columns: 1fr;
            }

            .service-card {
                padding: 1.5rem;
            }

            .process-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
        }