* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  background: #fff;
  overflow-x: hidden;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.main-header {
  background: #ffffff;
  border-bottom: 1px solid #ccc;
  position: sticky;
  top: 0;
  z-index: 999;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo {
  height: 50px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 20px;
}

.nav-links li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.nav-links li a:hover {
  color: #007BFF;
}

.menu-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
}

.hero {
  position: relative;
  width: 100%;
  height: 90vh;
  overflow: hidden;
}

.hero-img {
  width: 100%;
  height: 90vh;
  object-fit: cover;
  display: block;
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  z-index: 2;
  background: rgba(0, 0, 0, 0.5);
  padding: 2rem;
  border-radius: 10px;
  max-width: 90%;
}

.hero-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-button {
  background: #007BFF;
  color: white;
  padding: 0.7rem 1.2rem;
  text-decoration: none;
  border-radius: 5px;
  margin-top: 1rem;
  display: inline-block;
}

.cta-button:hover {
  background-color: #0056b3;
}

.slide {
  display: none;
}

.active {
  display: block;
}

.fade {
  animation: fade 1.5s ease-in-out;
}

@keyframes fade {
  from { opacity: 0.4; }
  to { opacity: 1; }
}

.section-title {
  text-align: center;
  margin: 3rem 0 1rem;
}

.product-images, .gallery-images, .customer-logos {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  padding: 1rem;
}

.product-images img,
.gallery-images img,
.customer-logos img {
  width: 300px;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}

.contact-form {
  max-width: 600px;
  margin: auto;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.contact-form button {
  background: #007BFF;
  color: white;
  padding: 0.75rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.contact-form button:hover {
  background: #0056b3;
}

.map-container {
  width: 100%;
  height: 400px;
  margin-top: 2rem;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

footer {
  background-color: #f8f9fa;
  padding: 2rem 0;
  text-align: center;
  border-top: 1px solid #ccc;
}

.footer-contact a {
  display: block;
  color: #333;
  text-decoration: none;
  margin: 0.5rem 0;
}

.footer-contact a:hover {
  color: #007BFF;
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  font-size: 28px;
  background-color: #25D366;
  color: white;
  padding: 12px 15px;
  border-radius: 50%;
  z-index: 999;
  text-decoration: none;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    background: white;
    position: absolute;
    top: 80px;
    right: 10px;
    border: 1px solid #ccc;
    padding: 10px;
    z-index: 999;
  }

  .nav-links.show {
    display: flex;
  }
}
