/* GENERAL CSS */
@font-face {
  font-family: "DINNext"; /* Replace with your font's name */
  src: url("assest\font\DINNextW1G-Regular.otf") format("otf"); /* Or .woff, .ttf, etc. */
  font-weight: normal; /* Or bold, etc. */
  font-style: italic; /* Or italic, etc. */
}
body {
  font-family: "DINNext", sans-serif !important; /* Apply the font to the body */
  font-size: 13px; /* Set the base font size */
  color: #000; /* Set the base text color */
}

body a {
  text-decoration: none;
  color: inherit;
}
nav ul,
nav ul li {
  display: flex;
  list-style: none;
  float: left;
  margin: 0;
  padding: 0;
}
.header-top ul,
.header-top ul li {
  display: flex;
  list-style: none;
  float: left;
  margin: 0;
  padding: 0;
}

/* =============================================== */

/* HEADER CSS */
header {
  align-items: center;
  justify-content: space-between;
}
header .header-top {
  background-color: #9e1b1b;
  color: #fff;
  font-weight: bold;
  padding: 10px 0;
  text-align: justify;
}
header .header-top ul {
  gap: 10px;
}
header .header-tl {
  padding-left: 40px;
}
header .header-tr {
  padding-right: 40px;
}

header .header-top ul i {
  font-size: 1.3rem;
}
/* NAVBAR START */
nav {
  padding: 10px 0;
}
nav .hlogo {
  overflow: hidden;
}
nav .hlogo img {
  width: 100%;
  height: 70px;
  object-fit: contain;
}
nav .nav1 {
  display: flex;
  align-items: center;
}
nav .navbar a {
  transition: all 0.5s ease;
}
nav .navbar a:hover {
  color: #9e1b1b;
  text-decoration: underline;
}
nav .navbar ul {
  gap: 50px;
  font-size: 18px;
  font-weight: 600;
  position: relative;
}
nav .navbar .haschild {
  display: inline-block;
  transition: all 0.5s ease-out;
}
nav .haschild:hover .child {
  display: flex;
}
nav .navbar .isparent {
  display: inline-block;
  transition: all 0.5s ease-out;
}
nav .navbar .child {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  top: 100px;
  width: 100vw;
  min-width: 100vw;
  box-sizing: border-box;
  z-index: 9;
  gap: 150px;
  padding: 20px 100px; /* Adjust padding as needed */
  text-align: center;
  background-color: #faf4eb;
  transition: all 0.5s ease-out;
}
.child1-whole {
  text-align: center;
  margin-bottom: 10px;
}
.whole-spices-heading {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 15px;
  text-align: center;
}
.whole-spices-list-row {
  display: flex;
  justify-content: center;
  gap: 40px;
}
.whole-spices-list-row > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 150px;
}
nav .navbar .child h6 .ch6 {
  font-weight: bold;
  font-size: 1rem;
}
nav .navbar .child a {
  font-weight: 100;
  font-size: 0.8rem;
  padding: 2px;
  display: block;
  transition: all 0.5s ease-out;
}
/* NAVBAR END */
/* STICKY NAVBAR CSS */
nav.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #d4af37;
  z-index: 99;
  border-bottom: 1px solid #fff;
}
/* MOBILE MENU START */
.mobile-header {
  display: none;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 1001;
  border-bottom: 1px solid #f2f2f2;
}

.mobile-header .mobile-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 18px;
  width: 100%;
}

.mobile-header .mobile-logo img {
  height: 42px;
}

.mobile-header .mobile-menu-toggle {
  font-size: 2rem;
  color: #c0392b;
  background: none;
  border: none;
  outline: none;
  padding: 6px 10px;
  border-radius: 8px;
  transition: background 0.2s;
}

.mobile-header .mobile-menu-toggle:hover {
  background: #f8f8f8;
}
/* MOBILE MENU END */
/* STICKY NAVBAR CSS */
/* HEADER CSS */
/* =============================================== */

