/*====================================================
        ABOUT SECTION
====================================================*/

.aboutPreview{

background:#fafafa;

}

.aboutGrid{

display:grid;

grid-template-columns:2fr 1fr;

gap:70px;

align-items:center;

}

.aboutGrid h3{

font-size:38px;

margin-bottom:25px;

color:#111;

}

.aboutGrid p{

margin-bottom:25px;

font-size:18px;

line-height:1.9;

}


/****************************************************
EXPERIENCE CARD
****************************************************/

.experienceCard{

background:#fff;

padding:60px 40px;

border-radius:30px;

text-align:center;

box-shadow:0 25px 70px rgba(0,0,0,.08);

transition:.35s;

}

.experienceCard:hover{

transform:translateY(-12px);

}

.experienceCard h1{

font-size:90px;

color:#d60000;

margin-bottom:10px;

}

.experienceCard h4{

margin-bottom:20px;

}


/****************************************************
STATISTICS
****************************************************/

.stats{

background:#d60000;

color:#fff;

}

.stats .container{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:40px;

}

.stat{

text-align:center;

}

.stat h1{

font-size:72px;

margin-bottom:15px;

color:#fff;

}

.stat p{

color:#fff;

font-size:18px;

}


/****************************************************
PRODUCT CATEGORY
****************************************************/

.categorySection{

background:#fff;

}

.categoryGrid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(340px,1fr));

gap:35px;

}

.categoryCard{

background:#fff;

border-radius:25px;

overflow:hidden;

box-shadow:0 20px 45px rgba(0,0,0,.08);

transition:.35s;

}

.categoryCard:hover{

transform:translateY(-15px);

box-shadow:0 35px 70px rgba(0,0,0,.14);

}

.categoryCard img{

width:100%;

height:320px;

object-fit:cover;

transition:.45s;

}

.categoryCard:hover img{

transform:scale(1.08);

}

.categoryContent{

padding:35px;

}

.categoryContent h3{

margin-bottom:15px;

}

.categoryContent p{

margin-bottom:20px;

}

.categoryContent a{

font-weight:700;

color:#d60000;

}


/****************************************************
INDUSTRIES
****************************************************/

.industries{

background:#f7f7f7;

}

.industryGrid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

gap:30px;

}

.industryCard{

background:#fff;

padding:45px 30px;

border-radius:25px;

text-align:center;

transition:.35s;

box-shadow:0 15px 35px rgba(0,0,0,.06);

}

.industryCard:hover{

transform:translateY(-12px);

}

.industryCard i{

font-size:55px;

margin-bottom:25px;

color:#d60000;

}

.industryCard h3{

margin-bottom:15px;

}


/****************************************************
WHY US
****************************************************/

.whyUs{

background:#fff;

}

.whyGrid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(320px,1fr));

gap:35px;

}

.whyCard{

padding:45px;

border-radius:25px;

background:#fafafa;

transition:.35s;

}

.whyCard:hover{

background:#d60000;

transform:translateY(-12px);

}

.whyCard:hover h3,

.whyCard:hover p,

.whyCard:hover i{

color:#fff;

}

.whyCard i{

font-size:55px;

margin-bottom:25px;

color:#d60000;

transition:.35s;

}

.whyCard h3{

margin-bottom:20px;

transition:.35s;

}

.whyCard p{

transition:.35s;

}


/****************************************************
CTA
****************************************************/

.cta{

background:linear-gradient(135deg,#d60000,#9e0000);

color:#fff;

text-align:center;

}

.cta h2{

color:#fff;

margin-bottom:20px;

}

.cta p{

color:#fff;

max-width:650px;

margin:auto;

margin-bottom:40px;

}

.ctaButtons{

display:flex;

justify-content:center;

gap:20px;

flex-wrap:wrap;

}


/****************************************************
CONTACT BANNER
****************************************************/

.contactBanner{

background:#111;

color:#fff;

text-align:center;

}

.contactBanner h2{

color:#fff;

margin-bottom:20px;

}

.contactBanner p{

color:#ddd;

margin-bottom:35px;

}

.contactButtons{

display:flex;

justify-content:center;

gap:20px;

flex-wrap:wrap;

}


/****************************************************
MAP
****************************************************/

.location{

background:#f8f8f8;

}

.locationGrid{

display:grid;

grid-template-columns:1fr 1.4fr;

gap:60px;

align-items:center;

}

.locationInfo{

background:#fff;

padding:45px;

border-radius:25px;

box-shadow:0 20px 50px rgba(0,0,0,.08);

}

.locationInfo h3{

margin-bottom:30px;

}

.locationInfo p{

margin-bottom:18px;

display:flex;

gap:15px;

align-items:flex-start;

}

.locationInfo i{

color:#d60000;

width:25px;

}

.mapContainer iframe{

width:100%;

height:500px;

border-radius:25px;

border:none;

box-shadow:0 20px 60px rgba(0,0,0,.12);

}


/****************************************************
RESPONSIVE
****************************************************/

@media(max-width:1100px){

.aboutGrid,

.locationGrid{

grid-template-columns:1fr;

}

.stats .container{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.stats .container{

grid-template-columns:1fr;

}

.stat h1{

font-size:50px;

}

.aboutGrid h3{

font-size:30px;

}

.categoryCard img{

height:240px;

}

.locationInfo{

padding:30px;

}

}