/* Reset */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

body {
font-family: Arial, Helvetica, sans-serif;
line-height: 1.6;
width: 100%;
overflow-x: hidden;
}

/* Container */
.section {
padding: 40px 20px;
max-width: 1200px;
margin: auto;
}

.bg-light {
background: #f5f7fb;
}

/* Header */
.header {
background: #0b5ed7;
color: white;
text-align: center;
padding: 25px 15px;
}

.header h1 {
font-size: 24px;
}

.header p {
font-size: 14px;
opacity: 0.9;
}

/* Navigation */
.nav {
display: flex;
justify-content: center;
flex-wrap: wrap;
background: #0a4db5;
}

.nav a {
color: white;
padding: 12px 18px;
text-decoration: none;
font-size: 14px;
}

.nav a:hover {
background: #083a88;
}

/* Hero Section */
.hero {
width: 100%;
position: relative;
}

.hero-img {
width: 100%;
height: 260px;
object-fit: cover;
display: block;
}

.hero-content {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
text-align: center;
color: white;
width: 90%;
}

.hero-content h2 {
font-size: 22px;
margin-bottom: 10px;
}

.btn {
background: #25D366;
color: white;
padding: 10px 18px;
text-decoration: none;
border-radius: 6px;
display: inline-block;
margin-top: 10px;
}

/* Products */
.product-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
gap: 15px;
margin-top: 20px;
}

.product img {
width: 100%;
height: 140px;
object-fit: cover;
border-radius: 8px;
}

/* Gallery */
.gallery {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
gap: 10px;
margin-top: 20px;
}

.gallery img {
width: 100%;
height: 140px;
object-fit: cover;
border-radius: 6px;
}

/* Contact Section */
.contact-container {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
gap: 20px;
margin-top: 20px;
}

.contact-card {
background: white;
padding: 20px;
border-radius: 10px;
box-shadow: 0 2px 10px rgba(0,0,0,0.08);
text-align: center;
}

.contact-btn {
display: inline-block;
margin-top: 10px;
background: #0b5ed7;
color: white;
padding: 8px 15px;
border-radius: 5px;
text-decoration: none;
}

.whatsapp-btn {
display: inline-block;
margin-top: 10px;
background: #25D366;
color: white;
padding: 8px 15px;
border-radius: 5px;
text-decoration: none;
}

/* Footer */
.footer {
background: #0b5ed7;
color: white;
text-align: center;
padding: 20px;
margin-top: 40px;
}

/* Floating WhatsApp */
.whatsapp-float {
position: fixed;
bottom: 20px;
right: 20px;
background: #25D366;
color: white;
padding: 12px 16px;
border-radius: 50px;
text-decoration: none;
font-weight: bold;
box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* Mobile Optimization */
@media (max-width: 768px) {

.hero-img {
height: 200px;
}

.header h1 {
font-size: 20px;
}

.hero-content h2 {
font-size: 18px;
}

.section {
padding: 30px 15px;
}

}