 .food-service-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0px 6px 20px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    transition: .3s;
}

.food-service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0px 10px 25px rgba(0,0,0,0.15);
}

.food-service-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.food-service-content {
    padding: 20px;
}

.food-service-icon i {
    font-size: 40px;
    color: #d99200;
    margin-bottom: 10px;
}

.food-service-content h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.food-service-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.food-feature-list li {
    font-size: 14px;
    margin-bottom: 6px;
    color: #444;
}

.food-btn {
    display: inline-block;
    margin-top: 5px;
    background: #d99200;
    color: #fff;
    padding: 8px 18px;
    border-radius: 6px;
    font-weight: 600;
    transition: .3s;
}

.food-btn:hover {
    background: #b97b00;
    color: #fff;
}




/* services page end */


/* why we choose us */



/* Main Section */
.why-choose-us {
    padding: 80px 0;
    background: #f8f9fa;
}

/* Image Styling */
.why-img img {
    border-radius: 15px;
    width: 100%;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transition: transform 0.4s ease;
}

.why-img img:hover {
    transform: scale(1.03);
}

/* Right Side Text */
.why-content .heading__title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
}

.why-content .heading__desc {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
}

/* List Style */
.why-content ul li {
    margin-bottom: 18px;
    padding-left: 35px;
    position: relative;
    font-size: 16px;
    font-weight: 600;
    color: #222;
}

/* Icons */
.why-content ul li i {
    position: absolute;
    left: 0;
    top: 3px;
    font-size: 20px;
    color: #0c8b48; /* Green for food industry */
}

/* List Descriptions */
.why-content ul li p {
    font-size: 14px;
    font-weight: 400;
    color: #666;
    margin-top: 5px;
    line-height: 1.6;
}

/* Hover Effect on List Items */
.why-content ul li:hover {
    color: #0c8b48;
    cursor: pointer;
}

.why-content ul li:hover i {
    transform: scale(1.1);
    transition: 0.3s ease;
}

/* Responsive */
@media (max-width: 991px) {
    .why-img {
        margin-bottom: 30px;
    }
    .why-content .heading__title {
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .why-content .heading__title {
        font-size: 24px;
    }
    .why-content ul li {
        font-size: 14px;
    }
}

/* 
why we choose us end */

.home-banner {
    position: relative;
    height: 100vh;
    background: url('assets/images/dairy1.jpeg') center center/cover no-repeat; 
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: none;
}





/* .home-banner .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5); /* Dark overlay for text readability */
    /* display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
} */ 

.home-banner .banner-content h1 {
    font-size: 3rem;
    color: red;
    margin-bottom: 20px;
    font-weight: 700;
}

.home-banner .banner-content p {
    font-size: 1.2rem;
    color: #f0f0f0;
    margin-bottom: 30px;
    max-width: 700px;
}

.home-banner .btn {
    background-color: #ff9900;
    color: #fff;
    padding: 12px 30px;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 50px;
    transition: 0.3s;
}

.home-banner .btn:hover {
    background-color: #e68a00;
}


/* home page banner  end */



/* products section start */


.products-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  max-width: 1200px;
  margin: 50px auto;
  padding: 0 20px;
}

.product-card {
  flex: 0 0 32%; 
  text-align: center;
}

.product-card .image-placeholder img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.product-card .image-placeholder img:hover {
  transform: scale(1.05);
}

.product-card .content h4 {
  margin-top: 10px;
  font-size: 1rem;
  color: #333;
  font-weight: 500;
}

@media(max-width: 992px){
  .product-card {
    flex: 0 0 48%; 
  }
}

@media(max-width: 600px){
  .product-card {
    flex: 0 0 100%; 
  }
} 








/* 
products section end */


/* about us section start */




.about-foodstuff {
  background-color: #fff;
}

.about-image img {
  width: 80%;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.about-image img:hover {
  transform: scale(1.05);
}

.about-content h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
}

.about-content p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 15px;
  line-height: 1.6;
}