/* BANNER START */
.banner .banner-img {
  position: relative;
  width: 100%;
  background-color: #fff;
  height: 500px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: anchor-center;
}
.banner .banner-img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5); /* 0.5 = 50% opacity */
  z-index: 1;
}
.banner .banner-img > * {
  position: relative;
  z-index: 2;
}
.banner .banner-text {
  color: #fff;
  text-align: center;
  font-size: 20px;
  display: unset;
}
.banner .banner-text h2 {
  font-size: 3rem;
  font-weight: bold;
}
.banner .banner-text h4 {
  font-size: 1.5rem;
}
/* BANNER END */
/* =============================================== */

/* BANNER UNDER START */
.bannerun {
  background-color: #faf4eb;
  padding: 20px 0;
}
.bannerun .bannerun-wrap {
  padding: 5px 20px;
  text-align: center;
}
.bannerun .bannerun-wrap ul,
.bannerun .bannerun-wrap ul li {
  display: block;
  float: none;
}
.bannerun .bannerun-wrap ul li {
  margin-bottom: 5px;
}
.bannerun .bannerun-wrap i {
  font-size: 1.5rem;
  margin-bottom: 10px;
}
.bannerun .bannerun-wrap h6 {
  font-size: 1.1rem;
  font-weight: bold;
}
.bannerun .bannerun-wrapbd {
  border-right: 1px dotted gray;
}
.bannerun .bannerun-wrapbd1 {
  border-right: 1px dotted gray;
}
/* BANNER UNDER END */
/* =============================================== */

/* PRODUCT PLACEMENT START */
.product {
  padding: 20px 0;
}
.product .product-wrap,
.product .product-wrap1,
.product .product-wrap2 {
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  color: white;
  overflow: hidden;
  padding: 30px;
}
.product .product-wrap::after,
.product .product-wrap1::after,
.product .product-wrap2::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4); /* 0.5 = 50% opacity */
  z-index: 1;
}
.product .product-wrap > *,
.product .product-wrap1 > *,
.product .product-wrap2 > * {
  position: relative;
  z-index: 2;
}
.product .product-wrap {
  background-image: url("../img/product1.jpg");
  height: 600px;
}
.product .product-wrap1 {
  background-image: url("../img/product2.jpg");
  height: 290px;
}
.product .product-wrap2 {
  background-image: url("../img/product3.jpg");
  height: 290px;
}
.product h5 a {
  font-size: 2.8rem;
  font-weight: bold;
  transition: all 0.5s ease;
}
.product p a {
  font-size: 1.7rem;
  transition: all 0.5s ease;
}
.product a:hover {
  text-decoration: underline;
}
/* PRODUCT PLACEMENT END */
/* =============================================== */

/* CARAOUSEL START */
.carousel-custom {
  background-color: #faf4eb;
  text-align: center;
}
.carousel-custom .custom-butnp,
.carousel-custom .custom-butnn {
  width: 40px;
  font-size: 2rem;
  position: absolute;
  font-weight: bold;
  color: #000;
}
.carousel-custom .custom-butnp {
  left: -35px;
}
.carousel-custom .custom-butnn {
  right: -35px;
}
.carousel-control-prev,
.carousel-control-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  z-index: 10;
  transition: all 0.1s ease;
  height: 40px;
  width: 40px;
  border-radius: 50px;
}
.carousel-control-prev:hover,
.carousel-control-next:hover {
  background-color: white;
  border: 1px solid black;
}

