*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial,Helvetica,sans-serif;
}


body{
color:#333;
line-height:1.6;
background:#fff;
}


header{

height:80px;
display:flex;
align-items:center;
justify-content:space-between;
padding:0 8%;
background:#ffffff;
box-shadow:0 2px 10px rgba(0,0,0,.08);
position:sticky;
top:0;
z-index:999;

}


.logo{

font-size:24px;
font-weight:bold;
color:#12355b;

}


nav a{

text-decoration:none;
color:#333;
margin:0 18px;
font-size:15px;

}


nav a:hover{

color:#f58220;

}



.whatsapp{

background:#25D366;
color:white;
padding:12px 25px;
border-radius:5px;
text-decoration:none;
font-weight:bold;

}




/* HERO */


.hero{

min-height:650px;

background:

linear-gradient(
rgba(0,0,0,.55),
rgba(0,0,0,.55)
),

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


background-size:cover;

background-position:center;

display:flex;

align-items:center;

padding:0 8%;

color:white;

}



.hero-content{

max-width:750px;

}


.hero h1{

font-size:48px;

line-height:1.2;

margin-bottom:25px;

}



.subtitle{

font-size:26px;

margin-bottom:20px;

}



.hero p{

font-size:18px;

}



.buttons{

margin-top:35px;

}



.btn{

display:inline-block;

background:#f58220;

color:white;

padding:15px 35px;

margin-right:15px;

text-decoration:none;

border-radius:5px;

font-weight:bold;

}


.btn.outline{

background:transparent;

border:2px solid white;

}



.advantages{

display:flex;

gap:30px;

margin-top:50px;

font-size:16px;

}






/* PRODUCTS */


section{

padding:80px 8%;

}


section h2{

text-align:center;

font-size:36px;

margin-bottom:45px;

color:#12355b;

}




.product-container{

display:flex;

gap:35px;

justify-content:center;

}


.product-card{

width:30%;

background:white;

box-shadow:0 5px 25px rgba(0,0,0,.12);

padding:25px;

border-radius:10px;

}



.product-image{

height:260px;

background:#f5f5f5;

display:flex;

align-items:center;

justify-content:center;

overflow:hidden;

margin-bottom:25px;

}
.product-image img{

width:100%;

height:100%;

object-fit:contain;

}


.product-card h3{

font-size:25px;

color:#12355b;

margin-bottom:15px;

}



.product-card a{

color:#f58220;

text-decoration:none;

font-weight:bold;

}






/* ABOUT */


.about{

background:#f5f7fa;

text-align:center;

}



.about p{

max-width:850px;

margin:15px auto;

font-size:18px;

}




/* CHOOSE */


.choose-box{

display:grid;

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

gap:25px;

}



.choose-box div{

padding:30px;

background:#fff;

box-shadow:0 3px 15px rgba(0,0,0,.1);

border-radius:8px;

}


.choose-box h3{

color:#12355b;

margin-bottom:10px;

}





/* FACTORY */


.factory-text{

text-align:center;

font-size:18px;

}



.factory-list{

margin-top:30px;

font-size:20px;

color:#444;

}





/* CONTACT */


.contact{

background:#12355b;

color:white;

text-align:center;

}



.contact h2{

color:white;

}



form{

max-width:600px;

margin:auto;

}



input,
textarea{

width:100%;

padding:15px;

margin:10px 0;

border:none;

border-radius:5px;

}



textarea{

height:120px;

}



button{

background:#f58220;

color:white;

border:none;

padding:15px 45px;

font-size:18px;

cursor:pointer;

border-radius:5px;

}






/* FOOTER */


footer{

background:#0d243d;

color:white;

text-align:center;

padding:40px;

}





/* MOBILE */


@media(max-width:768px){


header{

flex-direction:column;

height:auto;

padding:20px;

}


nav{

margin:20px 0;

}



.hero h1{

font-size:32px;

}



.advantages{

flex-direction:column;

}


.product-container{

flex-direction:column;

}


.product-card{

width:100%;

}



.choose-box{

grid-template-columns:1fr;

}


}
/* ABOUT SECTION */

.about{

padding:80px 10%;

background:#f8f9fb;

}


.about-container{

display:flex;

align-items:center;

gap:50px;

}


.about-text{

width:50%;

}


.about-text h2{

font-size:38px;

color:#12345b;

margin-bottom:25px;

}


.about-text p{

font-size:17px;

line-height:1.8;

color:#555;

margin-bottom:18px;

}


.about-image{

width:50%;

}


.about-image img{

width:100%;

border-radius:10px;

}
/* FACTORY */

.factory{

padding:80px 10%;

background:white;

}


.factory-container{

display:flex;

align-items:center;

gap:60px;

}


.factory-image{

width:55%;

}


.factory-image img{

width:100%;

border-radius:10px;

}



.factory-text{

width:45%;

}



.factory-text h2{

font-size:38px;

color:#12345b;

margin-bottom:25px;

}



.factory-text p{

font-size:17px;

line-height:1.8;

color:#555;

margin-bottom:20px;

}



.factory-list div{

margin-top:15px;

font-size:16px;

color:#12345b;

font-weight:600;

}
.contact a {
    color: white;
    text-decoration: none;
}

.contact a:hover {
    color: #ff9800;
}
.contact-container{

display:flex;

justify-content:center;

gap:60px;

max-width:1100px;

margin:auto;

}



.contact-info,
.quote-form{

width:45%;

}



.contact-info h3,
.quote-form h3{

font-size:26px;

margin-bottom:25px;

}



.contact-info p{

line-height:1.8;

}



.contact-info a{

color:white;

text-decoration:none;

}



.quote-form input,
.quote-form textarea{

width:100%;

padding:15px;

margin-bottom:15px;

border-radius:5px;

border:none;

}



.quote-form textarea{

height:120px;

}



.quote-form button{

background:#ff9800;

color:white;

padding:15px 35px;

border:none;

border-radius:5px;

font-size:16px;

cursor:pointer;

}
.factory-gallery{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
    margin-top:40px;
}

.factory-gallery img{
    width:100%;
    height:260px;
    object-fit:cover;
    border-radius:10px;
    box-shadow:0 5px 20px rgba(0,0,0,0.15);
}


@media(max-width:768px){

.factory-gallery{
    grid-template-columns:1fr;
}

}
.whatsapp-float{

position:fixed;

right:30px;

bottom:30px;

background:#25D366;

color:white;

padding:15px 25px;

border-radius:50px;

font-size:18px;

font-weight:bold;

text-decoration:none;

z-index:9999;

box-shadow:0 5px 15px rgba(0,0,0,0.3);

}


.whatsapp-float:hover{

background:#128C7E;

}