import React from "react"; import { Navigation } from "../components/Navigation"; import { Footer } from "../components/Footer"; import { Button } from "../components/ui/button"; import { Badge } from "../components/ui/badge"; import { ArrowRight, Award, Calendar, Users, Star, Trophy, Shield } from "lucide-react"; export const AwardsCertifications = () => { const awards = [ { year: "2023", title: "Best Digital Transformation Company", organization: "Global Tech Awards", category: "Innovation Excellence", description: "Recognized for outstanding contributions to digital transformation across multiple industries.", icon: Trophy, color: "from-yellow-400 to-yellow-600" }, { year: "2023", title: "Client Satisfaction Excellence", organization: "Business Excellence Institute", category: "Customer Experience", description: "Achieved 98% client satisfaction rating based on independent third-party assessment.", icon: Star, color: "from-blue-400 to-blue-600" }, { year: "2022", title: "AI Innovation Leader", organization: "AI & ML Conference", category: "Artificial Intelligence", description: "Leading innovation in AI-powered business solutions and machine learning implementations.", icon: Award, color: "from-purple-400 to-purple-600" }, { year: "2022", title: "Top Mobile App Development Company", organization: "Mobile Excellence Awards", category: "Mobile Development", description: "Recognized for delivering exceptional mobile applications across iOS and Android platforms.", icon: Shield, color: "from-green-400 to-green-600" }, { year: "2021", title: "Fast-Growing Tech Company", organization: "Tech Growth Awards", category: "Business Growth", description: "Fastest growing development company in the digital transformation sector.", icon: Trophy, color: "from-[#E5195E] to-[#FF6B9D]" }, { year: "2021", title: "Best Workplace Culture", organization: "Great Place to Work", category: "Employee Experience", description: "Creating an exceptional work environment that fosters innovation and collaboration.", icon: Users, color: "from-orange-400 to-orange-600" } ]; const certifications = [ { name: "ISO 9001:2015", category: "Quality Management", description: "International standard for quality management systems ensuring consistent service delivery.", icon: Shield, validUntil: "2025" }, { name: "ISO 27001:2013", category: "Information Security", description: "International standard for information security management systems protecting client data.", icon: Shield, validUntil: "2025" }, { name: "AWS Partner", category: "Cloud Computing", description: "Amazon Web Services certified partner with expertise in cloud solutions and architecture.", icon: Award, validUntil: "2024" }, { name: "Microsoft Gold Partner", category: "Enterprise Solutions", description: "Microsoft's highest level of partnership demonstrating technical expertise and customer commitment.", icon: Award, validUntil: "2024" }, { name: "Google Cloud Partner", category: "Cloud & AI", description: "Google Cloud certified partner specializing in AI/ML and cloud infrastructure solutions.", icon: Award, validUntil: "2024" }, { name: "Agile & Scrum Certified", category: "Project Management", description: "Team certified in Agile methodologies and Scrum framework for efficient project delivery.", icon: Users, validUntil: "2024" } ]; return (
{/* Hero Section */}
Recognition & Trust

Awards & Certifications

Our commitment to excellence is recognized by industry leaders and validated through prestigious certifications that ensure the highest standards of quality and security.

{/* Awards Section */}

Industry Awards

Recognition from leading organizations for our innovation, quality, and client satisfaction

{awards.map((award, index) => (
{/* Award Icon */}
{award.year}
{/* Content */}

{award.title}

{award.organization}

{award.category}

{award.description}

))}
{/* Certifications Section */}

Certifications & Standards

Validated expertise and compliance with international standards ensuring quality and security

{certifications.map((cert, index) => (

{cert.name}

Valid until {cert.validUntil}

{cert.category}

{cert.description}

))}
{/* Stats Section */}

Recognition by Numbers

{[ { number: "15+", label: "Industry Awards", color: "from-yellow-400 to-yellow-600" }, { number: "10+", label: "Certifications", color: "from-blue-400 to-blue-600" }, { number: "98%", label: "Client Satisfaction", color: "from-green-400 to-green-600" }, { number: "5+", label: "Years of Excellence", color: "from-[#E5195E] to-[#FF6B9D]" } ].map((stat, index) => (
{stat.number}
{stat.label}
))}
{/* CTA Section */}

Experience Award-Winning Service

Partner with a recognized leader in digital transformation and experience the difference that excellence makes.

); };