/* General Styles */
body {
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  line-height: 1.6;
  color: #333;
}

.container {
  width: 80%;
  margin: auto;
  overflow: hidden;
  padding: 0 20px;
}

/* Navbar Styles */
.navbar {
  background-color: #f4f4f4;
  color: #333;
  padding: 20px 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease;
}

.navbar .logo {
  float: left;
}

.navbar .logo img {
  width: 100px; 
}

.navbar .nav-links {
  float: right;
  margin-top: 10px;
}

.navbar .nav-links li {
  display: inline;
  padding: 0 20px;
}

.navbar .nav-links a {
  color: #333;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.navbar .nav-links a:hover {
  color: #e44d26;
}

/* Hero Section Styles */
.hero-content {
  text-align: center;
  padding: 50px;
  background-color: #f8f8f8;
}

.hero-content h1 {
  font-size: 2.5em;
  color: #333;
  margin-bottom: 20px;
}

.hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 1.2em;
  color: #555;
  margin-bottom: 20px;
}

.cta-button {
  display: inline-block;
  padding: 12px 24px;
  font-size: 1.2em;
  color: #fff;
  background-color: #ff6600;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background-color: #cc5500;
}

/* About Us Section Styles */
.about-us {
  padding: 50px 0;
  background-color: #f9f9f9;
}

.about-us h2 {
  text-align: center;
  margin-bottom: 30px;
  color: #e44d26;
}

.about-content {
  display: flex;
  gap: 30px;
}

.about-image {
  flex: 1;
}

.about-image img {
  width: 100%;
  border-radius: 8px;
}

.about-text {
  flex: 1;
}

/* Products Section Styles */
.products {
  padding: 50px 0;
  background-color: #fff;
}

.products h2 {
  text-align: center;
  margin-bottom: 30px;
  color: #e44d26;
}

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

.product-card {
  background-color: #f9f9f9;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.product-card img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 15px;
}

.product-card h3 {
  margin-bottom: 10px;
  color: #333;
}

.order-button {
  display: inline-block;
  padding: 8px 20px;
  background-color: #e44d26;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.order-button:hover {
  background-color: #333;
}

/* Services Section Styles */
.services {
  padding: 50px 0;
  background-color: #f9f9f9;
}

.services h2 {
  text-align: center;
  margin-bottom: 30px;
  color: #e44d26;
}

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

.service-card {
  background-color: #fff;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.service-card i {
  font-size: 2em;
  margin-bottom: 15px;
  color: #e44d26;
}

/* Contact Us Section Styles */
.contact-us {
  padding: 50px 0;
  background-color: #fff;
}

.contact-us h2 {
  text-align: center;
  margin-bottom: 30px;
  color: #e44d26;
}

.contact-form {
  max-width: 600px;
  margin: auto;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1em;
}

.form-group textarea {
  resize: vertical;
}

.submit-button {
  display: block;
  width: 100%;
  padding: 10px;
  background-color: #e44d26;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 1.2em;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.submit-button:hover {
  background-color: #333;
}

/* Footer Styles */
.footer {
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 20px 0;
}

/* Burger Styles */
.burger {
  display: none;
  cursor: pointer;
  float: right;
  margin-top: 10px;
}

.burger i {
  font-size: 2em;
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    width: 95%;
  }

  .navbar .nav-links {
    display: none;
    width: 100%;
    float: none;
    text-align: center;
    background-color: #f4f4f4;
    padding: 20px 0;
  }

  .navbar .nav-links li {
    display: block;
    padding: 10px 0;
  }

  .navbar .nav-links.show {
    display: block;
  }

  .burger {
    display: block;
  }

  .hero {
    padding: 100px 0;
  }

  .hero h1 {
    font-size: 2.5em;
  }

  .about-content {
    flex-direction: column;
  }

  .about-image, .about-text {
    flex: 1;
  }
}