body {
font-family: 'Poppins', sans-serif;
margin: 0;
background: #fff;
}


.industries {
text-align: center;
padding: 40px 20px;
}


.industries h2 {
font-size: 24px;
margin-bottom: 30px;
font-weight: 700;
}


.grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
gap: 30px;
max-width: 1000px;
margin: 0 auto;
}


.item {
background: #fff;
padding: 15px;
border-radius: 10px;

transition: transform 0.3s ease;
}


.item:hover {
transform: translateY(-5px);
}


.item img {
width: 70px;
height: 70px;
object-fit: contain;
margin-bottom: 10px;
border-radius: 50%;
padding: 10px;
border: 2px solid #d0d0d0;
background: #f9f9f9;
}


.item p {
margin: 0;
font-size: 14px;
font-weight: 600;
}