*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial,sans-serif;
}

html{
scroll-behavior:smooth;
}

body{
background:#f5f7fa;
color:#333;
overflow-x:hidden;
}

nav{
display:flex;
justify-content:space-between;
align-items:center;
padding:15px 8%;
background:#fff;
box-shadow:0 2px 15px rgba(0,0,0,.08);
position:sticky;
top:0;
z-index:1000;
}

.logo img{
width:120px;
height:auto;
}

nav ul{
display:flex;
gap:30px;
list-style:none;
}

nav a{
text-decoration:none;
color:#222;
font-weight:600;
transition:.3s;
}

nav a:hover{
color:#0066cc;
}

.hero{
min-height:80vh;
display:flex;
align-items:center;
justify-content:space-between;
padding:80px 8%;
background:linear-gradient(135deg,#0066cc,#00b894);
color:white;
}

.hero-left{
width:50%;
}

.hero-left h1{
font-size:64px;
line-height:1.1;
margin-bottom:20px;
}

.hero-left p{
font-size:24px;
margin-bottom:30px;
max-width:600px;
}

.hero-right{
width:50%;
display:flex;
justify-content:center;
}

.hero-right img{
max-width:550px;
width:100%;
height:auto;
border-radius:12px;
box-shadow:0 15px 35px rgba(0,0,0,.2);
}

.btn{
display:inline-block;
padding:16px 40px;
background:white;
color:#0066cc;
text-decoration:none;
border-radius:50px;
font-weight:700;
transition:.3s;
box-shadow:0 10px 25px rgba(0,0,0,.15);
}

.btn:hover{
transform:translateY(-4px);
}

.page-banner{
padding:100px 20px;
text-align:center;
background:linear-gradient(135deg,#0066cc,#00b894);
color:white;
}

.page-banner h1{
font-size:60px;
margin-bottom:15px;
}

.page-banner p{
font-size:22px;
}

.trust{
padding:80px 8%;
display:flex;
justify-content:center;
gap:30px;
flex-wrap:wrap;
background:#f8fafc;
}

.trust-box{
width:350px;
min-height:180px;
background:white;
padding:35px;
border-radius:20px;
text-align:center;
display:flex;
flex-direction:column;
justify-content:center;
box-shadow:0 8px 25px rgba(0,0,0,.08);
transition:.3s;
}

.trust-box:hover{
transform:translateY(-8px);
}

.trust-box h3{
color:#0066cc;
margin-bottom:10px;
}

.products{
padding:100px 8%;
background:white;
}

.products h2{
text-align:center;
font-size:42px;
margin-bottom:50px;
color:#0066cc;
}

.product-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
}

.product-card{
background:white;
padding:25px;
border-radius:20px;
box-shadow:0 8px 25px rgba(0,0,0,.08);
text-align:center;
display:flex;
flex-direction:column;
justify-content:space-between;
transition:.3s;
}

.product-card:hover{
transform:translateY(-8px);
box-shadow:0 15px 35px rgba(0,0,0,.15);
}

.product-card img{
height:220px;
width:100%;
object-fit:contain;
}

.product-card h3{
margin-top:15px;
margin-bottom:10px;
color:#0066cc;
}

.product-card p{
margin-bottom:20px;
}

.about-section{
padding:80px 8%;
display:grid;
grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
gap:30px;
}

.about-box{
background:white;
padding:30px;
border-radius:20px;
box-shadow:0 8px 25px rgba(0,0,0,.08);
}

.contact-section{
padding:80px 8%;
display:grid;
grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
gap:30px;
}

.contact-card{
background:white;
padding:40px 30px;
border-radius:20px;
text-align:center;
box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.contact-card h3{
font-size:28px;
color:#0066cc;
margin-bottom:15px;
}

.contact-link{
display:block;
font-size:24px;
font-weight:700;
color:#111827;
text-decoration:none;
margin-bottom:10px;
}

.contact-link:hover{
color:#0066cc;
}

.contact-card p{
color:#666;
}

.contact-strip{
padding:80px 20px;
text-align:center;
background:#0066cc;
color:white;
}

.contact-strip h2{
font-size:42px;
margin-bottom:15px;
}

.contact-strip p{
font-size:18px;
margin-bottom:25px;
}

.contact-strip .btn{
background:white;
color:#0066cc;
}

.whatsapp{
position:fixed;
right:25px;
bottom:25px;
width:65px;
height:65px;
background:#25D366;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:18px;
font-weight:bold;
color:white;
text-decoration:none;
z-index:9999;
box-shadow:0 10px 25px rgba(0,0,0,.2);
}

.contact-form-section{
max-width:900px;
margin:80px auto;
padding:50px;
background:#ffffff;
border-radius:20px;
box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.contact-form-section h2{
text-align:center;
color:#0066cc;
margin-bottom:30px;
font-size:36px;
}

.contact-form-section form{
display:flex;
flex-direction:column;
gap:15px;
}

.contact-form-section input,
.contact-form-section select,
.contact-form-section textarea{
padding:15px;
border:1px solid #d1d5db;
border-radius:10px;
font-size:16px;
width:100%;
}

.contact-form-section button{
border:none;
cursor:pointer;
width:fit-content;
align-self:center;
}

footer{
background:#0f172a;
color:white;
text-align:center;
padding:50px 20px;
}

footer h2{
margin-bottom:15px;
}

footer p{
margin:8px 0;
}

@media(max-width:900px){

nav{
flex-direction:column;
gap:15px;
}

.hero{
flex-direction:column;
text-align:center;
}

.hero-left,
.hero-right{
width:100%;
}

.hero-left h1{
font-size:42px;
}

.hero-left p{
font-size:20px;
}

.page-banner h1{
font-size:42px;
}

.contact-section,
.about-section{
grid-template-columns:1fr;
}

.product-grid{
grid-template-columns:1fr 1fr;
}

}

@media(max-width:900px){

nav{
flex-direction:column;
gap:15px;
}

.hero{
flex-direction:column;
text-align:center;
}

.hero-left,
.hero-right{
width:100%;
}

.hero-left h1{
font-size:42px;
}

.hero-left p{
font-size:20px;
}

.contact-section,
.about-section{
grid-template-columns:1fr;
}

.about-intro{
margin:40px 20px;
padding:35px;
}

.about-intro h2{
font-size:32px;
}

.product-grid{
grid-template-columns:1fr;
}

}
/* ===== ABOUT PAGE ===== */

.about-intro{
max-width:1000px;
margin:60px auto;
padding:50px;
background:#ffffff;
border-radius:20px;
box-shadow:0 10px 30px rgba(0,0,0,.08);
text-align:center;
}
.about-intro h2{
font-size:42px;
color:#0066cc;
margin-bottom:20px;
}
.about-intro p{
font-size:18px;
line-height:1.8;
color:#555;
max-width:850px;
margin:auto;
}
.about-section{
padding:0 8% 80px;
display:grid;
grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
gap:30px;
}

.about-box{
background:#ffffff;
padding:35px;
border-radius:20px;
box-shadow:0 10px 30px rgba(0,0,0,.08);
transition:.3s;
}

.about-box:hover{
transform:translateY(-8px);
}

.about-box h2{
font-size:30px;
color:#0066cc;
margin-bottom:15px;
}

.about-box p{
font-size:17px;
line-height:1.8;
color:#555;
}

@media(max-width:900px){

.about-intro{
margin:40px 20px;
padding:35px;
}

.about-intro h2{
font-size:32px;
}

.about-section{
grid-template-columns:1fr;
}

}
