.navbar-brand img {
  width: 100px; /* Change this value to adjust the width */
  height: 50%; /* Ensures the image maintains its aspect ratio */
  
}
.banner__media-mobile {
  position: relative;
  width: 100vw; /* Full viewport width */
  height: 100vh; /* Full viewport height */
 
  padding-top: 20px;
}

.banner__media-mobile img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures the image covers the entire area while maintaining aspect ratio */
  border-radius: 0; /* Remove the border-radius to fit perfectly on full screen */
  box-shadow: none; /* Remove box-shadow for a clean fullscreen look */
  
}




/* Responsive Design */
@media (max-width: 768px) {
  .banner__media-mobile {
    padding: 10px;
  }

  .banner__media-mobile img {
    border-radius: 8px;
  }
}

@media (max-width: 480px) {
  .banner__media-mobile {
    padding: 5px;
  }

  .banner__media-mobile img {
    border-radius: 5px;
  }
}


.home-product-button {
  text-align: center; /* Center the button in the container */
  margin:  auto; /* Space above and below the button and center it horizontally */
  color: white;
  background-color: rgb(28, 129, 206);
  width: 150px; /* Set the desired width */
  height: 50px; /* Set the desired height */
  display: flex; /* Use flexbox for centering */
  align-items: center; /* Center vertically */
  justify-content: center; /* Center horizontally */
  border-radius: 5px; /* Optional: Rounded corners */
}

.home-product-button a {
  color: white; /* Text color */
  text-decoration: none; /* Remove underline */
  width: 100%; /* Ensure the link fills the button */
  height: 100%; /* Ensure the link fills the button */
  display: flex; /* Use flexbox for centering text inside the link */
  align-items: center; /* Center text vertically */
  justify-content: center; /* Center text horizontally */
}





.preloder {
  
  background: #142d70 url('./images/proloader.gif') no-repeat center center; 
  background-size: 100%;
  width: 100%;
  height: 100vh;
  position: fixed;
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 768px) {
  .preloder {
    background-size: 100%;
  }
}

@media (max-width: 480px) {
  .preloder {
    background-size: 100%;
}
}


.home-banner {
  width: auto;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.home-banner img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  
}


.home-banner {
  text-align: center;
  margin: 20px 0;
}


@media (min-width: 1440px) {
  .home-banner img {
      width: 200%; /* Adjust image size for larger screens */
      padding: 10px;
  }
}

@media (min-width: 768px) {
  .home-banner img {
      max-width: 100%; /* Adjust image size for larger screens */
      padding: 10px;
  }
}

@media (min-width: 412px) {
  .home-banner img {
      max-width: 100%; /* Adjust image size for larger screens */
      padding: 10px;
  }
}




.product-text-slider h2 {
  text-align: center; /* Set alignment to center */
  font-family: 'Times New Roman', Times, serif; /* Change font style to Arial */
  color: #982f2f;
  font-weight: bold; /* Make font bold */
  font-size: 40px; /* Change font size to 24px */
}

.hidden {
  display: none;
}
.container-fluid{
  background-color: mintcream;
}

.card-title, .card-text{
  text-align: center;
}
/* Contant to center and set background for the slider */
.contant {
  display: flex;
  justify-content: center; /* Center the carousel */
  align-items: center;
  height: 50vh; /* Make contant height full viewport */
  background-image: url('./images/slider\ bg.png'); /* Set the sidebar background image */
  background-size: auto; /* Make the background image cover the entire contant, including full width */
  background-repeat: no-repeat; /* Prevent the image from repeating */
  background-position: center; /* Center the background image */
}
/* Set the width of the carousel */
#carouselExampleRide {
  width: 50%; /* Set the carousel width to 70% */
}

/* Carousel item images */
.carousel-item img {
  width: 100%;
  height: 100%; /* Ensure the image takes up the full height of the carousel */
  object-fit: cover; /* Maintain aspect ratio and cover the area */
}

/* Responsive adjustments */
@media (max-width: 768px) {
  #carouselExampleRide {
    width: 100%; /* Set carousel width to 100% on smaller screens */
  }
}

@media (max-width: 480px) {
  #carouselExampleRide {
    width: 100%; /* Set carousel width to 100% on very small screens */
  }
}

/* card */

.new-card-container {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap; /* Wrap cards on smaller screens */
  gap: 20px; /* Space between cards */
  padding: 20px; /* Padding around the container */
  
  padding: 5%;
}

.new-card {
  background: #fff; /* White background for cards */
  border-radius: 15px; /* Rounded corners */
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Shadow for depth */
  overflow: hidden; /* Ensure content stays within card */
  width: 350px; /* Fixed width */
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, border 0.3s ease; /* Smooth transition for hover effect */
  text-align: center; /* Center align text */
  position: relative; /* Positioning context for pseudo-element */
}

