/*
==================================================
SMITECH WEBSITE
FILE      : industries.css
SECTION   : Industries
==================================================
*/


.industries-section{

padding:80px 0;

background:#ffffff;

}



.industries-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:25px;

margin-top:40px;

}



.industry-card{

background:#f8fafc;

padding:30px;

border-radius:18px;

text-align:center;

transition:.3s ease;

border:1px solid #e5e7eb;

}



.industry-card:hover{

transform:translateY(-8px);

box-shadow:0 15px 35px rgba(0,0,0,.12);

}



.industry-icon{

font-size:35px;

color:#2563eb;

margin-bottom:20px;

}



.industry-card h3{

margin-bottom:15px;

font-size:22px;

}



.industry-card p{

color:#64748b;

line-height:1.7;

}




@media(max-width:992px){

.industries-grid{

grid-template-columns:repeat(2,1fr);

}

}



@media(max-width:600px){

.industries-grid{

grid-template-columns:1fr;

}

}