.carousel-custom button:disabled {
  opacity: 0.2;
  pointer-events: none;
  cursor: not-allowed;
}
.carousel-custom h3 {
  font-weight: bold;
  margin-bottom: 30px;
  font-size: 2.5rem;
}
.carousel-container {
  position: relative;
}
.carousel-custom .custom-body {
  background-color: #000;
  color: white;
  align-content: end;
  width: 100%;
  transition: all 0.5s ease;
}
.carousel-custom .custom-body h5 {
  font-weight: bold;
  font-size: 1rem;
}
.carousel-custom .custom-imgc {
  overflow: hidden;
}
.carousel-custom .custom-img {
  height: 200px;
  object-fit: cover;
  transition: all 0.5s ease;
}
.carousel-custom .custom-imgc:hover .custom-img,
.carousel-custom .custom-imgc:hover .custom-body {
  transform: scale(1.1);
}

.carousel-multi {
  scroll-behavior: smooth;
  transition: all 0.3s ease-in-out;
}

.carousel-item-custom {
  flex: 0 0 auto;
  width: 20%; /* 100% / 5 items */
  padding: 0 10px;
}

/* CARAOUSEL END */
/* =============================================== */

/* PRODUCT START */
/* Category Section Custom Styles */
.category {
  background-color: #f5e4cc; /* light beige background like in your image */
}

.category h2 {
  font-size: 2.5rem;
}

.category .card-box {
  background-color: #fff;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  padding: 20px;
  display: flex;
  gap: 40px;
  align-items: center;
  transition: transform 0.3s ease;
  height: 100%;
}

.category .card-box:hover {
  transform: translateY(-5px);
}

.category .card-box img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-top: 0px;
}

.category .card-box h5 {
  margin-bottom: 10px;
  font-weight: bold;
  font-size: 1rem;
}
.category .card-box ul,
.category .card-box ul li {
  display: block;
  float: none;
}

.category .card-box ul li a {
  text-decoration: none;
  color: #000;
  transition: color 0.3s ease;
  display: block;
  line-height: 1.8;
}

.category .card-box ul li a:hover {
  color: #9c7207;
}
/* PRODUCT END */
/* =============================================== */

/* FOOTER START */
footer {
  padding: 30px 0 0 0;
  background-color: #000;
  color: #fff;
}
footer .fot-log {
  overflow: hidden;
}
footer .fot-log img {
  height: 100px;
  width: 100%;
  object-fit: contain;
}
footer ul,
footer ul li {
  display: block;
  float: none;
}
footer ul li {
  line-height: 1.8;
}
footer h4 {
  font-weight: bold;
  font-size: 1.2rem;
}
footer a {
  transition: all 0.5s ease;
}
footer a:hover {
  color: #9c7207;
}
footer .fot-form {
  justify-content: end;
}
footer .fot-form input[type="email"] {
  color: #fff;
  background-color: #fff;
  border: 1px solid #fff;
  border-radius: 5px;
  padding: 10px;
  margin: 10px 0;
}
footer .fot-form input[type="button"] {
  font-size: 1rem;
  font-weight: bold;
  padding: 10px;
  border-radius: 5px;
  background-color: #fff;
  transition: all 0.5s ease;
}
footer .fot-form input[type="button"]:hover {
  background-color: #000;
  color: #fff;
  border: 1px solid #fff;
}
footer .fot-2 {
  padding-top: 20px;
}
footer .fot-2 p {
  font-weight: 0.8rem;
  line-height: 2;
}
/* FOOTER END */
/* =============================================== */

/* BREAD CRUMB START */
.bread {
  text-align: left;
  padding: 10px 0;
}
.bread .breadc {
  font-weight: bold;
}
.bread .breadc ul li + li:before {
  content: "\00a0 \00a0 >>\00a0 \00a0";
}
.bread .breadc li span {
  text-decoration: underline;
}
.bread .breadc li a {
  transition: all 0.5s ease;
}
.bread .breadc li a:hover {
  text-decoration: underline;
}
/* BREAD CRUMB END */
/* =============================================== */