.new-card:hover {
  transform: scale(1.05); /* Slightly enlarge the card on hover */
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3); /* Enhanced shadow on hover */
  background-color: #f9f9f9; /* Change background color on hover */
}



.new-card:hover::before {
  opacity: 1; /* Show overlay on hover */
}

.new-btn {
  display: inline-block;
  padding: 10px 20px;
  margin-top: 10px;
  background-color: #007bff; /* Button background color */
  color: #fff; /* Button text color */
  text-decoration: none; /* Remove underline */
  border-radius: 5px; /* Rounded corners */
  transition: background-color 0.3s ease, transform 0.3s ease; /* Smooth transition */
}

.new-btn:hover {
  background-color: #0056b3; /* Darker background on hover */
  transform: scale(1.05); /* Slightly enlarge on hover */
}


.new-card-img {
  width: 100%; /* Image fills the width of the card */
  height: 200px; /* Fixed height for image */
  object-fit: cover; /* Ensure image covers the area */
  border-bottom: 1px solid #ddd; /* Divider between image and content */
}

.new-card-body {
  padding: 20px; /* Padding inside card body */
}

.new-card-title {
  font-size: 1.4rem; /* Title font size */
  margin-bottom: 10px; /* Space below title */
  color: #333; /* Title color */
  font-weight: bold; /* Bold title */
}

.new-card-text {
  font-size: 1rem; /* Text font size */
  margin-bottom: 15px; /* Space below text */
  color: #666; /* Text color */
}


  .new-btn {
    display: inline-block; /* Allows padding and margin */
    padding: 10px 20px; /* Padding around the button */
    font-size: 16px; /* Font size for the button */
    color: #fff; /* Text color */
    background-color: #007bff; /* Button background color */
    border-color: #007bff; /* Remove default border */
    border-radius: 5px; /* Rounded corners */
    text-decoration: none; /* Remove underline */
    text-align: center; /* Center text */
    transition: background-color 0.3s ease, transform 0.2s ease; /* Transition effects */
  }
  
  .new-btn:hover {
    background-color: #0056b3; /* Darker background on hover */
    transform: translateY(-2px); /* Move button up slightly on hover */
  }


/* Responsive breakpoints */
@media (max-width: 768px) {
  .new-card {
      width: 100%; /* Full width on smaller screens */
  }
}


.my-div {
  background-color: #0799cc;
  padding-top: 2em; /* Using em for better scalability */
  padding-bottom: 1em;
  border: 1px solid #ccc;
  text-align: center;
  font-size: 2rem; /* Responsive font size */
}
.welcome-message {
  font-family: Georgia, 'Times New Roman', Times, serif; /* change the font family to Arial */
   /* change the font style to italic */
  font-size: 36px; /* change the font size to 24px */
  color: white; /* change the text color to a blue shade */
}

/* Paragraph inside .my-div */
.my-div p {
  font-size: 20px; /* Scalable font size */
  padding-left: 5%; /* Relative padding to adapt to screen size */
  padding-right: 5%;
  padding-top: 1em;
  font-family: sans-serif; /* Add font family */
  color: white; /* change the text color to a blue shade */
}

/* Media query for tablets and smaller devices */
@media (max-width: 768px) {
  .my-div {
    font-size: 1.5rem; /* Smaller font for tablet devices */
    padding-top: 1.5em;
    padding-bottom: 0.75em;
  }
 
  .my-div p {
    font-size: 1rem;
    padding-left: 3%;
    padding-right: 3%;
  }
}

/* Media query for mobile devices */
@media (max-width: 480px) {
  .my-div {
    font-size: 1.2rem; /* Smaller font for mobile */
    padding-top: 1em;
    padding-bottom: 0.5em;
  }

  .my-div p {
    font-size: 0.9rem;
    padding-left: 2%;
    padding-right: 2%;
  }
}
/* Global Styles */

.background-section {
  background-color: #ffd738; /* light gray background */
  padding: 20px;
  
}
.title-text{
  font-family: Georgia, 'Times New Roman', Times, serif;
  
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.card-item {
  background-color: #fff; /* white background */
  border: 1px solid #ddd; /* light gray border */
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  margin: 20px;
  padding: 20px;
  width: calc(25% - 40px); /* 25% width with 40px margin */
}

.title-text {
  font-weight: bold;
  margin-bottom: 10px;
  text-align: center; /* add this line to center the text */
}

.description-text {
  font-size: 16px;
  line-height: 1.5;
}

/* Responsive Design */

@media (max-width: 768px) {
  .card-item {
      width: calc(50% - 40px); /* 50% width with 40px margin on smaller screens */
  }
}

@media (max-width: 480px) {
  .card-item {
      width: 100%; /* full width on very small screens */
      margin: 20px 0;
  }
}
/* Background container styling */
.bg-container {
  background-color: #4caf50; /* Light grey background for the container */
  padding: 50px 20px; /* Padding around the container */
  border-radius: 10px; /* Slight rounding of container edges */
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); /* Subtle shadow effect */
}
.heading-text{
  font-family: Georgia, 'Times New Roman', Times, serif;
 
}

