/* Global Styles */
body {
  font-family: "Poppins", serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background-color:#fdfdfd;
}

.banner {
  height: 50vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 50px;
  font-weight: bold;
  text-align: justify;
  line-height: 1.6;

  font-family: "Montserrat", serif;
  margin-bottom: 10px;
  background-color:#d7eaf1;
  /* background: linear-gradient(135deg, rgba(173, 216, 230, 0.4) 25%, rgba(255, 240, 245, 0.4) 50%, rgba(255, 255, 224, 0.4) 75%);
  background-size: 400% 400%; /* Spread the colors */
  /* animation: moveBackground 10s ease infinite; */ */
  padding: 20px;
  box-sizing: border-box;
}

@keyframes moveBackground {
  0% {
    background-position: 0% 0%;
  }
  50% {
    background-position: 100% 100%;
  }
  100% {
    background-position: 0% 0%;
  }
}


/* Basic Button Style */
.styled-button {
  background-color: #0ABAB5; /* Blue background */
  color: white; /* White text */
  padding: 12px 24px; /* Vertical and horizontal padding */
  border: none; /* No border */
  border-radius: 8px; /* Rounded corners */
  font-size: 16px; /* Font size */
 text-decoration:none;
  cursor: pointer; /* Pointer cursor on hover */

  font-family:"poppins",serif;
  display: inline-block; /* Ensure the button doesn't take up the full width */
  transition: background-color 0.3s ease, transform 0.3s ease; /* Smooth transition for background color and scaling */


}
footer{
  background-color:#B3ECEC;
}
.footer {

  
  padding: 20px 15px; /* Reduced padding */
  text-align: center;
}

.footer-container {
  display: flex;

  justify-content: center;
  gap: 30px; /* Reduced gap */
  max-width: 1100px;
  margin: 0 auto;
}

.footer-col {
  flex: 1;
  min-width: 200px; /* Adjusted min width */
}

.footer-col h3 {
  font-size: 1rem; /* Reduced font size */
  margin-bottom: 8px;
  color:  #0ABAB5; /* Reduced spacing */
}

.footer-col p,
.footer-col ul {
  font-size: 0.9rem; /* Adjusted text size */
  margin: 5px 0;
  
}

.footer-col ul {
  list-style: none; /* Removes bullet points */
  padding: 0;
  margin: 0;
}


.footer-col ul li {
  margin-bottom: 3px;
}

.footer-col ul li a {
  text-decoration: none;

  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: #00bcd4;
}
.social-icons {
  margin-top: 10px;
}

.social-icons a {
  display: inline-block;
  margin-right: 10px;
  font-size: 20px;
  color: #fff; /* Adjust color as needed */
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #1da1f2; /* Change color on hover */
}

/* Responsive for smaller screens */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px; /* Reduced vertical spacing */
  }

  .footer-col {
    margin-bottom: 10px; /* Reduced margin */
  }
}
.banner-left,
.banner-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;  /* Centers content horizontally within each section */
  justify-content: center; /* Centers content vertically within each section */
  text-align: center; 
}

.banner-right img {
  max-width: 50%;
  height: auto;
  border-radius: 10px;
}


/* Responsive adjustments */
@media (max-width: 768px) {
  .banner {
    flex-direction: column;
    height: auto; /* Allow height to adjust based on content */
    text-align: center;
  }
  
  .banner-left,
  .banner-right {
    padding: 10px;
  }
  
  .banner-right {
    margin-top: 20px;
  }
  .banner-right img{
    height:auto;
  }
}
@media(min-width:769px) and (max-width:1288px){
  .banner-right img{
     max-width:100%;
      height:auto;
  }
}
.pp{
  font-size: 40px;
  font-weight: 600;
  font-family:"poppins",serif;
    line-height: 1.6;
  

}
.pp .chicken{
  color:#0ABAB5;
}
/* Responsive Banner */
.whatsapp-chat {
  position: fixed;
  bottom: 20px; /* Space from the bottom */
  right: 20px; /* Space from the right */
  z-index: 1000;
}

.whatsapp-chat .whatsapp-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-chat .whatsapp-icon:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}
@media (max-width: 768px) {
  
  
  .whatsapp-chat .whatsapp-icon {
    width: 50px;
    height: 50px;
  }

  .whatsapp-chat {
    bottom: 95px; /* Slightly closer to the bottom */
    right: 30px;  /* Add more space from the right */
  }
}

