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

html{
scroll-behavior:smooth;
}

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

header{
    background:#111;
    padding:20px 8%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    position:sticky;
    top:0;
    z-index:1000;
}

.logo img{
    height:auto;
    width:180px;
    display:block;
    padding:0;
    background:transparent;
    border:none;
    border-radius:0;
    box-shadow:none;
}
nav a{
color:#fff;
text-decoration:none;
margin-left:30px;
font-weight:600;
transition:.3s;
}

nav a:hover{
color:#d4af37;
}

.hero{
height:100vh;
background:
linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.55)),
url("hero.jpeg.jpeg");
background-size:cover;
background-position:center;
display:flex;
align-items:center;
justify-content:flex-start;
padding:0 8%;
}

.hero-text{
max-width:550px;
color:#fff;
animation:fadeUp 1s ease;
}

.badge{
display:inline-block;
background:#d4af37;
color:#111;
padding:10px 18px;
border-radius:40px;
font-weight:700;
margin-bottom:20px;
}

.hero h1{
font-size:60px;
line-height:1.1;
margin-bottom:20px;
font-weight:800;
}

.hero p{
font-size:19px;
margin-bottom:35px;
color:#eee;
}

.hero-buttons{
display:flex;
gap:15px;
flex-wrap:wrap;
}

.btn{
background:#d4af37;
color:#111;
padding:15px 34px;
border-radius:8px;
font-weight:700;
text-decoration:none;
transition:.3s;
}

.btn:hover{
transform:translateY(-4px);
background:#fff;
}

.btn-outline{
border:2px solid #fff;
color:#fff;
padding:13px 30px;
border-radius:8px;
text-decoration:none;
font-weight:700;
transition:.3s;
}

.btn-outline:hover{
background:#fff;
color:#111;
}

section{
padding:90px 8%;
}

.stats{
    background:#ffffff;
}

#products{
    background:#f3f4f6;
}

#contact{
    background:linear-gradient(135deg,#111,#1f1f1f);
    color:#fff;
}

#contact h2{
    color:#fff;
}
h2{
font-size:40px;
text-align:center;
margin-bottom:35px;
color:#111;
}

#about > p{
max-width:900px;
margin:auto;
text-align:center;
font-size:18px;
}
.products{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:30px;
}

.card{
background:#fff;
border-radius:15px;
overflow:hidden;
box-shadow:0 12px 30px rgba(0,0,0,.12);
transition:.35s;
}

.card:hover{
transform:translateY(-10px);
}

.card img{
width:100%;
height:250px;
object-fit:cover;
}

.card h3{
padding:18px;
}

.card p{
padding:0 18px 20px;
color:#666;
}

.contact-box{
    max-width:700px;
    margin:auto;
    background:#1b1b1b;
    color:#fff;
    padding:45px;
    border-radius:18px;
    border:1px solid rgba(212,175,55,.25);
    box-shadow:0 20px 50px rgba(0,0,0,.4);
}

.whatsapp{
display:inline-block;
margin-top:25px;
padding:16px 35px;
background:#25D366;
color:#fff;
border-radius:10px;
text-decoration:none;
font-size:18px;
font-weight:700;
transition:.35s;
}

.whatsapp:hover{
background:#1ebe5d;
transform:translateY(-4px);
}

footer{
background:#111;
color:#fff;
text-align:center;
padding:25px;
margin-top:60px;
}

@keyframes fadeUp{
from{
opacity:0;
transform:translateY(35px);
}
to{
opacity:1;
transform:translateY(0);
}
}

@media(max-width:768px){

header{
flex-direction:column;
padding:15px;
}

nav{
margin-top:15px;
}

nav a{
margin:10px;
display:inline-block;
}

.hero{
justify-content:center;
text-align:center;
padding:0 6%;
}

.hero-text{
max-width:100%;
}

.hero h1{
font-size:42px;
}

.hero-buttons{
justify-content:center;
}

.logo img{
height:60px;
}

}
.contact-btn{
    display:inline-block;
    padding:15px 34px;
    border:2px solid #d4af37;
    color:#fff;
    text-decoration:none;
    border-radius:8px;
    font-weight:700;
    transition:.3s;
}

.contact-btn:hover{
    background:#d4af37;
    color:#111;
}
/* ===== Stats Section ===== */

.stats{
    padding:40px 8% 80px;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:25px;
}

.stat-box{
    background:#fff;
    text-align:center;
    padding:35px 20px;
    border-radius:18px;
    box-shadow:0 12px 30px rgba(0,0,0,.08);
    transition:.35s ease;
    border-top:4px solid #d4af37;
}

.stat-box:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(0,0,0,.15);
}

.stat-box h3{
    font-size:48px;
    color:#d4af37;
    margin-bottom:10px;
    font-weight:800;
}
/* ABOUT SECTION */

#about{
background:#fff;
padding:90px 8%;
}

.about-wrapper{
    display:grid;
    grid-template-columns:48% 52%;
    gap:50px;
    align-items:stretch;
}

.about-image{
    height:100%;
}