/* Card wrapper styling */
.content-wrapper {
  display: flex;
  justify-content: space-around; /* Evenly spaces the cards */
  flex-wrap: wrap; /* Allows cards to wrap on smaller screens */
  gap: 20px; /* Adds space between the cards */
}

/* Individual card styling */
.content-card {
  background-color: #ffffff; /* White background for the cards */
  padding: 25px;
  border-radius: 10px; /* Rounding of card edges */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Card shadow effect */
  width: calc(50% - 20px); /* Makes each card take half the width with space between */
  margin-bottom: 20px;
  transition: transform 0.3s ease; /* Animation for hover effect */
}

.content-card:hover {
  transform: translateY(-5px); /* Moves the card slightly upwards on hover */
}

/* Title text styling */
.heading-text {
  font-size: 1.8rem;
  color: white; /* Darker grey for the title */
  margin-bottom: 15px;
  font-weight: bold;
  text-align: center;
}

/* Body text styling */
.body-text {
  font-size: 1.1rem;
  color: #666; /* Medium grey for the paragraph */
  line-height: 1.6; /* Spacing between lines of text */
  text-align: justify;
}

/* Responsive design for smaller screens */
@media (max-width: 768px) {
  .content-card {
      width: calc(100% - 20px); /* Makes the cards full-width on smaller screens */
  }
}



/* about */
.About {
  text-align: center;
  font-family: Arial, sans-serif;
  font-size: 28px;
  color: rgb(0, 0, 0);
  padding-top: 1%;
  padding-bottom: 1%;
  background-image: url('./images/about.png');
 
}


.image-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap; /* Allow images to wrap on smaller screens */
  margin: 0 auto;
  max-width: 1200px; /* Maximum width of container */
  padding: 20px; /* Padding around the container */
}

.image-box {
  flex: 1 1 calc(50% - 20px); /* Each image box takes up 50% width minus margin */
  margin: 10px; /* Margin around each image box */
  box-sizing: border-box; /* Include padding and margin in width calculation */
  padding: 1%;
}

.image-box img {
  width: 100%; /* Make image take up full width of its container */
  height: auto; /* Maintain aspect ratio */
  display: block; /* Remove inline spacing */
  border-radius: 10px; /* Rounded corners */
  object-fit: cover; /* Ensure the image covers the area while maintaining aspect ratio */
}
.card-body3 {
  padding: 20px; /* Padding around the text */
  font-family: Arial, sans-serif;
  background-color:transparent; /* Background color for the text area */
  max-width: 600px; /* Maximum width to control the width of the text area */
  margin: 0 auto; /* Center the text area horizontally */
  text-align: center; /* Center align the text */
  border-radius: 10px; /* Rounded corners */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
  box-sizing: border-box; /* Include padding and border in the element's total width and height */
}

.card-body3 p {
  font-size: 16px; /* Base font size */
  line-height: 1.6; /* Line height for readability */
  color: #444444; /* Text color */
  margin: 0; /* Remove default margin */
}

@media (max-width: 768px) {
  .card-body3 {
      padding: 15px; /* Adjust padding for smaller screens */
      max-width: 90%; /* Make the text area more fluid on smaller screens */
  }

  .card-body3 p {
      font-size: 14px; /* Slightly smaller text on smaller screens */
  }
}


/* Responsive breakpoints */
@media (max-width: 768px) {
  .image-box {
      flex: 1 1 100%; /* Each image box takes up 100% width on smaller screens */
      margin: 5px 0; /* Reduce margin for smaller screens */
  }
}
.image-box, .card-body3 {
  opacity: 0; /* Initially hidden */
  transition: opacity 1s ease-in-out, transform 1s ease-in-out; /* Smooth transitions */
}

.card-body3 {
  transform: translateY(20px); /* Start from below */
}

/* General Styling */


.info-card-body {
  background-color: #f9f9f9;
  padding: 10px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  max-width: 1500px;
  margin: 0 auto;
  line-height: 1.6;
}

.info-card-text {
  font-size: 20px;
  color: #333;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .info-card-body {
      padding: 15px;
  }

  .info-card-text {
      font-size: 15px;
  }
}

