:root{
    --primary:#e60a19;
    --dark:#1f1f1f;
    --text:#555;
    --light:#f8f8f8;
    --border:#ececec;
    --radius:12px;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:"Poppins",Arial,sans-serif;
    color:var(--dark);
    line-height:1.8;
}

.about-container{
    width:1200px;
    max-width:92%;
    margin:auto;
}

.about-section{
    padding:90px 0;
}

.section-tag{
    color:var(--primary);
    font-size:14px;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:2px;
    margin-bottom:15px;
}

.section-title{
    font-size:42px;
    font-weight:700;
    margin-bottom:25px;
}

.section-desc{
    font-size:17px;
    color:#666;
}

.about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}

.about-image img{
    width:100%;
    border-radius:var(--radius);
}

.about-text p{
    margin-bottom:20px;
    color:var(--text);
}

.about-feature{
    margin-top:35px;
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}

.feature-box{
    background:#fff;
    border:1px solid var(--border);
    border-radius:10px;
    padding:22px;
}

.feature-box h4{
    margin-bottom:10px;
    color:var(--dark);
}

.feature-box p{
    font-size:14px;
    color:#777;
}

.video-section{
    background:var(--light);
}

.video-grid{
    display:grid;
    grid-template-columns:1fr 1.2fr;
    gap:60px;
    align-items:center;
}

.video-content p{
    margin-bottom:20px;
}

.video-box{
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.video-box video{
    width:100%;
    display:block;
}

.application-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
    margin-top:50px;
}

.application-card{
    background:#fff;
    border:1px solid var(--border);
    border-radius:12px;
    overflow:hidden;
    transition:.3s;
}

.application-card:hover{
    transform:translateY(-6px);
    box-shadow:0 12px 30px rgba(0,0,0,.08);
}

.application-card img{
    width: 100%;
    object-fit:cover;

}

.application-content{
    padding:25px;
}

.application-content h3{
    margin-bottom:12px;
    font-size:22px;
}

.application-content p{
    color:#777;
}

@media(max-width:992px){

.about-grid,
.video-grid{
grid-template-columns:1fr;
}

.application-grid{
grid-template-columns:1fr;
}

.about-feature{
grid-template-columns:1fr;
}

.section-title{
font-size:34px;
}

}



/* =========================
ABOUT BANNER
========================= */

.about-banner{


height:520px;

background:

linear-gradient(
90deg,
rgba(0,0,0,.75),
rgba(0,0,0,.25)
),

url("../images/about-banner.jpg");


background-size:cover;

background-position:center;

display:flex;

align-items:center;


}




.about-banner-overlay{

width:100%;

}



.banner-content{

max-width:850px;

color:#fff;

}



.banner-tag{


font-size:14px;

letter-spacing:3px;

font-weight:600;

color:#e60a19;

margin-bottom:20px;

text-transform:uppercase;


}



.banner-content h1{


font-size:40px;

font-weight:750;

line-height:1.15;

margin-bottom:25px;


}




.banner-content p{


font-size:20px;

color:#eee;

max-width:720px;

line-height:1.7;


}





@media(max-width:900px){


.about-banner{

height:420px;

}



.banner-content h1{


font-size:36px;


}



.banner-content p{


font-size:16px;


}



}


/* PRODUCT CATEGORIES */
.product-grid{

display:grid;
grid-template-columns:repeat(5,1fr);
gap:25px;
margin-top:50px;

}

.product-card{

background:#fff;
border-radius:12px;
overflow:hidden;
border:1px solid #ececec;
transition:.35s;

}

.product-card:hover{

transform:translateY(-8px);
box-shadow:0 15px 35px rgba(0,0,0,.08);

}

.product-card img{

height:220px;
object-fit:cover;

}

.product-info{

padding:25px;

}

.product-info h3{

margin-bottom:12px;
font-size:22px;

}

.product-info p{

color:#777;
font-size:15px;

}

@media(max-width:992px){

.product-grid{

grid-template-columns:1fr;

}

}


/* WHY CHOOSE US  */

.why-grid{

display:grid;
grid-template-columns:repeat(2,1fr);
gap:30px;
margin-top:50px;

}

.why-item{

padding:35px;
border-left:4px solid #e60a19;
background:#fafafa;

}

.why-item h3{

margin-bottom:15px;
font-size:24px;

}

.why-item p{

color:#666;

}

@media(max-width:992px){

.why-grid{

grid-template-columns:1fr;

}

}

/* FACTORY GALLERY */

.factory-grid{

display:grid;
grid-template-columns:repeat(4,1fr);
gap:20px;
margin-top:50px;

}

.factory-grid img{

border-radius:12px;
height:260px;
object-fit:cover;
transition:.35s;

}

.factory-grid img:hover{

transform:scale(1.03);

}

@media(max-width:992px){

.factory-grid{

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

}

}

@media(max-width:600px){

.factory-grid{

grid-template-columns:1fr;

}

}

/* CERTIFICATES */

.certificate-grid{

display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
margin-top:50px;

}

.certificate-item{

text-align:center;
padding:35px;
background:#fff;
border:1px solid #ececec;
border-radius:12px;

}

.certificate-item img{

height:200px;
width:100%;
margin:auto;
margin-bottom:25px;
object-fit:contain;

}

.certificate-item h3{

margin-bottom:10px;

}

.certificate-item p{

color:#777;

}

@media(max-width:992px){

.certificate-grid{

grid-template-columns:1fr;

}

}

/* GLOBAL MARKET */

.global-grid{

display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:center;

}

.market-list{

margin-top:30px;
padding-left:20px;

}

.market-list li{

margin-bottom:12px;
color:#555;

}

@media(max-width:992px){

.global-grid{

grid-template-columns:1fr;

}

}

/* CONTACT CTA */

.contact-box{

background:#111;
border-radius:16px;
padding:70px;
text-align:center;
color:#fff;

}

.contact-box h2{

font-size:42px;
margin:20px 0;

}

.contact-box p{

color:#ddd;
max-width:760px;
margin:0 auto 40px;

}

.contact-btns{

display:flex;
justify-content:center;
gap:20px;

}

.primary-btn{

display:inline-block;
padding:15px 38px;
background:#e60a19;
color:#fff;
text-decoration:none;
border-radius:6px;
font-weight:600;

}

.primary-btn:hover{

background:#c10814;

}

.outline-btn{

display:inline-block;
padding:15px 38px;
border:2px solid #fff;
color:#fff;
text-decoration:none;
border-radius:6px;
font-weight:600;

}

.outline-btn:hover{

background:#fff;
color:#111;

}

@media(max-width:768px){

.contact-box{

padding:45px 25px;

}

.contact-box h2{

font-size:30px;

}

.contact-btns{

flex-direction:column;

}

}
