'use client' import { Badge } from '@/components/ui/badge' import { Wheat, Shield, Award, ArrowRight, Star, CheckCircle, Users, TrendingUp } from 'lucide-react' import { Button } from '../ui/button' import Image from 'next/image' import Link from 'next/link' import { motion } from 'framer-motion' export default function AboutSection() { const stats = [ { number: "100%", label: "Customer Satisfaction", icon: Award, color: "from-amber-500 to-yellow-600" }, { number: "10K+", label: "Rice Loving Families", icon: Users, color: "from-emerald-500 to-green-600" }, { number: "8000+", label: "Tons Processed Monthly", icon: TrendingUp, color: "from-orange-500 to-red-600" }, { number: "99%", label: "Pure & Natural Rice", icon: TrendingUp, color: "from-yellow-500 to-amber-600" } ] const features = [ "Direct sourcing from Punjab & Haryana rice belt", "Traditional aging process for Basmati rice", "Steam processing for premium Sella varieties", "Farm-to-table traceability and quality assurance" ] return (
{/* Modern gradient background with rice-inspired colors */}
{/* Section header with modern typography */}
Our Rice Heritage

From Golden Fields to {''} Your Kitchen

Bringing you the finest rice varieties from the fertile plains of Northern India, aged to perfection and processed with traditional care

{/* Main content grid */}
{/* Visual side - First on mobile, second on desktop */} {/* Main image with modern styling - 16:9 on mobile, original aspect on desktop */}
Premium food processing facility {/* Floating quality badge */}
Premium Certified
{/* Decorative elements */}
{/* Content side - Second on mobile, first on desktop */} {/* Story */}

Two Decades of Trusted Excellence

Padmaaja Rasooi has revolutionized food processing with unwavering commitment to quality and authenticity.

We've built lasting relationships with farmers, ensuring every product reflects our dedication to excellence and the highest standards of food safety.

{/* Feature list */}
{features.map((feature, index) => (
{feature}
))} {/* CTA */}
{/* Stats section */} {stats.map((stat, index) => (
{stat.number}
{stat.label}
))}
) }