@media (max-width: 768px) {
  .info-card-body {
      padding: 10px;
  }

  .info-card-text {
      font-size: 14px;
  }
}

@media (max-width: 480px) {
  .info-card-body {
      padding: 8px;
  }

  .info-card-text {
      font-size: 13px;
  }
}






/*product*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Product container styling */
.product-container {
  display: flex;
 
  flex-wrap: wrap; /* Allow items to wrap to new lines */
  justify-content: center;
  align-items: center;
  gap: 20px; /* Adds spacing between the product items */
  padding: 10px; /* Optional: Adds padding around the container */
}

/* Styling for the main item container */
.item {
  text-align: center;
  font-family: Arial, sans-serif;
  font-size: 28px;
  color: rgb(0, 0, 0);
  background-color: rgb(182, 230, 12);
  background-image: url('.images/product\ bg.png'); /* Use correct URL */
  background-size: cover; /* Ensure the background image covers the container */
  background-position: center; /* Center the background image */
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(12, 12, 12, 0.1);
  margin: 10px;
  padding: 2% 0 1%; /* Adjusted padding */
  
}
/* Styling for each recipe */
.recipe {
  text-align: center;
  font-family: Arial, sans-serif;
  font-size: 18px; /* Adjusted font size for responsiveness */
  color: rgb(0, 0, 0);
  background-color: rgb(255, 255, 255);
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(12, 12, 12, 0.1);
  margin: 10px;
  transition: transform 0.3s ease;
  padding-bottom: 2%;
  padding-top: 2%;
  width: calc(25% - 20px); /* Default width for 4 recipes per row */
}

/* Hover effect for recipe cards */
.recipe:hover {
  transform: translateY(-20px);
}

/* Recipe image styling */
.recipe img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
}


/* Product title and description styling */
.product-title {
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: bold;
}

.product-description {
  font-size: 14px;
  color: #555;
  margin-bottom: 15px;
  width: 100%; /* Adjust width to ensure responsiveness */
}



.pro a.btn-primary:hover {
  background-color: #0056b3;
  transform: scale(1.05); /* Slightly scale up on hover */
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .recipe {
      width: calc(25% - 20px); /* 4 recipes per row */
  }
}

@media (max-width: 768px) {
  .recipe {
      width: calc(50% - 20px); /* 2 recipes per row */
  }
}

@media (max-width: 576px) {
  .recipe {
      width: calc(100% - 20px); /* 1 recipe per row */
  }
}

@keyframes slideUp {
  from {
      transform: translateY(50%);
      opacity: 0;
  }
  to {
      transform: translateY(0);
      opacity: 1;
  }
}




/*shop*/
.product-card2 {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition-delay: var(--animation-delay, 0s); /* Use the custom delay set by JS */
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
  background-color: rgb(255, 255, 255);
  padding-left: 1%;
  padding-right: 1%;
}

.product-card2.visible {
  opacity: 1;
  transform: translateY(0);
}

.product-container2 {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  background-color: whitesmoke;
  padding-top: 2%;
  padding-bottom: 2%;
}



.product-card2:hover {
  transform: translateY(-10px) scale(1.1) rotate(-3deg);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.product-card2 img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.product-info {
  padding: 15px;
}

.product-title2 {
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: bold;
  color: #333;
  text-align: center;
}

.product-description2 {
  font-size: 14px;
  color: #777;
  margin-bottom: 15px;
}

.product-price2 {
  font-size: 16px;
  font-weight: bold;
  color: #27ae60;
  margin-bottom: 10px;
}

.add-to-cart-btn {
  background-color: #27ae60;
  color: white;
  padding: 10px 15px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.add-to-cart-btn:hover {
  background-color: #219150;
  transform: scale(1.1); /* Increases the button size by 10% */
}


/* testimonial */
.container{
  padding: 4%;
}
/* Styles for merging section */
.mergesection-two {
  position: relative;
  padding: 60px 0;
  background-color: #f9f9f9;
}

.mergesection-two-inner {
  position: relative;
  z-index: 2;
}

.section-heading {
  margin-bottom: 40px;
}

.section-heading h6 {
  
  color: #ff5723;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.section-heading h2 {
  font-size: 36px;
  font-weight: 700;
  color: #333;
  margin-top: 10px;
}




/* Container for the testimonial cards */
.testimonial-container {
  display: flex;
  gap: 20px; /* Space between cards */
  flex-wrap: wrap; /* Allow cards to wrap to the next line */
  justify-content: center; /* Center cards horizontally */
}

/* Basic styles for testimonial card */
.testimonial-card {
  background-color: #ffffff;
  padding: 15px; /* Adjust padding for a smaller card */
  border-radius: 8px; /* Slightly smaller border-radius */
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1); /* Smaller shadow */
  position: relative;
  width: calc(25% - 20px); /* 4 cards per row on larger screens */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden; /* Hide overflow for rounded corners */
  display: flex;
  align-items: center;
}

.testimonial-card:hover {
  transform: scale(1.05);
  box-shadow: 0px 5px 12px rgba(0, 0, 0, 0.2);
}

/* Image styles */
.testimonial-image img {
  width: 70px; /* Slightly smaller image */
  height: 70px; /* Maintain aspect ratio */
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #ff5723; /* Border around the image */
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2); /* Shadow for the image */
}

