/* ===== GLOBAL ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: Arial, sans-serif; background: #ffffff; color: #333; }
img { display: block; }
.container { width: 90%; max-width: 1200px; margin: auto; }

/* ===== TOP GREEN BAR ===== */
.top-green-bar {
    background: #0b8d34;
    padding: 8px 0;
    color: #fff;
}
.top-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.cert-logos img {
    width: 170px;
    margin-right: 10px;
}
.email-text {
    font-size: 15px;
    font-weight: 600;
}
/* Dropdown wrapper */
.dropdown {
    position: relative;
    display: inline-block;
}

/* Main button */
.dropbtn {
    padding: 10px 15px;
    display: inline-block;
}

/* Dropdown box */
.dropdown-content {
    display: none;
    position: absolute;
    background: white;
    min-width: 180px;
    box-shadow: 0px 2px 12px rgba(0,0,0,0.15);
    z-index: 999;
}

/* Dropdown links */
.dropdown-content a {
    display: block;
    padding: 10px 14px;
    text-decoration: none;
    color: black;
}

/* Hover on dropdown items */
.dropdown-content a:hover {
    background: #f2f2f2;
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-content {
    display: block;
}

/* Highlight main button on hover */
.dropdown:hover .dropbtn {
    color: #ff6600; /* Optional: make orange on hover */
}


/* ===== MOVING ORANGE BAR ===== */
.moving-orange-bar {
    background: #ff6600;
    padding: 6px 0;
    color: #fff;
    font-weight: 600;
}
.moving-orange-bar marquee {
    font-size: 15px;
}

/* ===== LOGO + MENU BAR ===== */
.menu-header {
    background: #ffffff;
    padding: 10px 0;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    margin-bottom: 10px;
}
.menu-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.main-logo {
    width: 220px;
}
.main-nav a {
    margin-left: 25px;
    text-decoration: none;
    font-weight: 700;
    color: #000;
    font-size: 16px;
}
.main-nav a.active,
.main-nav a:hover {
    color: #ff6600;
}
/* ===== HERO SLIDER ===== */
.banner-slider {
  width: 1200px;          /* adjust this for desired size */
  height: 650px;          /* adjust height if needed */
  overflow: hidden;
  position: relative;
  margin: 40px auto;      /* centers the banner */
  border-radius: 20px;    /* nice smooth curve all around */
  box-shadow: 0px 4px 20px rgba(0,0,0,0.15); /* optional nice shadow */
}

.banner-slider .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.7s ease;
}

.banner-slider .slide.active {
  opacity: 1;
}

.banner-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;     /* ensures the image also follows curve */
}

/* Hide navigation arrows */
.banner-slider .nav {
  display: none !important;
}

.banner-slider .nav:hover {
  background: rgba(0,0,0,0.6);
}

.banner-slider .prev { left: 15px; }
.banner-slider .next { right: 15px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .menu-flex { flex-direction: column; }
    .main-nav a { margin: 10px; display: inline-block; }
    .slider-img { width: 100%; }
}
.line-wrapper {
    padding: 0 40px;  /* controls space from left and right */
}

.line {
    width: 100%;
    height: 2px;
    background: #ddd;
}
.content-box {
    width: 90%;
    max-width: 1200px;
    margin: 40px auto;
    display: flex;
    gap: 20px;
    align-items: stretch; /* ensures same height */
}

.text-side {
    flex: 2; /* text area bigger horizontally */
    background: #f8f8f8;
    padding: 25px;
    border-radius: 10px;
}

.image-side {
    flex: 1; /* image area smaller */
}