.about-image img{
    width:100%;
    height:100%;
    min-height:650px;
    object-fit:cover;
    border-radius:20px;
    display:block;
    box-shadow:0 15px 40px rgba(0,0,0,.18);
}

.about-content{
    display:flex;
    flex-direction:column;
    justify-content:center;
}
.about-image img:hover{
transform:scale(1.03);
}

.about-content{
flex:1;
}

.about-title{
color:#d4af37;
font-weight:700;
letter-spacing:2px;
font-size:14px;
}

.about-content h2{
font-size:46px;
margin:12px 0 25px;
color:#111;
text-align:left;
}

.about-content p{
font-size:18px;
color:#555;
line-height:1.8;
margin-bottom:18px;
}

.about-stats{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:18px;
margin-top:35px;
}

.about-stat{
display:flex;
align-items:center;
gap:12px;
padding:15px;
background:#fff;
border-radius:12px;
box-shadow:0 8px 25px rgba(0,0,0,.08);
transition:.3s;
}

.about-stat:hover{
transform:translateY(-8px);
box-shadow:0 15px 35px rgba(0,0,0,.15);
}

.about-stat i{
font-size:28px;
color:#d4af37;
min-width:30px;
}

.about-stat h3{
margin:0;
font-size:28px;
color:#111;
}

.about-stat span{
font-size:14px;
color:#666;
}

@media(max-width:992px){

.about-wrapper{
    grid-template-columns:1fr;
    gap:35px;
}

.about-content{
    text-align:center;
}

.about-content h2{
    text-align:center;
}

.about-stats{
    grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:600px){

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

}
/* QUOTATION SECTION */

.quotation-section{
display:grid;
grid-template-columns:1fr 1.3fr;
gap:60px;
padding:90px 10%;
background:#111;
color:#fff;
}

.quote-tag{
color:#d4af37;
font-weight:700;
letter-spacing:2px;
}

.quote-left h2{
font-size:48px;
margin:20px 0;
}

.quote-left p{
font-size:18px;
color:#ddd;
margin-bottom:30px;
line-height:1.8;
}

.quote-feature{
margin-bottom:18px;
font-size:18px;
}

.quote-right form{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:18px;
}

.quote-right input,
.quote-right select,
.quote-right textarea{

padding:15px;
border:1px solid #444;
background:#1b1b1b;
color:white;
border-radius:8px;
font-size:16px;
}

.quote-right textarea{
grid-column:1/3;
resize:none;
}

.quote-right button{
grid-column:1/3;
cursor:pointer;
}

@media(max-width:768px){

.quotation-section{
grid-template-columns:1fr;
}

.quote-right form{
grid-template-columns:1fr;
}

.quote-right textarea,
.quote-right button{
grid-column:auto;
}

}
/* Floating WhatsApp */

.whatsapp-float{

position:fixed;

bottom:25px;

right:25px;

width:65px;

height:65px;

background:#25D366;

color:#fff;

border-radius:50%;

display:flex;

justify-content:center;

align-items:center;

font-size:34px;

text-decoration:none;

box-shadow:0 10px 25px rgba(0,0,0,.35);

z-index:9999;

transition:.35s;

animation:whatsappPulse 2s infinite;

}

.whatsapp-float:hover{

transform:scale(1.12);

background:#20ba5a;

}

@keyframes whatsappPulse{

0%{

box-shadow:0 0 0 0 rgba(37,211,102,.7);

}

70%{

box-shadow:0 0 0 18px rgba(37,211,102,0);

}

100%{

box-shadow:0 0 0 0 rgba(37,211,102,0);

}

}
/* ===== PRODUCT RANGE CARDS ===== */

.products{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
gap:35px;
margin-top:50px;
}

.card{
display:block;
background:#fff;
border-radius:18px;
overflow:hidden;
text-decoration:none;
color:#111;
box-shadow:0 15px 35px rgba(0,0,0,.12);
transition:all .4s ease;
position:relative;
}

.card::before{
content:"";
position:absolute;
top:0;
left:0;
width:100%;
height:4px;
background:#d4af37;
transform:scaleX(0);
transition:.4s;
}

.card:hover::before{
transform:scaleX(1);
}

.card:hover{
transform:translateY(-12px);
box-shadow:0 25px 50px rgba(0,0,0,.18);
}

.card img{
width:100%;
height:320px;
object-fit:cover;
display:block;
transition:transform .5s ease;
}

.card:hover img{
transform:scale(1.08);
}

.card h3{
padding:22px 22px 8px;
font-size:30px;
font-weight:700;
}

.card p{
padding:0 22px;
color:#777;
font-size:17px;
margin-bottom:25px;
}

.card-footer{
display:flex;
justify-content:space-between;
align-items:center;
padding:18px 22px;
margin-top:20px;
background:#111;
color:#d4af37;
font-weight:600;
font-size:16px;
border-top:1px solid rgba(255,255,255,.08);
transition:.35s;
}

.card-footer span{
color:inherit;
}

.card-footer i{
transition:.35s;
}

.card:hover .card-footer{
background:#d4af37;
color:#111;
}

.card:hover .card-footer i{
transform:translateX(8px);
}