/* Text styles */
.testimonial-text {
  margin-left: 10px; /* Adjust margin for smaller card */
}

.testimonial-paragraph {
  font-size: 15px; /* Slightly smaller font size */
  line-height: 1.6;
  color: #333;
  margin-bottom: 10px;
  font-style: italic;
}

.testimonial-name {
  font-size: 13px; /* Slightly smaller font size */
  color: #ff5723;
  font-weight: bold;
}

/* Responsive styles */
@media (max-width: 768px) {
  .testimonial-card {
    width: calc(50% - 20px); /* Two cards per row */
    flex-direction: column; /* Stack image and text vertically */
    align-items: flex-start;
  }

  .testimonial-image img {
    width: 60px;
    height: 60px;
  }
}

@media (max-width: 480px) {
  .testimonial-card {
    width: calc(100% - 20px); /* Full-width card on very small screens */
  }

  .testimonial-image img {
    width: 50px;
    height: 50px;
  }

  .testimonial-paragraph {
    font-size: 14px;
  }

  .testimonial-name {
    font-size: 12px;
  }
}




/* Footer */
footer {
  background-color: #8b0000;
  padding: 40px 0;
  color: #f7efef;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer-logo img {
  width: 150px;
  padding-right: 10%;
}

.footer-nav, .footer-social, .footer-contact, .footer-subscribe {
  flex: 1;
  min-width: 200px;
  margin: 10px 0;
}

.footer-nav h3, .footer-social h3, .footer-contact h3, .footer-subscribe h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.footer-nav ul {
  list-style: none;
  padding: 0;
}

.footer-nav ul li {
  margin-bottom: 8px;
}

.footer-nav ul li a {
  color: #ebe1e1;
  text-decoration: none;
  font-size: 14px;
}

.footer-nav ul li a:hover {
  text-decoration: underline;
}

.footer-social a {
  margin-right: 10px;
}

.footer-social img {
  width: 24px;
  height: 24px;
}

.footer-contact p {
  font-size: 14px;
  margin: 5px 0;
}

.footer-contact a {
  color: #f7eded;
  text-decoration: none;
}

.footer-contact a:hover {
  text-decoration: underline;
}

.footer-subscribe input[type="email"] {
  padding: 10px;
  width: 80%;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.footer-subscribe button {
  padding: 10px 20px;
  border: none;
  background-color: #007bff;
  color: white;
  cursor: pointer;
  border-radius: 5px;
}

.footer-subscribe button:hover {
  background-color: #0056b3;
}

.footer-bottom {
  text-align: center;
  margin-top: 20px;
  font-size: 12px;
  
  
}

@media (max-width: 768px) {
  .footer-container {
      flex-direction: column;
      align-items: center;
  }

  .footer-logo {
      margin-bottom: 20px;
  }
}

.llogo {
  display: flex;
  justify-content: center; /* Centers the logo horizontally */
  align-items: center; /* Centers the logo vertically if necessary */
}

.llogo img {
  max-width: 80%;
  height: auto; /* Ensures the image scales proportionally */
  width: auto; /* Allows the image to scale with the container */
}






/* prodcuct page */
.shop{
  background-color: whitesmoke;
}
.navbar {
  z-index: 1; 
}

.section-title {
  font-family: Georgia, 'Times New Roman', Times, serif ;
  font-weight: bold;
  text-align: center;
  font-size: 1.8em;
  margin-bottom: 20px;
  color: rgb(152, 47, 47);
  padding-top: 2%;
  
}
.milk-products {
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto; /* Add this to center the container */
  width: 90%;
}

.product {
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 5px;
  width: calc(33.333% - 20px); /* Three products per row */
  background-color: white;
  margin: 10px;
  display: flex;
  flex-direction: column; /* Stack content vertically inside the product */
  justify-content: center; /* Centers content horizontally */
  align-items: center; /* Centers content vertically */
}


/* Overlay effect on hover */
.product::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3); /* Dark overlay */
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* Change background color and show overlay on hover */
.product:hover {
  background-color: #e7e5e7; /* Light background color change */
}

.product img {
  width: 70%;
  height: auto;
  border-radius: 8px 8px 0 0;
  margin: 0 auto; /* Centers the image within the product */
}