/* ABOUT US START */
.about {
  padding: 50px 0;
  font-size: larger;
}
.about .abt-head {
  text-align: center;
  margin: 50px 0;
}
.about .abt-head h1 {
  font-weight: bold;
  font-size: 2rem;
}
.about .abt-wrap {
  padding: 0 200px;
  text-align: justify;
}
.about .abt-tag h5 {
  font-weight: bold;
  margin-bottom: 20px;
  font-style: italic;
}
.about .abt-mvp ul,
.about .abt-mvp ul li {
  display: block;
  float: none;
  line-height: 2;
  margin-bottom: 10px;
}
.about .abt-mvp ul h6 {
  font-weight: bold;
}
.about .abt-abt {
  padding: 20px 0;
}
/* ABOUT US END */
/* =============================================== */

/* CONACT US START */
.contact {
  padding: 40px 0;
  font-size: larger;
}
.contact .con-head {
  text-align: center;
  margin: 20px 0 50px 0;
}
.contact .con-head h1 {
  font-weight: bold;
  font-size: 2rem;
}
.contact .con-wrap {
  padding: 0 200px;
  text-align: justify;
}
.contact .con-form input[type="text"],
.contact .con-form input[type="email"],
.contact .con-form input[type="tel"],
.contact .con-form textarea {
  font-weight: bold;
  width: 100%;
  font-size: 1rem;
  margin-bottom: 5px;
  padding: 10px;
  color: #fff;
  background-color: #000;
  border-radius: 2px;
}
.contact .con-form input::placeholder,
.contact .con-form textarea::placeholder {
  color: #fff;
  opacity: 0.8;
}
.contact .con-form input:focus,
.contact .con-form textarea:focus {
  outline: solid 3px #639af9;
  outline-offset: 5px;
  outline-style: inset;
}
.contact .con-form .btn-send {
  padding: 15px 20px;
  border-radius: 5px;
  font-weight: bold;
  font-size: 0.85rem;
  background-color: #277e26;
  border: 1px solid #277e26;
  color: #fff;
  transition: all 0.5 ease;
}
.contact .con-form .btn-send:hover {
  background-color: #9e1b1b;
  border: 1px solid #9e1b1b;
}
/* CONTACT US END */
/* =============================================== */

/* PRODUCT CATEGORY START */
.pro-cat {
  padding: 40px 0;
  font-size: larger;
}
.pro-cat .pro-cathead {
  text-align: left;
  margin: 20px 0 50px 0;
}
.pro-cat .pro-cathead h1 {
  font-weight: bold;
  font-size: 3rem;
}
.pro-cat .pro-catwrap {
  padding: 20px;
  background-color: #faf4eb;
}
.pro-cat .pro-catwrap1 {
  transition: all 0.5s ease;
  text-align: center;
}
.pro-cat .pro-catwrap1:hover {
  transform: translateY(-1px);
  box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.2);
}
.pro-cat .pro-catimg {
  overflow: hidden;
  width: 100%;
}
.pro-cat .pro-catimg img {
  width: 100%;
  height: 250px;
  object-fit: contain;
}
.pro-cat .pro-catwrap1 h4 {
  font-size: 1rem;
  font-weight: bold;
  padding: 30px 0;
}
/* PRODUCT CATEGORY END */
/* =============================================== */

/* PRODUCT CATEGORY DETAILS START */
.pro-catd {
  padding: 40px 0;
  font-size: larger;
}
.pro-catd .pro-catdwrap {
  padding: 20px;
  background-color: #faf4eb;
}
.pro-catd .pro-catdwrap1 {
  transition: all 0.5s ease;
  text-align: center;
}
.pro-catd .pro-catdimg {
  overflow: hidden;
  width: 100%;
  padding-top: 50px;
}
.pro-catd .pro-catdimg img {
  width: 100%;
  object-fit: contain;
}
.pro-catd .pro-catdwrap1 h4 {
  font-size: 2rem;
  font-weight: bold;
}
.pro-catd .pro-catdwrap1 p {
  font-size: 1rem;
  text-align: justify;
  padding: 10px 0;
}

/* PRODUCT CATEGORY DETAILS END */
/* =============================================== */
