<section class="compliance-section">
<div class="container">
<div class="section-header">
<h2>Certifications, Registrations & Government Recognitions</h2>
<p>
Surgestore is supported by a strong foundation of government registrations,
quality certifications, regulatory approvals, and industry memberships,
ensuring trust, compliance, and quality in every product supplied.
</p>
</div>
<div class="certification-grid">
<!-- Ministry of Commerce -->
<div class="cert-card">
<img src="/images/ministry-commerce.png"
alt="Ministry of Commerce and Industry India"
loading="lazy">
<h3>Ministry of Commerce & Industry</h3>
<p>Registered and operating under the framework of India's Ministry of Commerce and Industry.</p>
</div>
<!-- Delhi Chamber -->
<div class="cert-card">
<img src="/images/dcc.png"
alt="Delhi Chambers of Commerce Membership"
loading="lazy">
<h3>Delhi Chambers of Commerce</h3>
<p>Recognized member of Delhi Chambers of Commerce supporting business excellence.</p>
</div>
<!-- DGFT -->
<div class="cert-card">
<img src="/images/dgft.png"
alt="DGFT Registration"
loading="lazy">
<h3>DGFT Registered</h3>
<p>Authorized exporter registered with the Directorate General of Foreign Trade.</p>
</div>
<!-- MSME -->
<div class="cert-card">
<img src="/images/msme.png"
alt="MSME Registered Enterprise"
loading="lazy">
<h3>MSME Registered</h3>
<p>Government-recognized Micro, Small & Medium Enterprise.</p>
</div>
<!-- GST -->
<div class="cert-card">
<img src="/images/gst.png"
alt="GST Registered"
loading="lazy">
<h3>GST Registered</h3>
<p>Fully compliant with Goods and Services Tax regulations in India.</p>
</div>
<!-- Trademark -->
<div class="cert-card">
<img src="/images/trademark.png"
alt="Trademark Registered"
loading="lazy">
<h3>Trademark Protected</h3>
<p>Brand identity protected through registered trademark certification.</p>
</div>
<!-- Drug License -->
<div class="cert-card">
<img src="/images/drug-license.png"
alt="Drug License"
loading="lazy">
<h3>Drug License Holder</h3>
<p>Licensed to deal in healthcare and medical products in accordance with regulatory requirements.</p>
</div>
<!-- CDSCO -->
<div class="cert-card">
<img src="/images/cdsco.png"
alt="CDSCO Compliance"
loading="lazy">
<h3>CDSCO Compliance</h3>
<p>Compliant with applicable regulations of the Central Drugs Standard Control Organization.</p>
</div>
<!-- ISO 13485 -->
<div class="cert-card">
<img src="/images/iso13485.png"
alt="ISO 13485 Certified"
loading="lazy">
<h3>ISO 13485 Certified</h3>
<p>Quality Management System certified for medical devices.</p>
</div>
<!-- CE -->
<div class="cert-card">
<img src="/images/ce-mark.png"
alt="CE Mark"
loading="lazy">
<h3>CE Marked Products</h3>
<p>Products conforming to applicable European regulatory requirements.</p>
</div>
</div>
</div>
</section>
<style>
.compliance-section{
padding:80px 20px;
background:#f7f9fc;
font-family:Arial,Helvetica,sans-serif;
}
.container{
max-width:1400px;
margin:auto;
}
.section-header{
text-align:center;
margin-bottom:50px;
}
.section-header h2{
font-size:38px;
font-weight:700;
color:#1d2939;
margin-bottom:15px;
}
.section-header p{
max-width:900px;
margin:auto;
color:#667085;
line-height:1.8;
font-size:16px;
}
.certification-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
}
.cert-card{
background:#ffffff;
border-radius:20px;
padding:30px;
text-align:center;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
transition:all .3s ease;
border:1px solid #eef2f6;
}
.cert-card:hover{
transform:translateY(-8px);
box-shadow:0 20px 40px rgba(0,0,0,0.12);
}
.cert-card img{
width:130px;
height:130px;
object-fit:contain;
margin-bottom:20px;
filter:contrast(110%) saturate(110%);
}
.cert-card h3{
font-size:20px;
color:#1d2939;
margin-bottom:12px;
font-weight:700;
}
.cert-card p{
font-size:15px;
color:#667085;
line-height:1.7;
}
@media(max-width:768px){
.section-header h2{
font-size:28px;
}
.cert-card{
padding:25px;
}
.cert-card img{
width:110px;
height:110px;
}
}
</style>