.product h3 {
  margin: 15px 0 10px;
  font-size: 1.2em;
  text-align: center; /* Centers the heading */
}


.product p {
  margin: 5px 0;
  color: #555;
  text-align: center;
}



/* Responsive styles */
@media (max-width: 1200px) {
  .product {
    width: calc(33.333% - 20px); /* Three products per row */
  }
}
@media (max-width: 900px) {
  .product {
    width: calc(50% - 20px); /* Two products per row */
  }
}

@media (max-width: 600px) {
  .product {
    width: calc(100% - 20px); /* One product per row */
   
   
  }
}



/*paneer*/
.paneer-products {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* Centers content inside the container */
  margin: 0 auto; /* Centers the container on the page */
  background-color: whitesmoke;
  gap: 10px;
  width: 90%; /* Adjust this width as needed to control the container's size */
  
}

.paneer {
  border: none;
  border-radius: 12px;
  overflow: hidden;
  background-color: white;
  padding: 20px;
  text-align: center;
  width: calc(25% - 20px); /* Four cards per row with gap adjustment */
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin: 5px; /* Add space between cards */
}


/* Hover effects */
.paneer:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}
.paneer::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3); /* Dark overlay */
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* Change background color and show overlay on hover */
.paneer:hover {
  background-color: #e7e5e7; /* Light background color change */
}

.paneer:hover::after {
  opacity: 1; /* Show overlay on hover */
}

/* Image styling */
.paneer img {
  width: 100%; /* Make the image fill the card width */
  height: auto; /* Maintain aspect ratio */
  border-radius: 12px 12px 0 0;
  margin-bottom: 15px;
}

/* Title styling */
.paneer h3 {
  margin: 10px 0;
  font-size: 1.4em;
  color: #333;
  font-weight: 600;
}

/* Description styling */
.paneer p {
  margin: 5px 0;
  color: #666;
  font-size: 0.9em;
}

/* Button styling */
.paneer button {
  margin-top: 15px;
  padding: 12px 20px;
  background-color: #ff6f61;
  color: white;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  position: relative; /* Ensure button is not covered */
  z-index: 10; /* Ensure button is on top */
}

/* Button hover effect */
.paneer button:hover {
  background-color: #e55b50;
  /* Remove transform temporarily for debugging */
}


/* Responsive styles */
@media (max-width: 1200px) {
  .paneer {
    width: calc(33.333% - 20px); /* Three cards per row */
  }
}

@media (max-width: 900px) {
  .paneer {
    width: calc(50% - 20px); /* Two cards per row */
  }
}

@media (max-width: 600px) {
  .paneer {
    width: calc(100% - 20px); /* One card per row */
  }
}

/*Ghee*/
.product-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* Centers content inside the container */
  margin: 0 auto; /* Centers the container on the page */
  background-color: whitesmoke;
  gap: 10px;
  width: 90%; /* Adjust this width as needed to control the container's size */
  
}

.item-card {
  border: none;
  border-radius: 12px;
  overflow: hidden;
  background-color: #fff;
  padding: 20px;
  text-align: center;
  width: calc(25% - 20px); /* Four cards per row with gap adjustment */
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin: 5px;
}

/* Hover effects */
.item-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

/* Overlay effect on hover */
.item-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3); /* Dark overlay */
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* Change background color and show overlay on hover */
.item-card:hover {
  background-color: #e7e5e7; /* Light background color change */
}

.item-card:hover::after {
  opacity: 1; /* Show overlay on hover */
}

.item-card img {
  width: 100%; /* Make the image fill the card width */
  height: auto; /* Maintain aspect ratio */
  border-radius: 12px 12px 0 0;
  margin-bottom: 15px;
}


.item-card h3 {
  margin: 15px 0 10px;
  font-size: 1.2em;
}

.item-card p {
  margin: 5px 0;
  color: #555;
}

.item-card button {
    margin-top: 15px;
    padding: 12px 20px;
    background-color: #ff6f61;
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    position: relative; /* Ensure it’s not covered */
    z-index: 10; /* Ensure it’s above other elements */
  }
  

.item-card button:hover {
  background-color: #e55b50;;
}


/* Responsive styles */
@media (max-width: 1200px) {
  .item-card {
    width: calc(33.333% - 20px); /* Three products per row */
  }
}

@media (max-width: 900px) {
  .item-card {
    width: calc(50% - 20px); /* Two products per row */
  }
}

@media (max-width: 600px) {
  .item-card {
    width: calc(100% - 20px); /* One product per row */
  }
}

/* About Page */