.btn-primary {
  background-color: #ff9900;
  color: #fff;
  /* padding: 12px 30px; */
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.btn-primary:hover {
  background-color: #e68a00;
}


/* about us section end */


/* navbar section start */


.header-topbar {
    background: #000; /* black */
    padding: 8px 0;
}

.header-topbar .contact-list li,
.header-topbar .contact-list a,
.header-topbar .contact-list span {
    color: #fff !important;
    font-size: 14px;
}

.header-topbar .social-icons li a {
    color: #fff;
    margin-left: 10px;
    transition: 0.3s;
}

.header-topbar .social-icons li a:hover {
    color: #ff0000; /* hover red */
}

/* ====== MAIN NAVBAR ====== */
.navbar {
    background: white !important; /* change to #ff0000 for red */
    padding: 21px 0;
    border-bottom: 2px solid #ff0000; /* thin stylish red line */
}

.navbar .nav__item-link {
    color: black !important;
    font-size: 16px;
    padding: 12px 18px;
    font-weight: 500;
    transition: 0.3s;
}

.navbar .nav__item-link:hover,
.navbar .nav__item-link.active {
    color: #ff0000 !important;
}

/* ====== PHONE BUTTON (RIGHT SIDE) ====== */
.header-actions .btn__primary {
    background: #ff0000;
    border-radius: 30px;
    padding: 10px 22px;
    font-size: 15px;
    /* color: #fff; */
    transition: 0.3s;
    color: white;
}

/* .header-actions .btn__primary:hover {
    background: #cc0000;
} */

/* Mobile Toggle */
.navbar-toggler {
    border: none;
}

.navbar-toggler span,
.navbar-toggler span span {
    background: #fff;
   
}




/* Make all menu items visible when navbar is open */
.navbar-collapse.show .nav__item,
.navbar-collapse.show .with-dropdown {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
}

/* Remove transition/hover delay */
.navbar-collapse .nav__item,
.navbar-collapse .with-dropdown {
    transition: none !important;
}

/* Optional spacing */
.navbar-nav .nav__item {
    margin-bottom: 10px;
}



/* navbar section end */







/* mission section start */

.mission-vision-layout {
    background: linear-gradient(to right, #f9f9f9, #fff);
    position: relative;
    overflow: hidden;
}

.mission-vision-layout .heading__subtitle {
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    color: #ff7f50; /* Vibrant accent color */
}

.mission-vision-layout .heading__title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #222;
}

.mission-vision-layout .heading__desc {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
}

/* Cards */
.mission-vision-card {
    background: #fff;
    border-radius: 20px;
    padding: 50px 30px;
    text-align: center;
    transition: all 0.5s ease;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    position: relative;
}

.mission-vision-card::before {
    content: "";
    position: absolute;
    width: 80%;
    height: 5px;
    background: linear-gradient(90deg, #ff7f50, #ffa500);
    top: 0;
    left: 10%;
    border-radius: 5px;
}

.mission-vision-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.mission-vision-card .icon {
    color: #ff7f50;
    margin-bottom: 25px;
    transition: transform 0.5s ease, color 0.5s ease;
}

.mission-vision-card:hover .icon {
    color: #ffa500;
    transform: rotate(15deg);
}

.mission-vision-card .card-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #222;
}

.mission-vision-card .card-desc {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
}

/* Responsive */
@media (max-width: 992px) {
    .mission-vision-card {
        margin-bottom: 30px;
        padding: 40px 20px;
    }
}

@media (max-width: 576px) {
    .mission-vision-layout .heading__title {
        font-size: 28px;
    }
    .mission-vision-card .card-title {
        font-size: 22px;
    }
}

/* mission section end */




/* import export section start */
.import-export-layout {
    background: #f7f8fa;
}

.import-export-layout .heading__subtitle {
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    color: #ff7f50;
}

.import-export-layout .heading__title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #222;
}

.import-export-layout .heading__desc {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
}

/* Specialization Cards */
.specialization-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.5s ease;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    position: relative;
}

.specialization-card::before {
    content: "";
    position: absolute;
    width: 80%;
    height: 5px;
    background: linear-gradient(90deg, #ff7f50, #ffa500);
    top: 0;
    left: 10%;
    border-radius: 5px;
}

.specialization-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.specialization-card .icon {
    color: #ff7f50;
    margin-bottom: 25px;
    transition: transform 0.5s ease, color 0.5s ease;
}

.specialization-card:hover .icon {
    color: #ffa500;
    transform: rotate(15deg);
}

.specialization-card .card-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #222;
}

.specialization-card .card-desc {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

/* Responsive */
@media (max-width: 992px) {
    .specialization-card {
        margin-bottom: 30px;
        padding: 35px 20px;
    }
}

@media (max-width: 576px) {
    .import-export-layout .heading__title {
        font-size: 28px;
    }
    .specialization-card .card-title {
        font-size: 20px;
    }
}



/* import export section end */
 body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background: #f8f8f8;
  }

  .container {
    display: flex;
    max-width: 1200px;
    margin: 50px auto;
    gap: 30px;
  }

  /* Sidebar Categories */
  .sidebar {
    width: 250px;
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    height: fit-content;
  }
  .sidebar h3 {
    margin-top: 0;
    margin-bottom: 20px;
    color: #333;
  }
  .sidebar ul {
    list-style: none;
    padding: 0;
  }
  .sidebar ul li {
    padding: 12px;
    margin-bottom: 10px;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease;
  }
  .sidebar ul li:hover,
  .sidebar ul li.active {
    background: linear-gradient(90deg, blue);
    color: #fff;
  }

  body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    background: #f8f8f8;
  }

  .page-banner {
    width: 100%;
    height: 300px;
    background: url('assets/images/banner1.jpeg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
  }

  .page-banner::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.5);
  }

  .page-banner h1 {
    position: relative;
    font-size: 3rem;
    z-index: 1;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
  }