.image-side img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* makes image fill height equally */
    border-radius: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .content-box {
        flex-direction: column;
    }

    .image-side img {
        height: auto;
    }
}
.about-inline-text {
    width: 1200px;            /* same width as white box */
  margin: 20px auto 40px auto;  /* centers the text below the box */
  font-size: 18px;
  line-height: 1.7;
  color: #333;
  text-align: justify;       /* optional: makes it neat */
}
.white-box-center {
  background-color: #ffffff;        /* White background */
  color: #f37021;                   /* Orange text */
  text-align: center;               /* Center text horizontally */
  font-weight: 700;                 /* Bold text */
  font-size: 22px;                  /* Larger font */
  padding: 15px 0;                  /* Vertical padding */
  border-radius: 8px;               /* Rounded corners */
  max-width: 1200px;                 /* Increased width */
  margin: 30px auto 30px auto;     /* Center horizontally with vertical spacing */
  box-shadow: 0 2px 8px rgba(0,0,0,0.1); /* subtle shadow */
}
.below-white-box {
  width: 1200px;            /* same width as white box */
  margin: 20px auto 40px auto;  /* centers the text below the box */
  font-size: 18px;
  line-height: 1.7;
  color: #333;
  text-align: justify;       /* optional: makes it neat */
}
.green-stats-box {
    background-color: #008000; /* green background */
    padding: 50px 0;
    text-align: center;
    color: #fff;
}

.stats-container {
    display: flex;
    justify-content: space-between; /* evenly spaced horizontally */
    width: 1200px;                 /* fixed horizontal width */
    margin: 0 auto;                /* center the container */
    flex-wrap: nowrap;             /* do not wrap */
}

.stat h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
}

.stat p {
    font-size: 40px;
    font-weight: 800;
    margin: 0;
    color: #fff;
}
/* Container width 1200px */
.container-1200 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Container width 1200px */
.container-1200 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Unified Black Footer */
.site-footer-black {
    background-color: #111; /* black */
    color: #fff;
    padding: 40px 0 20px 0;
}

/* Container width 1200px */
.container-1200 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Footer Black Background */
.site-footer-black {
    background-color: #111;
    color: #fff;
    padding: 50px 0 30px 0;
}

/* Footer Columns */
.footer-columns {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 60px; /* increased gap between columns */
}

.footer-column {
    flex: 1 1 300px; /* 3 columns with minimum width */
}

.footer-column h3 {
    font-size: 22px; /* slightly bigger */
    color: #f37021; /* orange heading */
    margin-bottom: 20px;
}

.footer-column p, .footer-column li {
    font-size: 18px; /* slightly bigger */
    line-height: 1.8;
    color: #fff;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li a {
    text-decoration: none;
    color: #fff;
}

.footer-column ul li a:hover {
    color: #f37021;
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    padding: 20px 0;
    font-size: 15px; /* slightly bigger */
    color: #cccccc70;
    border-top: 1px solid #444;
    margin-top: 40px;
}
.white-box-vision {
    background-color: #ffffff7a;   /* White box */
    max-width: 1200px;
    margin: 40px auto;           /* Center horizontally */
    padding: 30px 40px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    text-align: center;
}

.white-box-vision h2 {
    color: #f37021;              /* Orange heading */
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
}

.vision-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.vision-text {
    flex: 1 1 55%;
    text-align: left;
    font-size: 18px;
    line-height: 1.7;
    color: #333;
}

.vision-image {
    flex: 1 1 40%;
}

.vision-image img {
    width: 50%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
}

/* Responsive */
@media (max-width: 768px) {
    .vision-content {
        flex-direction: column;
    }

    .vision-text, .vision-image {
        width: 100%;
    }

    .white-box-vision h2 {
        font-size: 24px;
    }
}
.white-box-expertise {
    background-color: #ffffff73;   /* White box */
    max-width: 1200px;
    margin: 40px auto;           /* Center horizontally */
    padding: 30px 40px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    text-align: center;
}

.white-box-expertise h2 {
    color: #f37021;              /* Orange heading */
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
}

.expertise-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.expertise-text {
    flex: 1 1 50%;
    text-align: left;
}

.expertise-text ul {
    list-style-type: disc;
    padding-left: 20px;
}