/* Full width container */
/* Full screen container */
.about-image-container {
  width: 100%; /* Full viewport width */
  height:50%; /* Full viewport height */
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 2%;
  padding-right: 2%;
  border-radius: 5%;
}

/* Full screen image */
.about-image-container img {
  width: 100%; /* Full width of the container */
  height: 50%; /* Full height of the container */
 
  border-radius: 0; /* Remove border radius for full screen */
}


/* Responsive adjustments */
@media (max-width: 1200px) {
  .about-image-container img {
    max-width: 100%; /* Ensure image doesn't exceed the container's width */
  }
}

@media (max-width: 768px) {
  .about-image-container img {
    max-width: 100%;
  }
}

@media (max-width: 576px) {
  .about-image-container img {
    max-width: 100%;
  }
}



.gallery-container {
  display: flex;
  justify-content: center; /* Center the images horizontally */
  gap: 40px; /* Space between the gallery items */
  flex-wrap: wrap; /* Allow wrapping on smaller screens */
  padding: 20px;
  padding-top: 5%;
  padding-bottom: 5%;
}

.gallery-item {
  display: flex;
  flex-direction: column; /* Stack image and button vertically */
  align-items: center; /* Center the content horizontally */
  text-align: center;
  flex-basis: 40%; /* Adjust width to 40% of the container */
  max-width: 300px; /* Set a maximum width for the gallery items */
}

.gallery-item img {
  max-width: 100%; /* Make image responsive */
  height: auto;
  border-radius: 8px; /* Round the corners of the images */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Add a shadow */
  margin-bottom: 10px; /* Space between image and button */
  filter: blur(1px); /* Apply blur effect */
  transition: filter 0.3s ease-in-out, transform 0.3s ease-in-out; /* Smooth transition for blur effect */
}

.gallery-item img:hover {
  filter: blur(0); /* Remove blur effect on hover */
  transform: scale(1.2); /* Zoom in the image by 10% */
}

/* Responsive adjustments */
@media screen and (max-width: 600px) {
  .gallery-item {
      flex-basis: 100%; /* Each image card takes full width on small screens */
      max-width: 100%; /* Ensure items take up full width */
      margin-bottom: 20px; /* Space between items on small screens */
  }
}

/* Contact Us Page*/

/* Full width image */
.contact-img-banner {
  width: 100%;
}

.contact-img-banner img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px; /* Adjust the radius as needed */
  padding-left: 20px; /* Add padding to the left */
  
  padding-right: 20px;
  padding-bottom: 20px; /* Add padding to the right */
  /* You can also use margin-left/right if you prefer margins */
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .contact-img-banner img {
      max-width: 100%;
      padding-left: 15px; /* Adjust padding for smaller screens */
      padding-right: 15px;
  }
}

@media (max-width: 768px) {
  .contact-img-banner img {
      max-width: 100%;
      padding-left: 10px; /* Adjust padding for smaller screens */
      padding-right: 10px;
  }
}

@media (max-width: 576px) {
  .contact-img-banner img {
      max-width: 100%;
      padding-left: 5px; /* Adjust padding for smallest screens */
      padding-right: 5px;
  }
}



