/* ==========================
   BULKHUB24 Premium CSS
========================== */

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

body{
background:#f4f7fb;
color:#222;
}

header{
position:fixed;
top:0;
left:0;
width:100%;
padding:15px 7%;
display:flex;
justify-content:space-between;
align-items:center;
background:#083B73;
z-index:1000;
box-shadow:0 5px 15px rgba(0,0,0,.15);
}

.logo img{
height:60px;
}

nav{
display:flex;
align-items:center;
gap:25px;
}

nav a{
color:#fff;
text-decoration:none;
font-size:16px;
font-weight:500;
transition:.3s;
}

nav a:hover{
color:#ff9800;
}

.login-btn{
background:#ff9800;
padding:12px 22px;
border-radius:8px;
font-weight:600;
}

.hero{
height:100vh;
display:flex;
justify-content:center;
align-items:center;
text-align:center;
padding:20px;
background:
linear-gradient(rgba(0,0,0,.60),rgba(0,0,0,.60)),
url("images/banner.jpg");
background-size:cover;
background-position:center;
}

.hero-content h1{
font-size:65px;
color:#fff;
margin-bottom:20px;
font-weight:700;
}

.hero-content p{
font-size:22px;
color:#fff;
margin-bottom:35px;
line-height:1.8;
}

.hero-buttons{
display:flex;
justify-content:center;
gap:20px;
flex-wrap:wrap;
}

.btn1,
.btn2{
padding:16px 35px;
border-radius:10px;
text-decoration:none;
font-weight:600;
transition:.3s;
}

.btn1{
background:#ff9800;
color:#fff;
}

.btn2{
background:#fff;
color:#083B73;
}

.btn1:hover,
.btn2:hover{
transform:translateY(-4px);
}

section{
padding:90px 8%;
}

.section-title{
font-size:42px;
text-align:center;
margin-bottom:50px;
color:#083B73;
font-weight:700;
}

.about{
background:#fff;
}

.about .container{
max-width:1100px;
margin:auto;
text-align:center;
}

.about h2{
font-size:40px;
color:#083B73;
margin-bottom:20px;
}

.about p{
font-size:18px;
line-height:2;
}

.brand-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:30px;
}

.brand-card{
background:#fff;
padding:30px;
border-radius:18px;
text-align:center;
box-shadow:0 10px 30px rgba(0,0,0,.10);
transition:.3s;
}

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

.brand-card img{
width:130px;
height:130px;
object-fit:contain;
margin-bottom:20px;
}

.brand-card h3{
color:#083B73;
margin-bottom:10px;
}

.product-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
}

.product{
background:#fff;
border-radius:15px;
overflow:hidden;
box-shadow:0 10px 25px rgba(0,0,0,.12);
transition:.3s;
}

.product:hover{
transform:translateY(-8px);
}

.product img{
width:100%;
height:220px;
object-fit:cover;
}

.product h3{
padding:20px;
text-align:center;
color:#083B73;
}

.distributor{
background:#083B73;
color:#fff;
text-align:center;
}

.distributor h2{
font-size:40px;
margin-bottom:20px;
}

.distributor p{
font-size:19px;
margin-bottom:35px;
}

.contact-box{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(350px,1fr));
gap:35px;
background:#fff;
padding:35px;
border-radius:15px;
box-shadow:0 10px 30px rgba(0,0,0,.10);
}

.contact-box h3{
margin-bottom:20px;
color:#083B73;
}

.contact-box p{
line-height:2;
font-size:17px;
}

.whatsapp{
position:fixed;
right:20px;
bottom:20px;
background:#25D366;
width:65px;
height:65px;
display:flex;
justify-content:center;
align-items:center;
border-radius:50%;
color:#fff;
font-size:34px;
text-decoration:none;
box-shadow:0 10px 25px rgba(0,0,0,.25);
z-index:999;
}

footer{
background:#083B73;
color:#fff;
text-align:center;
padding:40px 20px;
}

.social{
margin:20px 0;
}

.social a{
color:#fff;
font-size:24px;
margin:0 12px;
transition:.3s;
}

.social a:hover{
color:#ff9800;
}

@media(max-width:768px){

.hero-content h1{
font-size:40px;
}

.hero-content p{
font-size:18px;
}

nav{
display:none;
}

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

}