/* Reset and Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  background-color: #fff;
  color: #34495e;
}

a {
  color: #2ecc71;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}
/* Global Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
}

/* Header */
header {
  background-color: #34495e;
  color: white;
  padding: 20px 0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* Header Container */
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

header h1 {
  font-size: 1.8rem;
}

/* Hamburger Menu Icon */
.menu-toggle {
  display: none;
  font-size: 1.8rem;
  color: white;
  cursor: pointer;
}

/* Navigation */
nav {
  background-color: #f8f8f8;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 10px 0;
}

nav a {
  text-decoration: none;
  color: #34495e;
  font-weight: 500;
}

nav a:hover {
  color: #2ecc71;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  nav ul {
    display: none;
    flex-direction: column;
    align-items: center;
    background-color: #f8f8f8;
    padding: 15px 0;
  }

  nav ul.active {
    display: flex;
  }
}


/* Section Styling */
section {
  padding: 60px 20px;
}

.content-box {
  max-width: 900px;
  margin: 0 auto;
  background-color: #f4f9f6;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.content-box h2 {
  color: #34495e;
  margin-bottom: 20px;
  font-size: 1.8rem;
}

.content-box h3 {
  margin-top: 25px;
  color: #2ecc71;
  font-size: 1.2rem;
}

.content-box p,
.content-box li {
  font-size: 1.05rem;
  margin-bottom: 12px;
}

/* Lists */
ul {
  padding-left: 20px;
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}

.whatsapp-float img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

/* Footer */
footer {
  background-color: #34495e;
  color: white;
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
  margin-top: 60px;
}

/* Responsive */
@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    gap: 15px;
  }

  .content-box {
    padding: 20px;
  }

  header h1 {
    font-size: 1.6rem;
  }
}

/* Hero Section */
.home-hero {
  background: url('images/chicken-4849979_1280.jpg') no-repeat center center/cover;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
  color: white;
}

.hero-overlay {
  background-color: rgba(52, 73, 94, 0.75);
  padding: 40px;
  border-radius: 10px;
}

.hero-overlay h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.hero-overlay p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.btn {
  background-color: #2ecc71;
  padding: 10px 25px;
  border-radius: 8px;
  color: white;
  font-weight: bold;
  transition: background 0.3s ease;
}

.btn:hover {
  background-color: #27ae60;
}

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.product-card {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-align: center;
  padding-bottom: 20px;
}

.product-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.product-card h3 {
  color: #34495e;
  margin: 15px 0 10px;
}

.product-card p {
  font-size: 1rem;
  padding: 0 15px;
}
/* Contact Form Styling */
.contact-form {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
}

.contact-form label {
  font-weight: bold;
  margin-top: 10px;
  margin-bottom: 5px;
}

.contact-form input,
.contact-form textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}

.contact-form button {
  margin-top: 15px;
  background-color: #34495e;
  color: #fff;
  border: none;
  padding: 12px;
  font-size: 1rem;
  border-radius: 6px;
  cursor: pointer;
}

.contact-form button:hover {
  background-color: #2c3e50;
}

/* Social Icons */
.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 25px;
}

.social-icons img {
  width: 40px;
  height: 40px;
  transition: transform 0.2s ease;
}

.social-icons img:hover {
  transform: scale(1.1);
}

.about-content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
  text-align: center;
}

.about-content h2 {
  font-size: 2rem;
  color: #34495e;
  margin-bottom: 20px;
}

.about-boxes {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 30px;
}

.about-box {
  flex: 1 1 300px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  padding: 20px;
  text-align: left;
}

.about-box h4 {
  color: #333;
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.about-box p {
  color: #555;
  line-height: 1.6;
  font-size: 1rem;
}
.contact1 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  padding: 40px 20px;
  background: #f8f8f8;
  border-radius: 10px;
  margin-top: 40px;
}

.form2,
.info {
  flex: 1 1 45%;
  min-width: 300px;
  margin-top: -50px;
}

/* Form styling */
.contact-form {
  display: flex;
  flex-direction: column;
}

.contact-form label {
  margin-top: 10px;
  font-weight: 500;
}

.contact-form input,
.contact-form textarea {
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.contact-form button {
  margin-top: 15px;
  padding: 12px;
  background-color:#34495e;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.contact-form button:hover {
  background-color: dark #03172b;
}

/* Info block */
.info p {
  font-size: 1rem;
  margin-bottom: 10px;
}
.info{
  margin-top: 10px;
}

.info a {
  color: green;
  text-decoration: none;
}

  
    
    /* {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
      font-family: Arial, sans-serif;
    }

    body {
      background-color: #f4f4f4;
      color: #333;
      line-height: 1.6;
    }

    header {
      background-color: #2c3e50;
      color: #fff;
      padding: 2rem;
      text-align: center;
    }

    nav {
      background-color: #34495e;
    }

    nav ul {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      list-style: none;
      padding: 1rem 0;
    }

    nav ul li {
      margin: 0 1rem;
    }

    nav ul li a {
      color: #fff;
      text-decoration: none;
      font-weight: bold;
    }

    nav ul li a:hover {
      text-decoration: underline;
    }

    section {
      padding: 2rem;
    }

    h2 {
      margin-bottom: 1rem;
      color: #2c3e50;
    }

    .content-box {
      background: white;
      padding: 1.5rem;
      border-radius: 8px;
      margin-bottom: 2rem;
      box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }

    footer {
      background-color: #2c3e50;
      color: white;
      text-align: center;
      padding: 1rem;
      margin-top: 2rem;
    }

    @media (max-width: 768px) {
      nav ul {
        flex-direction: column;
      }

      nav ul li {
        margin-bottom: 0.5rem;
      }
    }
    .whatsapp-float {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 1000;
    }
    
    .whatsapp-float img {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }
    
