import React, { useState, useEffect } from 'react'; import { Search, Menu, X, ChevronRight, ChevronDown, MessageCircle, Globe, Truck, CheckCircle2, Star, ArrowRight, ShieldCheck, Zap, PhoneCall, Mail, MapPin, Building2, PackageCheck, Award, Clock, Send, Users, Factory } from 'lucide-react'; const App = () => { const [scrolled, setScrolled] = useState(false); const [isMenuOpen, setIsMenuOpen] = useState(false); const [showExpert, setShowExpert] = useState(false); const [openFaq, setOpenFaq] = useState(null); // Consolidated Lead Form State const [leadData, setLeadData] = useState({ type: 'Domestic', category: '', product: '', location: '', countryPort: '', name: '', mobile: '', email: '', timeline: 'Immediately' }); const companyData = { name: "Paramount Threads Pvt. Ltd", gst: "27AACCP3558M1ZZ", phone1: "+91 93240 10422", phone2: "+91 81696 53538", email: "ptpl_80@rediffmail.com", address: "A/122, Shanti Industrial Estate, Mulund (W), Mumbai- 400080", waNumber: "919324010422" }; const productMap = { "Polyester-Spun Polyester": ["Standard Spun", "High Tenacity", "Industrial Grade"], "Polyester Core Spun": ["Poly-Poly Core", "Poly-Cotton Core", "Heavy Duty Core"], "Cotton RFD": ["Premium RFD Cotton", "Organic RFD", "Eco-Friendly Base"], "Continuous Filament Thread": ["Lustrous Filament", "Textured Filament", "Embroidery Special"] }; const domesticCities = ["Ahmedabad", "Mumbai", "Kolhapur", "Amravati", "Indore", "Surat", "Vapi", "Umargaon", "Ranchi", "Delhi", "Kolkata", "Others"]; const internationalContinents = ["Africa (Kenya/Mombasa)", "Asia", "Europe", "North America", "Middle East"]; useEffect(() => { const handleScroll = () => setScrolled(window.scrollY > 20); window.addEventListener('scroll', handleScroll); const timer = setTimeout(() => setShowExpert(true), 5000); return () => { window.removeEventListener('scroll', handleScroll); clearTimeout(timer); }; }, []); const handleWhatsAppLead = (e) => { if(e) e.preventDefault(); const text = `*New Business Inquiry*%0A%0A*Interest:* ${leadData.type}%0A*Category:* ${leadData.category}%0A*Product:* ${leadData.product}%0A*Location:* ${leadData.location}${leadData.countryPort ? ` (${leadData.countryPort})` : ''}%0A*Timeline:* ${leadData.timeline}%0A%0A*Name:* ${leadData.name}%0A*Mobile:* ${leadData.mobile}`; window.open(`https://wa.me/${companyData.waNumber}?text=${text}`, '_blank'); }; const scrollToId = (id) => { const element = document.getElementById(id); if (element) { element.scrollIntoView({ behavior: 'smooth' }); setIsMenuOpen(false); } }; return (
{/* --- TOP EXPORT FLOATER --- */}

Logistics Hub

FCL or LCL Specialist

Direct support for full containers to Mombasa and key global ports.

{/* --- NAVIGATION --- */} {/* --- HERO SECTION --- */}
Premium Industrial Standards

The Gold Standard
of Sewing Threads.

Engineered for endurance. Trusted by global fashion houses and heavy industrial units for over 40 years.

40+

Years Mastery

12+

Hubs Covered

24/7

Export Support

{/* --- UNIFIED PREMIUM LEAD FORM --- */}

Quick Requirement Tool

{leadData.type === 'Import' ? (
setLeadData({...leadData, countryPort: e.target.value})} />
) : (
)}
setLeadData({...leadData, name: e.target.value})} /> setLeadData({...leadData, mobile: e.target.value})} />

Response Time: Within 15 Minutes

{/* --- USP SCROLLER --- */}
{[1, 2, 3].map(i => (
Exporting to Kenya & Mombasa GST: {companyData.gst} Full Container & LCL Experts 40 Years Industry Mastery
))}
{/* --- PRODUCT SHOWCASE --- */}

Core Range

Quality Across Categories

{[ { title: "Polyester-Spun", desc: "Engineered for high-speed industrial sewing machines.", img: "https://images.unsplash.com/photo-1520032484190-e5ef81d87978?auto=format&fit=crop&q=80&w=600" }, { title: "Polyester Core Spun", desc: "Superior strength for structural garment seams.", img: "https://images.unsplash.com/photo-1605518216938-7c31b7b14ad0?auto=format&fit=crop&q=80&w=600" }, { title: "Cotton RFD", desc: "Premium Ready-for-Dyeing base for custom textile projects.", img: "https://images.unsplash.com/photo-1528291151377-165f5107c82a?auto=format&fit=crop&q=80&w=600" }, { title: "Continuous Filament", desc: "High-lustre filament for decorative and high-stress use.", img: "https://images.unsplash.com/photo-1620799140408-edc6dcb6d633?auto=format&fit=crop&q=80&w=600" } ].map((item, idx) => (
{item.title}

{item.title}

{item.desc}

))}
{/* --- ABOUT US / DIRECTORS --- */}

The Visionaries Behind
Paramount.

A legacy spanning four decades, built on the principles of integrity, employee value, and a relentless focus on global textile innovation.

Legacy

40 Year Trust

Reach

Global Exports

Manish Shah
Harsh Shah
Photo

Manish Shah

Founder & Managing Director

"With 40 years of profound expertise, Manish Shah built Paramount from scratch. His mission centers on Great Heights through Employee Values and giving back to society."

Photo

Harsh Shah

Director of Global Vision

"Driving the company globally, Harsh Shah inherits his father's vast experience to scale our core values across international textile markets with a modern vision."

{/* --- FAQ SECTION --- */}

Frequently Asked Questions

Quick Answers for Industrial Partners

{[ { q: "What is the lead time for export to Mombasa?", a: "Standard sea-freight shipments take 15-20 days. Our export team manages all documentation for seamless Kenya port clearance." }, { q: "Do you offer sample testing cones?", a: "Yes, we provide 1000m or 5000m sample cones for industrial machine testing upon initial verification of business inquiry." }, { q: "What is your MOQ for domestic supply?", a: "For major cities like Surat, Ahmedabad, and Mumbai, we maintain high stock levels. Minimum orders typically start from 1 standard carton per variant." }, { q: "Is GST billing provided for all purchases?", a: "Absolutely. As a registered Pvt Ltd firm (27AACCP3558M1ZZ), all invoices are fully GST-compliant for input credit." } ].map((faq, i) => (
{faq.a}
))}
{/* --- BOTTOM LEAD FORM --- */}

Request a
Bulk Quote.

Connect with our domestic or export specialists for tailored pricing on bulk orders.

{[ 'Immediate WhatsApp Support', 'Customized Color Dyeing Support', 'FCL / LCL Container Expertise', 'Official GST Billing' ].map(t => (
{t}
))}
setLeadData({...leadData, name: e.target.value})} /> setLeadData({...leadData, mobile: e.target.value})} />
{/* --- FOOTER --- */} {/* --- POPUPS & FLOATERS --- */} {/* Expert Assistant Popup (RELOCATED TO LEFT) */} {showExpert && (
Expert

Aditi Sharma

Senior Consultant

"Hi! I can help you with domestic supply or international export logistics. What's on your mind?"

)} {/* WhatsApp Floater */} {/* Custom Global Styles */}