.expertise-text ul li {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.expertise-image {
    flex: 1 1 45%;
}

.expertise-image img {
    width: 50%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
}

/* Responsive */
@media (max-width: 768px) {
    .expertise-content {
        flex-direction: column;
    }

    .expertise-text, .expertise-image {
        width: 70%;
    }

    .white-box-expertise h2 {
        font-size: 24px;
    }
}
.white-box-content {
    background-color: #ffffff8a;
    max-width: 1200px;
    margin: 30px auto;
    padding: 30px 40px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    text-align: left;
}

.white-box-content h2 {
    color: #f37021;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center; /* heading centered */
}

.white-box-content p {
    font-size: 18px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 20px;
    text-align: justify;
}

.content-list {
    list-style-type: disc;
    padding-left: 20px;
    font-size: 18px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 20px;
}

.content-list li {
    margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .white-box-content {
        padding: 20px;
    }

    .white-box-content h2 {
        font-size: 24px;
    }

    .white-box-content p,
    .content-list li {
        font-size: 16px;
    }
}
.white-box-content {
    background-color: #f5f5f562;
    max-width: 1200px;
    margin: 30px auto;
    padding: 30px 40px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    text-align: left;
}

.white-box-content h2 {
    color: #f37021;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

.content-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.content-text {
    flex: 1 1 55%;
    font-size: 18px;
    line-height: 1.7;
    color: #333;
    text-align: justify;
}

.content-image {
    flex: 1 1 40%;
}

.content-image img {
    width: 100%;
    max-height: 250px; /* smaller images reduce box height */
    object-fit: cover;
    border-radius: 10px;
}

/* Lists */
.content-list {
    list-style-type: disc;
    padding-left: 20px;
    margin-bottom: 20px;
}

.content-list li {
    margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .content-flex {
        flex-direction: column;
    }

    .content-text, .content-image {
        width: 100%;
    }

    .white-box-content h2 {
        font-size: 24px;
    }

    .content-text, .content-list li {
        font-size: 16px;
    }
}
.white-box-center-image {
    background-color: #ffffff57;
    max-width: 1200px;
    margin: 30px auto;
    padding: 30px 0; /* vertical padding */
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    text-align: center; /* centers the image */
}

.white-box-center-image img {
    width: auto;
    max-width: 100%;
    height: 300px; /* adjust height as needed */
    object-fit: cover;
    border-radius: 10px;
}
.our-products {
    background-color: #f8f8f8;
    padding: 60px 0;
}

.section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #f37021;
    margin-bottom: 50px;
}

.products-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.product-card {
    background-color: #ffffff;
    width: calc(25% - 22.5px); /* 4 cards per row */
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.5s, box-shadow 0.5s;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.product-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    padding: 15px 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .product-card {
        width: calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .product-card {
        width: 100%;
    }
}
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
  }

  .certificate-section {
    padding: 50px 20px;
    background-color: #f5f5f5;
    text-align: center;
  }

  .certificate-section h2 {
    margin-bottom: 40px;
    font-size: 32px;
    color: #333;
  }

  .certificates {
    display: flex;
    justify-content: center;
    gap: 30px; /* spacing between certificates */
    flex-wrap: wrap;
  }

  .certificate {
    flex: 0 0 300px; /* fixed width */
    max-width: 100%;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s;
    background-color: #fff;
  }

  .certificate img {
    width: 100%;
    display: block;
  }

  .certificate:hover {
    transform: translateY(-5px);
  }
  body {
      margin: 0;
      padding: 0;
      font-family: Arial, sans-serif;
    }

    .media-gallery {
      padding: 50px 20px;
      background-color: #ffffff44;
      max-width: 1200px;
      margin: 0 auto;
    }

    .media-gallery h2 {
      text-align: center;
      margin-bottom: 40px;
      font-size: 32px;
      color: #333;
    }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
      /* adjust 250px based on box size you want */
      gap: 20px;
    }

    .gallery-item {
      width: 100%;
      padding-top: 75%; /* This makes a box with 4:3 aspect ratio. Adjust if needed */
      position: relative;
      overflow: hidden;
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(37, 109, 16, 0.1);
      transition: transform 0.3s;
      background-color: #f0f0f0;
    }

    .gallery-item img {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .gallery-item:hover {
      transform: translateY(-5px);
    }

    @media (max-width: 600px) {
      .media-gallery {
        padding: 30px 10px;
      }
    }
     /* General Reset */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
  }

  body {
    background-color: #f9f9f9;
    color: #333;
  }

   body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
    color: #333;
  }
     /* Section Heading */
  .contact-heading {
    text-align: center;
    font-size: 36px;
    color: #1b1b1b;
    margin: 40px 0;
  }
  .contact-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 60px 10%;
    gap: 30px; /* Space between columns */
    background-color: #ffffff;
  }

  .contact-column {
    flex: 1;
    min-width: 250px;
    padding: 30px;
    background-color: #f1f1f1;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.2s ease;
  }

  .contact-column:hover {
    transform: translateY(-5px);
  }

  .contact-column h2 {
    font-size: 24px;
    color: #1b1b1b;
    margin-bottom: 15px;
  }

  .contact-column p, .contact-column a {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    text-decoration: none;
  }

  .contact-column a:hover {
    color: #007bff;
  }

  @media (max-width: 1000px) {
    .contact-section {
      flex-direction: column;
      padding: 40px 5%;
    }

    .contact-column {
      margin-bottom: 20px;
    }
  }
   /* Social Media Section */
  .social-section {
    text-align: center;
    margin: 40px 0;
  }

  .social-section a {
    margin: 0 15px;
    font-size: 28px;
    color: #555;
    transition: color 0.3s;
  }

  .social-section a:hover {
    color: #007bff;
  }
 