.products-container {
    max-width: 1200px;
    margin: 50px auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    padding: 0 20px;
}

.product-item {
    flex: 0 0 32%; /* 3 per row */
    text-align: center;
    margin-bottom: 30px;
}

.product-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.product-item img:hover {
    transform: scale(1.05);
}

.product-item h4 {
    margin-top: 10px;
    font-size: 1rem;
    color: #333;
    font-weight: 500;
}

@media(max-width: 992px){
    .product-item {
        flex: 0 0 48%; /* 2 per row on tablet */
    }
}

@media(max-width: 600px){
    .product-item {
        flex: 0 0 100%; /* 1 per row on mobile */
    }
}

  @media(max-width:768px){
    .page-banner {
      height: 180px;
    }
    .page-banner h1 {
      font-size: 2rem;
    }
  }



/* 
  ///////////////////// */







  /* contact us section */

/* 

   .contact-card {
    border-top: 4px solid #007bff; 
    transition: all 0.3s ease;
  }

  .contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  }

  .contact-icon i {
    color: #007bff;
  } */



  
  body {
    margin: 0;
    font-family: 'Arial', sans-serif;
  }

  .contact-banner {
    position: relative;
    width: 100%;
    height: 400px;
    background: url('assets/images/banner1.jpeg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
  }

  .contact-banner::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.5); /* Dark overlay for better text readability */
  }

  .contact-banner h1 {
    position: relative;
    font-size: 3rem;
    color: azure;
    margin: 0;
    z-index: 1;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: fadeIn 1.5s ease-in-out;
  }

  @keyframes fadeIn {
    0% { opacity: 0; transform: translateY(-20px); }
    100% { opacity: 1; transform: translateY(0); }
  }

  @media(max-width:768px){
    .contact-banner {
      height: 300px;
    }
    .contact-banner h1 {
      font-size: 2rem;
    }
  }
/* contact us section end */









.contact-info-section {
  background: #fff;
  padding: 90px 0;
  text-align: center;
  font-family: "Poppins", sans-serif;
}

.contact-heading {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 10px;
}

.contact-subtitle {
  font-size: 18px;
  color: #555;
  margin-bottom: 50px;
}

/* GRID SYSTEM */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: auto;
}

/* CARD STYLE */
.contact-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 40px 25px;
  border: 1px solid #eaeaea;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: 0.3s ease;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0px 12px 30px rgba(0,0,0,0.15);
}

/* ICON TOP */
.icon {
  font-size: 50px;
  margin-bottom: 15px;
}

/* HEADING */
.contact-card h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 8px;
}

/* INFO TEXT */
.contact-card p.contact-info {
  font-size: 16px;
  color: #444;
  margin: 0;
  margin-top: 2px; /* minimal space below heading */
}

/* ANIMATION */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 1s forwards ease-out;
}

.delay1 { animation-delay: .2s; }
.delay2 { animation-delay: .4s; }
.delay3 { animation-delay: .6s; }
.delay4 { animation-delay: .8s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}







.email-box {
    color: #ffffff;
    font-weight: bold;
}

.email-box a {
    color: #ffffff;
    font-weight: bold;
    text-decoration: none;
}

.email-box i {
    color: #ffffff;
    font-weight: bold;
    margin-right: 6px;
}

.email-box a:hover {
    text-decoration: underline;
}





.whatsapp-button{
    position: fixed;
    bottom: 15px;
    left: 15px;   /* right ki jagah left */
    z-index: 99;
    background-color: #25d366;
    border-radius: 50px;
    color: #ffffff;
    text-decoration: none;
    width: 50px;
    height: 50px;
    font-size: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    -webkit-box-shadow: 0px 0px 25px -6px rgba(0,0,0,1);
    -moz-box-shadow: 0px 0px 25px -6px rgba(0,0,0,1);
    box-shadow: 0px 0px 25px -6px rgba(0,0,0,1);
    animation: effect 5s infinite ease-in;
}


@keyframes effect {
    20%, 100% {
        width: 50px;
        height: 50px;
        font-size: 30px;
    }
    0%, 10%{
        width: 55px;
        height: 55px;
        font-size: 35px;
    }
    5%{
        width: 50px;
        height: 50px;
        font-size: 30px;
    }
}




