/* SFS website UI kit — Company / About page */ const DSCo = window.SFSDesignSystem_95f437; const { SectionLabel: SLCo, Breadcrumb: BcCo, Stat: StatCo, Button: BtnCo, ArrowLink: ALCo } = DSCo; const MILESTONES = [ { y: '1986', points: ['Indo Schöttle is incorporated', '1st product family (Engine Valve Collets)', 'Single Customer'] }, { y: '1993', points: ['2nd product line (Rocker Arm Screws)', '30 employees'] }, { y: '1996', points: ['Established as a premier OEM supplier', 'Development of precision machined parts', '3rd product line introduced (Turbocharger Parts)'] }, { y: '1999', points: ['100% Export Unit (EOU) established', 'QS 9000 certification'] }, { y: '2002', points: ['4th product family started (Fuel System Parts and Assemblies)'] }, { y: '2004', points: ['3rd manufacturing plant started in the EOU certification', 'ISO 14001 certification'] }, { y: '2008', points: ['Cold Forming started in Pune, Maharashtra'] }, { y: '2011', points: ['Honaga Plant set up, Belagavi, Karnataka'] }, { y: '2012', points: ['SEZ Unit, Belagavi', 'Partnership with SFS Intec, Switzerland'] }, { y: '2015', points: ['Acquired plant and machinery of a European Company'] }, { y: '2016', points: ['Brand identity changed', 'Member of the SFS Group'] }, { y: '2018', points: ['Entered new segments of Aerospace and Emission System Components'] }, { y: '2021', points: ['Becomes part of the SFS Group, a worldwide precision-components leader.'] }, ]; const TEAM = [ { img: window.SFS_ASSET('../assets/team-vijay-pusalkar.jpg'), name: 'Mr. Vijay Pusalkar', role: 'Chairman Emeritus' }, { img: window.SFS_ASSET('../assets/team-prashant-kore.jpg'), name: 'Mr. Prashant Kore', role: 'Managing Director · Member of SFS India Board' }, { img: window.SFS_ASSET('../assets/team-paras-shah.jpg'), name: 'Mr. Paras Shah', role: 'CFO & VP' }, ]; const CLIENTS = Array.from({ length: 24 }, (_, i) => window.SFS_ASSET(`../assets/clients/logo${i + 1}.jpg`)); function CompanyPage({ onNavigate }) { const tlRef = React.useRef(null); React.useEffect(() => window.SFSTimelineProgress(tlRef.current), []); return (
SFS Group India

About SFS Group India

Precision With Heritage

Formerly Indo Schöttle and now part of the SFS Group, we manufacture application-critical precision components for the automotive, aerospace and industrial sectors from our plants in Pune and Belgaum.

Cold forming and precision machining have been our base technologies for decades — paired with matched assembly and rigorous metrology, they let us deliver parts that fulfil mission-critical functions, mostly unnoticed.

Our history
{/* Stats */}
{/* Milestones */}
Milestones
{MILESTONES.map((m) => (
{m.y}
    {m.points.map((pt, i) =>
  • {pt}
  • )}
))}
{/* Chairman message */}
From the Director's Desk
Director
“Our commitment to precision is matched only by our commitment to our customers and our people. As part of the SFS Group, we combine global engineering excellence with deep local expertise — and we are only getting started.”
SFS Group India
Director's Message
{/* Leadership */}
Our Leadership
{TEAM.map((t) => (
{t.name}

{t.name}

{t.role}
))}
{/* Clients */}
Trusted by Industry Leaders
{CLIENTS.map((c, i) => (
Client logo
))}
{/* CTA */}

Build With a Precision Partner

From prototype to series production — let's solve your manufacturing challenge.

onNavigate('contact')}>Get in Touch onNavigate('capabilities')}>Our Capabilities
); } Object.assign(window, { SFSCompanyPage: CompanyPage });