.why-choose-us {
text-align: center;
padding: 80px 20px;
background: linear-gradient(to bottom, #f8f9fa, #ffffff);
}
.section-title {
font-size: 42px;
font-weight: 600;
margin-bottom: 50px;
color: #222;
font-family: 'Playfair Display', serif;
}
.hex-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
gap: 40px;
justify-items: center;
}
.hex {
background: #3e3e3e;
color: #fff;
clip-path: polygon(50% 0%, 93% 25%, 93% 75%, 50% 100%, 7% 75%, 7% 25%);
padding: 60px 20px;
width: 260px;
height: 260px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
transition: all 0.3s ease;
position: relative;
}
.hex:hover {
transform: translateY(-10px);
background: #2b2b2b;
}
.hex .icon {
background: #a5ffb3;
color: #222;
font-size: 30px;
width: 60px;
height: 60px;
line-height: 60px;
border-radius: 50%;
margin-bottom: 15px;
}
.hex h3 {
font-size: 18px;
font-weight: 700;
margin-bottom: 10px;
}
.hex p {
font-size: 14px;
line-height: 1.5;
color: #ddd;
}
<section class="why-choose-us">
<h2 class="section-title">Why Choose Us</h2>
<div class="hex-grid">
<div class="hex">
<div class="icon">βοΈ</div>
<h3>Proven Expertise</h3>
<p>Years of experience in manufacturing high-quality garments for global brands.</p>
</div>
<div class="hex">
<div class="icon">π±</div>
<h3>Sustainability Focus</h3>
<p>Environmentally responsible processes and certified compliance.</p>
</div>
<div class="hex">
<div class="icon">β
</div>
<h3>Strict Quality Control</h3>
<p>Ensuring every product meets international standards and buyer requirements.</p>
</div>
<div class="hex">
<div class="icon">π</div>
<h3>Business Growth</h3>
<p>Driving sustainable business growth through quality manufacturing and global partnerships.</p>
</div>
<div class="hex">
<div class="icon">β°</div>
<h3>On-Time Delivery</h3>
<p>Streamlined workflow to ensure consistent and timely shipment.</p>
</div>
<div class="hex">
<div class="icon">π¦</div>
<h3>Wide Product Range</h3>
<p>T-shirts, polos, hoodies, sweatshirts, tank tops, knit trousers, baby rompers, jackets, and medical wear.</p>
</div>
<div class="hex">
<div class="icon">π°</div>
<h3>Affordable Cost</h3>
<p>Delivering premium quality garments at the most affordable cost.</p>
</div>
<div class="hex">
<div class="icon">π</div>
<h3>Modern Infrastructure</h3>
<p>Equipped with advanced machinery and efficient production systems.</p>
</div>
</div>
</section>