@media (max-width: 480px) {
  .whatsapp-chat .whatsapp-icon {
    width: 40px;
    height: 40px;
  }

  .whatsapp-chat {
    bottom: 15px; /* Consistent bottom spacing */
    right: 15px;  /* Add extra space from the right */
  }
}

@media (max-width: 1140px) {
  .banner-product {
    height: 30%;
  }
  .title-product {
    font-size: 2rem;
  }
}

@media (max-width: 850px) {
  .banner-product {
    height: 25%;
  }
  .title-product {
    font-size: 1.8rem;
  }
}

@media (max-width: 500px) {
  .banner-product {
    height: 20%;
  }
  .title-product {
    font-size: 1rem;
  }
}


.products-section {
 
  padding: 50px 200px;

  text-align: center;
}

h2 {
  font-size: 2.5em;
  color: #333;
}

/* Grid Layout Styles */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 5 products per row on large screens */
  gap: 1.5rem; /* Space between cards */
  padding: 20px;
}

/* Product Card Styles */
.product-card {
  background: #ffffff;
  min-height:240px;
  height: 100%; /* Flexible height */
  width: 100%; /* Flexible width */
  max-width: 200px; /* Max width for larger screens */
  margin: auto;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 0.5rem;

  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
}




/* Image Styling */
.product-image {
  width: 100%; /* Full width */
  height: auto; /* Auto height to maintain aspect ratio */
  max-height: 160px; /* Prevents images from becoming too large */
  border-radius: 8px;
  object-fit: contain; /* Ensures the whole image fits without cropping */
}


/* Product Title Styling */
.product-title {
 color:#444444;
  text-align: left;
  font-family: "Poppins", serif;
  font-weight: 490;
  font-style: normal;
  


}



/* Mobile Styles */
@media (max-width: 1155px) {
  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr)); /* Adjust grid for smaller screens */
  }
  .products-section {
    padding: 50px 20px;
    background-color: #f4f4f4;
    text-align: center;
  }
  .product-card {
    min-height:200px;
    max-width: 100%; /* Let the card take up full available width */
  }

  .product-image {
    min-height: 60%; /* Adjust image height for smaller screens */
  }
  .product-title {
 
    text-align: left;
    font-family: "Poppins", serif;
    font-weight: 490;
    font-style: normal;
    font-size:0.7rem;
    margin-top:-29px;
  
  }
  .contact-container {
    grid-template-columns: 1fr; /* Single column layout for small screens */
  }

}







/* General Styles */
body {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Navbar Styling */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
  padding: 15px 20px;
 
}

/* Logo */
.logo {
  font-weight:600;
  font-size:18px;
 
  text-decoration: none;
  /* font-size: 1.5rem; */
  margin:auto;
}

/* Nav Links */
.nav-links {
  display: flex;
  gap: 80px;
  list-style: none;
  margin:auto;
  padding: 0;
 
}

.nav-links li a {
  text-decoration: none;
  color:#808080;
  font-size:17px;
  
  padding: 8px 12px;
  transition: color 0.3s ease-in-out;
}

/* Hover Effect */
.nav-links li a:hover {
  color: #e63946;
}

/* Hamburger Menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 24px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1100;
}

.menu-toggle .bar {
  width: 100%;
  height: 3px;
  background-color: #333;
  transition: all 0.3s ease-in-out;
}

/* Responsive Design */
@media (max-width: 768px) {

  .nav-links {
    gap:40px;
      position: fixed;
      top: 0;
      right: -100%;
      width: 200px;
      height: 100vh;
      background: #fff;
      box-shadow: -4px 0 6px rgba(0, 0, 0, 0.1);
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      padding: 20px;
      transition: right 0.3s ease-in-out;
  }

  .nav-links.show {
      right: 0;
  }

  .menu-toggle {
      display: flex;
  }

  /* Change Hamburger to "X" */
  .menu-toggle.open .bar:nth-child(1) {
      transform: translateY(10px) rotate(45deg);
  }

  .menu-toggle.open .bar:nth-child(2) {
      opacity: 0;
  }

  .menu-toggle.open .bar:nth-child(3) {
      transform: translateY(-10px) rotate(-45deg);
  }
}
