  .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;
}





/* 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;
    }
}






.banner-image {
  display: flex;
  justify-content: flex-end;   /* right side stick */
  align-items: center;         /* vertically center */
}

.banner-image img {
  width: 300px;        /* image ko small rakhe */
  max-width: 100%;
  height: auto;        /* full image show */
  object-fit: contain; /* crop nahi hogi */
}

/* TABLET */
@media (max-width: 992px) {
  .banner-image img {
    width: 220px;
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .banner-image {
    justify-content: center;
    margin-top: 25px;
  }

  .banner-image img {
    width: 180px;
  }
}





.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%; /* 3 per row */
  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%; /* 2 per row */
  }
}

@media(max-width: 600px){
  .product-card {
    flex: 0 0 100%; /* 1 per row */
  }
}


/* 
.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;
 
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.btn-primary:hover {
  background-color: #e68a00;
} */






/* ====== NAVBAR TOPBAR ====== */
 .header-topbar {
    background: #000; 
    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; 
}


.navbar {
    background: #111 !important; 
    padding: 15px 0;
    border-bottom: 2px solid #ff0000; 
}

.navbar .nav__item-link {
    color: #fff !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) ====== */
/* ====== NAVBAR TOPBAR ====== */
 .header-topbar {
    background: #1a1a1a; 
    padding: 8px 0;
}

.header-topbar .contact-list li,
.header-topbar .contact-list a,
.header-topbar .contact-list span {
    color: white !important; 
    font-size: 14px;
}

.header-topbar .social-icons li a {
    color: purple; 
    margin-left: 10px;
    transition: 0.3s;
}

.header-topbar .social-icons li a:hover {
    color: #FFD700; 
}


.navbar {
    /* background: #1a1a1a !important;  */
    background: white!important; 
    padding: 15px 0;
    border-bottom: 2px solid #FFD700; 
}

.navbar .nav__item-link {
    /* color: #E5E4E2 !important;  */
    font-size: 16px;
    padding: 12px 18px;
    font-weight: 500;
    transition: 0.3s;
     color: black !important; 
}

.navbar .nav__item-link:hover,
.navbar .nav__item-link.active {
    color: purple !important; 
}


.header-actions .btn__primary {
    background: purple; 
    border-radius: 30px;
    padding: 10px 22px;
    font-size: 15px;
    color: white; 
    transition: 0.3s;
}

/* .header-actions .btn__primary:hover {
    background: #FFC107; 
} */


.navbar-toggler {
    border: none;
}

.navbar-toggler span,
.navbar-toggler span span {
    background: #FFD700; 
}


.navbar-collapse.show .nav__item,
.navbar-collapse.show .with-dropdown {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
}


.navbar-collapse .nav__item,
.navbar-collapse .with-dropdown {
    transition: none !important;
}


.navbar-nav .nav__item {
    margin-bottom: 10px;
}

/* navbar end */



/* ===== COMMON DARK BACKGROUND ===== */

/* home page contact section start */

.contact-us {
  padding: 60px 0;
  background: #f8f9fa;
}

.contact-us h2 {
  font-weight: 700;
  margin-bottom: 15px;
}

.contact-us p {
  color: #555;
}

.contact-info {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.contact-info li {
  margin-bottom: 12px;
  font-size: 16px;
}

.contact-info i {
  color: #c9a44c;
  margin-right: 10px;
}

.contact-info a {
  color: #000;
  text-decoration: none;
}

.contact-box {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.contact-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 25px;
  background: #c9a44c;
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
}



.contact-us {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa, #ffffff);
}

.contact-us .row {
  justify-content: center;
}

.contact-us h2 {
  font-weight: 700;
  margin-bottom: 15px;
  color: #222;
}

.contact-us p {
  max-width: 520px;
  margin: 0 auto 25px;
  color: #555;
  line-height: 1.6;
}

.contact-info {
  list-style: none;
  padding: 0;
  margin: 0 auto;
}

.contact-info li {
  background: #fff;
  margin-bottom: 15px;
  padding: 15px 20px;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 15px;
}

.contact-info i {
  color: #c9a44c;
  font-size: 18px;
}

.contact-info a {
  color: #222;
  text-decoration: none;
  font-weight: 500;
}

.contact-info li:hover {
  transform: translateY(-3px);
  transition: 0.3s ease;
}


/* 
home page contact section end */


 /* about section start */
.about-image {
  max-height: 350px;      /* height yahan control hogi */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.about-img {
  max-height: 100%;
  width: auto;
  object-fit: contain;   /* image full show hogi, cut nahi */
}
 /* about section end */
 

.home-banner {
  background: #000 url('assets/images/abou.png') no-repeat center center;
  background-size: cover;
  position: relative;
  min-height: 80vh;
  overflow: hidden;
} 


/* home page section start */




/* 

.home-banner {
  background: #000 url('assets/images/abou.png') no-repeat center center;
  background-size: cover;
  position: relative;
  min-height: 80vh;
  overflow: hidden;
}


.overlay {
  background: rgba(0,0,0,0.6);
  position: absolute;
  inset: 0;
  z-index: 1;
}


.banner-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vajra-title {
  position: absolute;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 60px;
  font-weight: 600;
  letter-spacing: 4px;
  margin: 0;
}


.vajra-sub {
  position: absolute;
  top: 135px; 
  left: 50%;
  transform: translateX(-50%);
  font-size: 22px;
  font-weight: 400;
  color: #ffffff;
  letter-spacing: 1px;
}

.banner-right-text {
  position: absolute;
  left: 40px;
  bottom: 40px;
  text-align: left;
}

.banner-right-text .tagline {
  color: #fff;
  font-size: 18px;
  margin: 0;       
  line-height: 1.1; 
  letter-spacing: 1px;
}


@media (max-width: 768px) {
  .vajra-title {
    top: 25px;
    font-size: 39px;
  }

  .vajra-sub {
    top: 80px;
    font-size: 16px;
  }

  .banner-right-text {
    left: 15px;
    bottom: 20px;
  }

  .banner-right-text .tagline {
    font-size: 14px;
    line-height: 1.1;
  } 



.tagline-list {
  list-style: none; 
  margin: 0;        
  padding: 0;      
}


.tagline-list li {
  color: #fff;
  font-size: 18px;
  line-height: 1;  
  margin: 0;        
  letter-spacing: 1px;
}


@media (max-width: 768px) {
  .tagline-list li {
    font-size: 14px;
    line-height: 1;
  }
}



 

}  
 */




/* 

 /* ================= Banner ================= */
/* .home-banner {
  background: #000 url('assets/images/abou.png') no-repeat center center;
  background-size: cover;
  position: relative;
  min-height: 80vh;
  overflow: hidden;
}


.overlay {
  background: rgba(0,0,0,0.6);
  position: absolute;
  inset: 0;
  z-index: 1;
}


.banner-content {
  position: relative;
  z-index: 2;
  height: 100%;
  width: 100%;              
  display: flex;
  align-items: center;
  justify-content: center;
}


.vajra-title {
  position: absolute;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 60px;
  font-weight: 600;
  letter-spacing: 4px;
  margin: 0;
}


.vajra-sub {
  position: absolute;
  top: 135px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 22px;
  font-weight: 400;
  color: #ffffff;
  letter-spacing: 1px;
  margin: 0;
}


.banner-right-text {
  position: absolute;
  left: 40px;
  right: auto;      
               
  bottom: 40px;
  text-align: left;
}


.tagline-list {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: left;         
}


.tagline-list li {
  color: #fff;
  font-size: 18px;
  line-height: 1;
  margin: 0;
  letter-spacing: 1px;
}


@media (max-width: 768px) {

  .vajra-title {
    top: 25px;
    font-size: 39px;
  }

  .vajra-sub {
    top: 80px;
    font-size: 16px;
  }

  .banner-right-text {
     left: 15px;
    right: auto; 
    
    bottom: 20px;
    text-align: left;
  }

  .tagline-list li {
    font-size: 14px;
    line-height: 1;
    text-align: left;
  }
} */
 




/* ================= Banner ================= */
.home-banner {
  background: #000 url('assets/images/abou.png') no-repeat center center;
  background-size: cover;
  position: relative;
  min-height: 80vh;
  overflow: hidden;
}

/* ================= Overlay ================= */
.overlay {
  background: rgba(0,0,0,0.6);
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* ================= Content ================= */
.banner-content {
  position: relative;
  z-index: 2;
  height: 100%;
  width: 100%;                 /* 🔥 MUST */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ================= Title ================= */
.vajra-title {
  position: absolute;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 60px;
  font-weight: 600;
  letter-spacing: 4px;
  margin: 0;
}

/* ================= Subtitle ================= */
.vajra-sub {
  position: absolute;
  top: 135px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 22px;
  font-weight: 400;
  color: #fff;
  letter-spacing: 1px;
  margin: 0;
}

/* ================= BOTTOM LEFT (FORCED) ================= */
.banner-right-text {
  position: absolute;
  left: 0;                     /* 🔥 HARD LEFT */
  right: auto;
  bottom: 40px;
  padding-left: 40px;          /* spacing from edge */
  text-align: left;
  width: auto;
}

/* ================= UL RESET ================= */
.tagline-list {

  margin: 0;
  padding: 0;
}


/* ================= LI ================= */
.tagline-list li {
  color: #fff;
  font-size: 18px;
  line-height: 1;
  margin: 0;
  letter-spacing: 1px;
}

/* ================= MOBILE FIX ================= */
@media (max-width: 768px) {

  .vajra-title {
    top: 25px;
    font-size: 39px;
  }

  .vajra-sub {
    top: 80px;
    font-size: 16px;
  }

  .banner-right-text {
    left: 0;                   /* 🔥 STILL LEFT */
    right: auto;
    bottom: 20px;
    padding-left: 15px;        /* mobile spacing */
    text-align: left;
  }

  .tagline-list {
    text-align: left;
  }

  .tagline-list li {
    font-size: 14px;
    line-height: 1;
    text-align: left;
  }
}










/* home page banner section end */

/* home page product section  */
.product-table {
  border: 1px solid #e0e0e0;
}

.product-table td {
  padding: 14px;
  font-weight: 600;
  letter-spacing: 1px;
}

.product-table a {
  text-decoration: none;
  color: #000;
  transition: 0.3s;
}

.product-table tr:hover {
  background: #f8f8f8;
}

.product-table a:hover {
  color: #d4af37; /* gold hover */
}



/* home page product section end */

.home-banner .banner-content h1 {
    font-size: 3rem;
    color: #fff;
    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;
}



/* product page start */




.featured-img {
  background: #f7f7f7;
  padding: 12px;
  height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-img img {
  width: 100%;
  height: 160px;
  object-fit: contain;
}

.featured-img h5 {
  margin-top: 10px;
  font-size: 15px;
  font-weight: 600;
}
/* product page end */

/* mission and vission start */

/* Section background */
/* .our-values {
  background: linear-gradient(135deg, #f9f9f9, #eeeeee);
  position: relative;
  overflow: hidden;
}


.heading__subtitle {
  color: #d4af37;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.heading__title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 15px;
}

.heading__desc {
  color: #666;
  font-size: 16px;
  line-height: 1.7;
}


.value-card {
  border-radius: 18px !important;
  padding: 55px 45px !important;
  box-shadow: 0 20px 45px rgba(0,0,0,0.08) !important;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}


.value-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #d4af37, #b8962e);
}

.value-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.12) !important;
}

.value-icon {
  width: 85px;
  height: 85px;
  background: rgba(212,175,55,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
}


.value-title {
  font-size: 24px;
  font-weight: 600;
}


.value-desc {
  font-size: 15px;
  line-height: 1.8;
}


@media (max-width: 768px) {
  .heading__title {
    font-size: 32px;
  }
  .value-card {
    padding: 40px 30px !important;
  }
} */





.our-purpose {
  background: #f7f7f7;
}

/* Headings */
.heading__subtitle {
  color: #d4af37;
  letter-spacing: 2px;
}

.heading__title {
  font-size: 42px;
  font-weight: 600;
}

.heading__desc {
  color: #666;
}

/* Main Box */
.purpose-box {
  min-height: 340px;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 25px 50px rgba(0,0,0,0.08);
}

/* Content */
.purpose-content {
  padding: 70px;
  color: #fff;
  position: relative;
}

.purpose-content h3 {
  font-size: 32px;
  margin-bottom: 15px;
  color: white;
}

.purpose-content p {
  line-height: 1.8;
}

/* Number Badge */
.purpose-badge {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 60px;
  font-weight: 700;
  opacity: 0.15;
}

/* Blocks */
.dark-block {
  background: linear-gradient(135deg, #0f0f0f, #2a2a2a);
}

.gold-block {
  background: linear-gradient(135deg, #ff7a00, #ffb347);
}

/* Shape Side */
/* .purpose-shape {
  min-height: 340px;
  position: relative;
} */


/* Shape Side */
.purpose-shape {
  min-height: 340px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Circle Image Wrapper */
.circle-img {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  border: 6px solid #f1f1f1;
  position: relative;
  z-index: 2;
}

/* Image inside circle */
.circle-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Mobile */
@media (max-width: 991px) {
  .circle-img {
    width: 200px;
    height: 200px;
    margin: 30px auto;
  }
}


/* Abstract Shapes */
.shape-one::before,
.shape-two::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  opacity: 0.15;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.shape-one::before {
  background: radial-gradient(circle, #d4af37, transparent);
}

.shape-two::before {
  background: radial-gradient(circle, #000, transparent);
}

/* Mobile */
@media (max-width: 991px) {
  .purpose-box {
    flex-direction: column !important;
  }

  .purpose-content {
    padding: 40px;
    text-align: center;
  }

  .purpose-badge {
    right: 20px;
  }
}

/* mission and vission end */

/* product page banner  */
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;
  }

/* product page banner end */



/* contact page  */
 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); 
  }

  .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-card {
    border-top: 4px solid purple; 
    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: purple;
  }

/* content page css end */
