import { motion } from 'framer-motion'; import { useRef, useState } from 'react'; import { Brain, Layers, Zap, Globe, Shield, Code } from 'lucide-react'; export default function Interactive3DSection() { const containerRef = useRef(null); const [mousePosition, setMousePosition] = useState({ x: 0, y: 0 }); const handleMouseMove = (e) => { const { clientX, clientY } = e; const { innerWidth, innerHeight } = window; const x = (clientX - innerWidth / 2) / 25; const y = (clientY - innerHeight / 2) / 25; setMousePosition({ x, y }); }; const features = [ { icon: , title: "Neural Processing", description: "Advanced AI algorithms that learn from user behavior" }, { icon: , title: "3D Depth", description: "Immersive three-dimensional interface layers" }, { icon: , title: "Real-time", description: "Instant response with zero latency" }, { icon: , title: "Global CDN", description: "Content delivered from nearest edge location" }, { icon: , title: "Secure", description: "Enterprise-grade encryption and security" }, { icon: , title: "Developer API", description: "Easy integration with your existing stack" } ]; return ( AI-Powered Features Move your mouse to experience our interactive 3D feature showcase {/* Background Elements */}