'use client' import { motion } from 'framer-motion' import { Card, CardContent } from '@/components/ui/card' import { Badge } from '@/components/ui/badge' import { Wheat, Shield, Award, Leaf } from 'lucide-react' const values = [ { title: "Rice Purity", description: "Every grain of Basmati and Sella rice is carefully selected and tested for maximum purity.", icon: Shield }, { title: "Farm Fresh Rice", description: "Direct sourcing from Punjab & Haryana's finest rice farms ensures authentic quality.", icon: Wheat }, { title: "Rice Excellence", description: "Committed to delivering the finest aged Basmati and premium Sella rice varieties.", icon: Award }, { title: "Sustainable Rice Farming", description: "Supporting eco-friendly rice cultivation practices for healthier communities and environment.", icon: Leaf } ] export default function OurValues() { return (
{/* Section Header */} Our Rice Values

The Quality of Kashhmna Premium

Our dedication to rice excellence is built on four core principles that ensure every grain of Basmati and Sella rice meets the highest standards.

{/* Values Grid - 4 columns on desktop */}
{values.map((value, index) => { const IconComponent = value.icon return ( {/* Icon */}
{/* Title */}

{value.title}

{/* Description */}

{value.description}

) })}
{/* Bottom CTA */}

Experience the difference that our values make in every grain

🌾 Farm to Table 🛡️ Quality Certified 🌱 Eco-Friendly
) }