.poultry-products {
    max-width: 600px;
    margin: 40px auto;
    /* Approximate font from professional site style */
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #333;
  }

  .poultry-products h2 {
    font-size: 26px;  /* approximate */
    margin-bottom: 18px;  /* approximate spacing */
    color: #1b1b1b;
    font-weight: normal;
  }

  .poultry-products ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .poultry-products ul li {
    font-size: 16px;  /* approximate */
    line-height: 1.6;
    margin-bottom: 12px;
  }

  .poultry-products ul li:first-child {
    color: green;
    font-weight: bold;
  }
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Wrapper */
.product-card {
    display: flex;
    align-items: stretch;    /* Makes left + right same height */
    gap: 20px;
    width: 100%;
    max-width: 1300px;
    margin: auto;
}

/* Left Box */
.card-left {
    width: 240px;
    background: #e96a0c;
    color: white;
    padding: 20px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;   /* Vertical center text */
}

.product-title {
    text-align: center;
    font-size: 18px;
    line-height: 1.2;
    font-weight: bold;
}

/* Right Box */
.card-right {
    flex: 1;
    background: #2f80b3;
    border-radius: 10px;
    padding: 40px;
    color: white;
    position: relative;
}

/* Menu Icon */
.hamburger {
    position: absolute;
    left: 20px;
    top: 20px;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: #000;
    margin: 4px 0;
    border-radius: 2px;
}

/* Text inside right card */
.card-content {
    margin-top: 30px; /* Push content below icon */
}

.label {
    margin-top: 20px;
    margin-bottom: 10px;
    font-weight: bold;
}

ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

ul li {
    margin-bottom: 8px;
}
.card-right {
    text-align: left;
}
.synergy-link {
    color: #FFD700;      /* Yellow */
    font-weight: bold;   /* Bold */
    text-decoration: none;
}

.synergy-link:hover {
    color: #FFEB3B;      /* Brighter yellow on hover */
    text-decoration: underline;
}

