);
/* Render a headline string with optional **bold** and *italic* (italic = brand-colored, underlined). */
const renderRich = (str) => {
if (!str) return null;
// Split on **bold** then on *italic*
const parts = [];
let rest = str;
let key = 0;
const re = /(\*\*[^*]+\*\*|\*[^*]+\*)/g;
let last = 0; let m;
while ((m = re.exec(str)) !== null) {
if (m.index > last) parts.push(str.slice(last, m.index));
const tok = m[0];
if (tok.startsWith("**")) parts.push({tok.slice(2,-2)});
else parts.push({tok.slice(1,-1)});
last = m.index + tok.length;
}
if (last < str.length) parts.push(str.slice(last));
return parts;
};
/* ====== Hero ====== */
const Hero = ({ data, leadFormRef, formProps, headline }) => {
const hl = headline || "Premium *uPVC Windows* & Doors for Indian homes that last";
return (
India's #1 uPVC Windows Manufacturer • Bangalore
{renderRich(hl)}
Energy-efficient, soundproof & weather-tested for 25,000+ hours. Designed
and manufactured in Bangalore using European-grade raw material.
20+ years of trust.
);
/* ====== Why uPVC ====== */
const Why = () => {
const benefits = [
{ icon: , title: "Energy Efficient", desc: "Multi-chambered profiles + double glazing keep your home up to 8°C cooler, slashing AC bills." },
{ icon: , title: "Soundproof", desc: "Up to 42dB sound insulation. Sleep better even on busy roads — perfect for Bangalore traffic." },
{ icon: , title: "Dust & Weather Proof", desc: "EPDM gasket seal blocks dust, monsoon water and pollen. Built for Indian climate extremes." },
{ icon: , title: "Maintenance Free", desc: "No painting, no rusting, no termites. Wipe with a damp cloth — looks new for decades." },
{ icon: , title: "100% Lead Free", desc: "Made with European-grade raw material from Fortune 500 suppliers. Safe for your family." },
{ icon: , title: "Surpasses EU Standards", desc: "25,000+ hours of weather testing. Outperforms European quality benchmarks in every test." },
];
return (
Why Choose uPVC
Six reasons families switch to V-Tech uPVC
Wooden frames warp. Aluminium conducts heat. uPVC does neither — and it lasts 30+ years.
From luxury residential towers to hospitals, malls and IT parks across India.
{clients.map((src, i) => (
))}
);
};
/* Multi-color "G" mark used by Google Reviews widgets. */
const GoogleG = ({ size = 18 }) => (
);
/* ====== Reviews — Google-Reviews style ====== */
const Reviews = () => {
const reviews = [
{ name: "Priya Sharma", place: "Whitefield", when: "2 weeks ago", color: "#1a73e8", q: "The traffic noise on Old Airport Road used to keep us up. After V-Tech installed sliding windows in the bedroom, it's completely silent. Genuine quality." },
{ name: "Anand Reddy", place: "HSR Layout", when: "a month ago", color: "#34a853", q: "Got quotes from 3 vendors. V-Tech wasn't the cheapest but the build quality, German hardware, and 10-year warranty made the choice easy. Installation was super clean." },
{ name: "Meera Iyer", place: "Sarjapur Road", when: "3 weeks ago", color: "#ea4335", q: "Monsoon used to flood our balcony. We replaced 11 windows and the French door with V-Tech. Zero leakage in two monsoons. Highly recommend." },
{ name: "Karthik V.", place: "Indiranagar", when: "5 days ago", color: "#fbbc05", q: "The tilt-and-turn windows are a game changer. Easy to clean from inside, locks properly, and the wooden finish looks premium. Worth every rupee." },
{ name: "Sunita Rao", place: "Jayanagar", when: "2 months ago", color: "#9c27b0", q: "Their site visit was on time, the quote was transparent — no hidden costs. Factory tour convinced us. AC bills came down nearly 30% after installation." },
{ name: "Rohan Mehta", place: "Hebbal", when: "a month ago", color: "#0e4b8c", q: "I had aluminium windows before and they used to rust every monsoon. Switched to V-Tech uPVC across the villa. Two years in — looks brand new." },
];
return (
);
};
/* ====== FAQ ====== */
const FAQ = () => {
const items = [
{ q: "How long does the entire process take?", a: "From your first site visit to final installation, the typical timeline is 18–21 days. This includes measurement, design approval, custom manufacturing in our Bengaluru factory, and on-site installation by our certified team." },
{ q: "Are V-Tech uPVC windows costlier than aluminium?", a: "On day one, uPVC windows are about 10–20% costlier than aluminium. But over a 15-year period, the lower energy bills (better insulation), zero maintenance, and longer lifespan make uPVC significantly cheaper. We provide a transparent ROI calculation during your site visit." },
{ q: "What warranty do you provide?", a: "We offer a 10-year manufacturer warranty on the uPVC profile and 2 years on hardware (locks, hinges, rollers). Glass is covered against manufacturing defects. Our team also provides free annual service for the first two years." },
{ q: "Can I see your products before deciding?", a: "Yes! Visit our showroom at M.N.S. Arcade, Rajajinagar, Bangalore — Dr. Rajkumar Road, 6th Block. You can also tour our manufacturing facility at Kalenahalli. We strongly recommend visiting before finalizing." },
{ q: "Do you handle removal of old windows?", a: "Absolutely. Our installation team safely removes existing windows, disposes of debris, and installs the new ones — no separate contractor needed. We also fix any wall damage post-installation." },
{ q: "Which areas do you serve?", a: "We serve all of Bangalore — Whitefield, Sarjapur, Electronic City, HSR, Indiranagar, Hebbal, Jayanagar, Rajajinagar and surroundings. We also undertake large projects across Karnataka and pan-India through our developer network." },
];
const [open, setOpen] = useState(0);
return (