import React from 'react'; import { Icons } from './landing/constants'; const services = [ { title: "Commercial and Residential Repair and Diagnostics", desc: "Leak detection & shingle replacement in record time. We identify micro-fractures invisible to the naked eye.", icon: Icons.Home, color: "from-blue-400 to-blue-600", glow: "shadow-blue-500/20" }, // Commercial Development Removed as per request { title: "Lead & Data Solutions", desc: "Advanced lead scoring and real time storm tracking alerts. Know where the damage is before the phone rings. Powered by intelligent data models and predictive algorithms, we direct your reps and marketing into high-impact zones; where probability, urgency and opportunity align.", icon: Icons.Chart, color: "from-purple-400 to-indigo-600", glow: "shadow-purple-500/20" } ]; const Services = () => { // Simple Tilt Logic const handleMouseMove = (e) => { const card = e.currentTarget; const rect = card.getBoundingClientRect(); const x = e.clientX - rect.left; const y = e.clientY - rect.top; const centerX = rect.width / 2; const centerY = rect.height / 2; // Rotation calc (Max 5deg) const rotateX = ((y - centerY) / centerY) * -5; const rotateY = ((x - centerX) / centerX) * 5; card.style.transform = `perspective(1000px) rotateX(${rotateX}deg) rotateY(${rotateY}deg) scale(1.02)`; }; const handleMouseLeave = (e) => { e.currentTarget.style.transform = 'perspective(1000px) rotateX(0) rotateY(0) scale(1)'; }; return (

Our Core Services

Leveraging military-grade technology for civilian roofing applications.

{services.map((service, idx) => (
{/* Gradient Glow on Hover */}

{service.title}

{service.desc}

Explore Solution
))}
); }; export default Services;