/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Open Sans', sans-serif;
  line-height: 1.6;
  background-color: #f8f5f2; /* Soft cream background */
  color: #1a1a1a; /* Dark gray text */
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles */
header {
  background-color: #fffdd0; /* Soft cream background */
  padding: 15px 0;
  border-bottom: 1px solid #e0e0e0;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo & Company Name Group */
.logo-and-name {
  display: flex;
  align-items: center;
  gap: 12px; /* Space between logo and text */
}

.logo img {
  height: 50px;
}

.company-name {
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #000; /* Pure black */
  letter-spacing: 0.5px;
  white-space: nowrap;
}

/* Navigation */
nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

nav ul li a {
  color: #333;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.3s ease;
}

nav ul li a:hover {
  color: #6B8E23; /* Green hover effect */
}

/* Hero Section */
.hero {
  background-image: url('weggs.jpg');
  background-size: cover;
  background-position: center;
  color: #fff;
  text-align: center;
  padding: 100px 0;
}
.hero .container {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.cta-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #ff8c00;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #e67e22;
}

/* About Us Section */
.about {
  padding: 50px 0;
  text-align: center;
}

.about h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

/* Products Section */
.products {
  padding: 50px 0;
  text-align: center;
}

.products h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.product-card {
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.product-card img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.product-card h3 {
  font-size: 1.5rem;
  margin: 10px 0;
}

/* Why Choose Us Section */
.why-choose-us {
  padding: 50px 0;
  text-align: center;
}

.why-choose-us h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.feature {
  text-align: center;
  padding: 20px;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.feature:hover {
  transform: scale(1.05);
}

.feature i {
  font-size: 3rem;
  margin-bottom: 10px;
}

.feature h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.feature p {
  font-size: 1rem;
}

/* Contact Us Section */
.contact {
  padding: 50px 0;
  text-align: center;
}

.contact h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.contact form {
  max-width: 600px;
  margin: 0 auto;
}

.contact form input,
.contact form textarea {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.contact form button {
  display: block;
  width: 100%;
  padding: 10px;
  background-color: #ff8c00;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact form button:hover {
  background-color: #e67e22;
}

.contact-info {
  margin-top: 20px;
  font-size: 1.2rem;
}

/* Footer */
footer {
  background-color: #fff;
  color: #333;
  text-align: center;
  padding: 20px 0;
}

/* WhatsApp Button */
.whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.whatsapp-button:hover {
  background-color: #28c76f;
}

.whatsapp-button img {
  vertical-align: middle;
  margin-right: 10px;
}
