import { motion } from 'framer-motion'; import { FaPiggyBank, FaHandHoldingUsd, FaCreditCard, FaLock, FaMoneyCheckAlt, FaMobileAlt } from 'react-icons/fa'; import { services } from '../data/siteData'; const iconMap = { FaPiggyBank, FaHandHoldingUsd, FaCreditCard, FaLock, FaMoneyCheckAlt, FaMobileAlt }; const ServicesSection = () => { const containerVariants = { hidden: { opacity: 0 }, visible: { opacity: 1, transition: { staggerChildren: 0.1 } } }; const cardVariants = { hidden: { opacity: 0, y: 50 }, visible: { opacity: 1, y: 0, transition: { duration: 0.6, ease: "easeOut" } } }; return (
{/* Background Decorations */}
{/* Section Header */} Our Services

Financial Solutions for{' '} Rural Communities

Comprehensive banking and credit services designed specifically for farmers and rural entrepreneurs

{/* Services Grid */} {services.map((service, index) => { const IconComponent = iconMap[service.icon]; return ( {/* Card */}
{/* Gradient Background on Hover */}
{/* Icon */} {IconComponent && ( )} {/* Title */}

{service.title}

{/* Description */}

{service.description}

{/* Features List */}
    {service.features.map((feature, idx) => (
    {feature}
    ))}
{/* Decorative Corner */}
{/* Bottom Border Animation */}
); })}
{/* Call to Action */}

Need help choosing the right service for you?

Talk to Our Experts
); }; export default ServicesSection;