/* General Styles */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
  background: #f5f5f5;
  color: #222;
}

/* Header */
header {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 20px 10px;
}

.logo {
  max-width: 120px;
  height: auto;
  margin-bottom: 10px;
}

.tagline {
  font-style: italic;
  font-size: 1rem;
  margin-top: 5px;
}

/* Navigation */
nav ul {
  list-style: none;
  padding: 0;
  margin: 15px 0 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  padding: 8px 12px;
}

.call-button {
  background-color: #25D366;
  border-radius: 4px;
}

/* Main Content */
main {
  padding: 20px;
}

.hero {
  background-color: #fff;
  padding: 30px;
  text-align: center;
  border-radius: 10px;
  margin-bottom: 20px;
}

/* Video Section */
.video-container {
  max-width: 600px;
  margin: 20px auto;
}

/* Product & Partner Sections */
.products, .partners {
  background: #fff;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 10px;
}

.product-item {
  margin-bottom: 20px;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background-color: #fafafa;
}

.partner-logos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 10px;
}

.partner-logos img {
  max-width: 100px;
  height: auto;
}

/* Footer */
footer {
  background: #222;
  color: white;
  text-align: center;
  padding: 15px;
}

footer a {
  color: #ddd;
  text-decoration: underline;
}

/* WhatsApp Floating Button */
.whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  animation: bounce 2s infinite;
}

.whatsapp-button img {
  width: 55px;
  height: 55px;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Product Page Grid Layout */
.products-page {
  max-width: 1200px;
  margin: auto;
  padding: 20px;
}

.products-page h1 {
  text-align: center;
  margin-bottom: 40px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.product-card {
  background: white;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  padding: 15px;
  text-align: center;
}

.product-card img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
}

.product-card h3 {
  margin-top: 10px;
  color: #111;
}

.product-card p {
  color: #333;
}

.product-card .price {
  color: #e91e63;
  font-weight: bold;
  font-size: 1.1em;
  margin: 10px 0;
}

.product-btn {
  background: #25D366;
  color: white;
  padding: 10px 15px;
  border-radius: 5px;
  text-decoration: none;
  display: inline-block;
}

/* Responsive Design */
@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    align-items: center;
  }

  .hero, .products, .partners {
    padding: 15px;
  }

  .logo {
    max-width: 90px;
  }

  .whatsapp-button img {
    width: 45px;
    height: 45px;
  }

  .products-page h1 {
    font-size: 1.5em;
  }
}
body {
  font-family: 'Segoe UI', Tahoma, sans-serif;
  background-color: #f4f7fb;
  margin: 0;
  padding: 0;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  background-color: #1c2b36;
  color: white;
  border-bottom: 3px solid #28a745;
  flex-wrap: wrap;
}

.logo-title {
  display: flex;
  align-items: center;
}

.header-logo {
  height: 40px;
  margin-right: 12px;
}

.brand-name {
  font-size: 22px;
  font-weight: bold;
  color: white;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  margin-top: 10px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  margin-left: 20px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #28a745;
}

.container {
  max-width: 700px;
  margin: 40px auto;
  padding: 30px;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

h2 {
  text-align: center;
  color: #1c2b36;
  margin-bottom: 30px;
}

label {
  display: block;
  margin-top: 20px;
  font-weight: 600;
}

input[type="number"],
select {
  width: 100%;
  padding: 10px;
  margin-top: 6px;
  font-size: 14px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

button {
  display: block;
  width: 100%;
  padding: 12px;
  font-size: 16px;
  margin-top: 20px;
  border: none;
  border-radius: 8px;
  background-color: #28a745;
  color: white;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #218838;
}

#result {
  margin-top: 25px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  background-color: #eaf4ff;
  padding: 15px;
  border-radius: 8px;
  border: 1px solid #c2e0ff;
}

/* Responsive styling */
@media (max-width: 768px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links a {
    margin-left: 0;
    margin-bottom: 8px;
  }

  .container {
    margin: 20px;
    padding: 20px;
  }
}

/* Unified Header Layout */
header {
  background: #000;
  color: #fff;
  padding: 20px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.branding {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.logo {
  max-width: 70px;
  height: auto;
}

.text-group {
  text-align: left;
}

.brand-name {
  margin: 0;
  font-size: 24px;
  font-weight: bold;
}

.tagline {
  font-style: italic;
  font-size: 1rem;
  margin: 0;
}