.flex-row {
    display: flex;
    justify-content: space-between; /* Adjust space between boxes */
}
.location-title {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  color: black;
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

.address-gallery {
  display: flex;
  flex-wrap: wrap; /* Allow addresses to wrap onto the next line */
  gap: 10px; /* Adjust the gap between items */
  padding: 20px;
  background-color: #f8f8f8;
  padding-left: 7%;
  justify-content: center; /* Center the cards horizontally */
}

.address-item-plant{
  border: none;
  border-radius: 12px;
  overflow: hidden;
  background-color: #0799cc;
 
  padding: 20px;
  text-align: center;
  color: aliceblue;
  width: calc(25% - 20px); /* Four cards per row with gap adjustment */
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px; /* Add margin-bottom for spacing */
  padding-bottom: 1.5%;
}
.address-item-contact{
  border: none;
  border-radius: 12px;
  overflow: hidden;
  background-color: #efc61e;
  padding: 20px;
  text-align: center;
  color: black;
  width: calc(25% - 20px); /* Four cards per row with gap adjustment */
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px; /* Add margin-bottom for spacing */
  padding-bottom: 1.5%;
}
.address-item-factory{
  border: none;
  border-radius: 12px;
  overflow: hidden;
  background-color: #e5703a;
  padding: 20px;
  text-align: center;
  color: aliceblue;
  width: calc(25% - 20px); /* Four cards per row with gap adjustment */
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px; /* Add margin-bottom for spacing */
  padding-bottom: 1.5%;
}

.address-item h3 {
  margin: 15px 0 10px;
  font-size: 1.2em;
}

.address-item p {
  margin: 5px 0;
  color: #555;
}

/* Responsive styles */
@media (max-width: 1200px) {
  .address-item-plant, .address-item-factory, .address-item-contact {
      width: calc(33.333% - 20px); /* Three items per row */
  }
}

@media (max-width: 900px) {
  .address-item-plant, .address-item-factory, .address-item-contact {
      width: calc(50% - 20px); /* Two items per row */
  }
}

@media (max-width: 600px) {
  .address-item-plant, .address-item-factory, .address-item-contact {
      width: calc(100% - 20px); /* One item per row */
  }
}




.contact-wrapper {
  max-width: 1200px;
  margin: 40px auto;
  padding: 20px;
}

.contact-card-header {
  background-color: #4CAF50;
  color: #fff;
  padding: 10px;
  border-bottom: 1px solid #ddd;
  border-radius: 10px 10px 0 0;
  text-align: center;
}
.contact-card {
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.contact-card-header {
  background-color: #4CAF50;
  color: #fff;
  padding: 10px;
  border-bottom: 1px solid #ddd;
  border-radius: 10px 10px 0 0;
}

.contact-card-body {
  padding: 20px;
}

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

label {
  display: block;
  margin-bottom: 10px;
}

input, textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

button[type="submit"] {
  background-color: #0b5fa9;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

button[type="submit"]:hover {
  background-color: #3e8e41;
}




/* What We Do Page*/

.table {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

/* General Styling for Section */
.section {
  width: 90%;
  max-width: 500px; /* Set a max-width for the content */
  
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column; /* Stack items vertically */
  text-align: center; /* Center-align text */
}

.section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.section table {
  width: 100%;
  
}

.section td {
  vertical-align: middle;
  padding: 15px;
  width: 90%; /* Default to two columns */
  text-align: center; /* Centers content within the cell */
}

.card {
  display: flex;
  flex-direction: column; /* Stack items vertically */
  align-items: center; /* Center items horizontally */
  justify-content: center; /* Center items vertically */
  margin-bottom: 20px;
  text-align: center; /* Centers text within the card */
  padding-left: 20%;
}

.card-body, .card-body2 {
  padding: 10px;
  font-size: 1rem;
  flex-grow: 1; /* Text takes remaining space */
  text-align: center; /* Centers text within the card body */
}

.card-text {
  line-height: 1.5;
}


/* Who We Are */ 
.company-info {
  text-align: center; /* Centers the image horizontally */
}

.company-info img {
  max-width: 100%; /* Ensures the image scales down with the screen size */
  height: auto; /* Maintains the aspect ratio of the image */
  display: inline-block; /* Ensures the image is treated as inline for centering */
  margin: 0 auto; /* Centers the image horizontally within the parent */
}
.table {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

/* General Styling for Section */
.sectionA, .sectionB {
  width: 100%;
  max-width: 1200px; /* Set a max-width for the content */
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column; /* Stack items vertically */
  text-align: center; /* Center-align text */
}

.sectionA h2, .sectionB h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.sectionA table, .sectionB table {
  width: 100%;
  border-collapse: collapse;
}

.sectionA td, .sectionB td {
  vertical-align: middle;
  padding: 15px;
  width: 50%; /* Default to two columns */
  text-align: center; /* Centers content within the cell */
}

.info-card {
  display: flex;
  flex-direction: column; /* Stack items vertically */
  align-items: center; /* Center items horizontally */
  justify-content: center; /* Center items vertically */
  margin-bottom: 20px;
  text-align: center; /* Centers text within the card */
}
.more-content {
  display: none; /* Initially hidden */
}

button {
  margin-top: 10px;
  padding: 8px 12px;
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 4px;
}




.info-card img {
  max-width: 100%; /* Image takes up full width of its container */
  height: auto;
}

.info-card-body, .info-card-body2 {
  padding: 10px;
  font-size: 1rem;
  flex-grow: 1; /* Text takes remaining space */
  text-align: center; /* Centers text within the card body */
}

.info-card-text {
  line-height: 1.5;
  text-align: left;
}

/* Responsive Design */
@media (max-width: 768px) {
  .sectionA td, .sectionB td {
      width: 100%;
      display: block;
  }

  .info-card {
      display: block;
      text-align: center;
  }

  .info-card img {
      max-width: 100%; /* Image takes full width on small screens */
      margin: 0 auto 20px;
  }

  .info-card-body, .info-card-body2 {
      text-align: center; /* Ensures text is centered on smaller screens */
  }
}

@media (max-width: 480px) {
  .sectionA h2, .sectionB h2 {
      font-size: 1.5rem;
  }

  .info-card-body, .info-card-body2 {
      font-size: 0.9rem;
  }

  .sectionA, .sectionB {
      padding: 10px;
  }
}

