body,
h1,
h1,
h3,
h4,
h5,
h6,
span,
li,
a,
p {
  font-family: "Poppins", serif;
}

a.navbar-brand img {
  max-width: 75px;
}

.d55_call {
  fill: #ffffff;
  width: 29px;
  height: 22px;
  margin-bottom: -1px;
  padding-left: 10px;
}

nav.navbar.navbar-expand-lg.bg-body-tertiary {
  background: none !important;
  padding: 15px 0px;
}

.topbar {
  background: #000000;
  padding: 10px 0px;
}

li {
  list-style: none;
}

.topbar li {
  color: #ffffff;
  font-size: 16px;
  line-height: 26px;
  list-style: none;
}

.topbar .form-check-input:checked {
  background-color: #e7c608;
  border: #ffde21;
}

.topbar .form-check-input:focus {
  box-shadow: 0px 0px 0px 0px;
  border-color: #263b89;
}

button.btn.callbtn {
  /* border-radius: 100px; */
  background: #ffde21;
  color: #000000;
  padding: 10px;
  display: flex;
  gap: 10px;
  align-items: center;
}

.fs-13 {
  font-size: 13px;
}

button.btn:hover {
  background: #000000;
  color: #fff;
}

.container {
  max-width: 1440px;
}

header {
  /*  box-shadow: 0px 17px 17px 0px #eee;*/
  position: fixed;
  width: 100%;
  z-index: 99999;
  background: #fff;
}

header a.nav-link {
  font-size: 16px;
  color: #000;
  font-weight: 500;
}

section {
  padding-bottom: 55px;
  /* position: relative; */
}

:root {
  --clr-text: hsl(0, 0%, 100%);
}

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

}

.recipe-container {
  background: rgba(189, 181, 181, 0.1);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 25px;
  padding: 30px 0;
  width: min(1200px, 100%);
}

.recipe-container h1 {
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
  color: #dda3b6;
  margin: 20px 0 40px;
}

.swiper {
  /* width: 100%; */
  height: 100%;
}

.swiper-scrollbar {
  --swiper-scrollbar-bottom: 0;
  --swiper-scrollbar-drag-bg-color: #dda3b6;
  --swiper-scrollbar-size: 5px;
}

.post {
  max-width: 400px;
  font-size: 1rem;
  font-weight: 500;
  color: hsl(0deg 0% 0%);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 16px 16px 0;
  margin-bottom: 16px;
  /* height: 100%; */
}

.post-img {
  width: 100%;
  max-width: 400px;
  object-fit: cover;
  overflow: hidden;
  aspect-ratio: 4/3;
  border-radius: 6px;
  user-select: none;
  pointer-events: none;
}

.post-body {
  display: grid;
  grid-template-columns: 54% 44%;
  gap: 6px;
  padding: 15px 0;
  cursor: default;
}

.post-name {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 2px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.post-author {
  width: fit-content;
  font-size: 0.8rem;
  font-weight: 600;
  opacity: 0.6;
  color: hsl(0deg 0% 0%);
}

.post-avatar {
  width: 40px;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 5px;
  cursor: pointer;
}

.post-actions {
  position: relative;
}

.post-actions-content {
  position: absolute;
  bottom: 130%;
  right: 0;
  padding: 8px;
  border-radius: 8px;
  background: rgba(172, 172, 172, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 2px 2px 10px 2px hsl(0, 0%, 0%, 0.25);
  transition: opacity 0.25s, scale 0.25s;
  transform-origin: bottom right;
}

.post-actions-content[data-visible="false"] {
  pointer-events: none;
  opacity: 0;
  scale: 0;
}

.post-actions-content[data-visible="true"] {
  pointer-events: unset;
  scale: 1;
  opacity: 1;
}

.post-actions-content li {
  padding: 0.5rem 0.65rem;
  border-radius: 0.25rem;
  list-style: none;
}

.post-actions-content li:is(:hover, :focus-within) {
  background-color: rgba(248, 132, 169, 0.7);
}

.post-actions-link {
  width: max-content;
  display: grid;
  grid-template-columns: 1rem 1fr;
  align-items: center;
  gap: 0.6rem;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.post-like {
  text-decoration: none;
  color: var(--clr-text);
  margin-right: 5px;
  font-size: 1.1rem;
  opacity: 0.65;
  border-radius: 50%;
  overflow: hidden;
  transition: all 0.35s ease;
}

.post-actions-controller {
  border: 0;
  background: none;
  color: var(--clr-text);
  cursor: pointer;
  opacity: 0.65;
}

.post-like:hover,
.post-actions-controller:hover {
  opacity: 1;
}

.post-like:focus {
  outline: none;
}

.post-like.active {
  color: rgb(255, 0, 0);
  opacity: 1;
  transform: scale(1.2);
}

/* MEDIA QUERIES */

@media (max-width: 1200px) {
  .swiper {
    width: 80%;
  }
}

@media (max-width: 900px) {
  #recipes {
    padding: 60px 80px;
  }

  .swiper {
    width: 50%;
  }
}

@media (max-width: 765px) {
  .swiper {
    width: 70%;
  }

  section.about li {
    width: 100% !important;
  }

}

@media (max-width: 550px) {
  #recipes {
    padding: 40px 40px;
  }

  .swiper {
    width: 80%;
  }

}

img {
  width: 100%;
}

span.img-icon img {
  max-width: 40px;
}

.swiper-scrollbar.swiper-scrollbar-horizontal {
  display: none;
}

.bg-red {
  background: #e7c608;
  padding: 9px 11px;
  border-radius: 100px;
  border: none;
  color: #fff;
}

.fs-16 {
  font-size: 16px;
}

.fs-13 {
  font-size: 13px;
}

.swiper-slide.post {
  min-height: 415px !important;
}

span.img-icon {
  height: 70px;
  width: 70px;
  background: #fff;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  margin-bottom: 22px !important;
  text-align: center;
  margin: 0 auto;
}

section.about {
  background: #eeeeee3b;
}

section.about li {
  width: 19%;
  color: #fff;
  font-size: 18px;
  line-height: 30px;
  text-align: center;
  padding: 30px 20px;
  background: #000000;
  margin: 5px;
}

.red {
  color: #000000;
}

.Verified img {
  max-width: 90px;
}

.product-items {
  padding: 20px;
  box-shadow: 0px 6px 24px 0px #bdb7b7;
  border-radius: 12px;
  height: 100%;
}

.roduct-img img {
  width: 100%;
  max-width: 400px;
  object-fit: cover;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border-radius: 6px;
  user-select: none;
  pointer-events: none;
}

.instnt_quote {
  margin: 70px 0px 20px 0px;
}

.india_mart {
  margin: 26px 0px 0px 0px;

}

#Product-range .product-items {
  display: grid;
}

#Product-range .product-items p {
  color: #fff;
}

#Product-range .product-items button:hover {
  background: #000;
}

h3 {
  font-size: 28px !important;
}

h2 {
  font-size: 40px;
}

section#Product-range .py-4 p.text-center {
  max-width: 1020px;
  margin: 0 auto;
}

.product-videos video {
  width: 100%;
}

input {
  width: 100%;
  padding: 10px;
  margin: 10px 0px;
  border: 1px solid;
  border-radius: 4px;
}

label {
  width: 100%;
}

textarea {
  width: 100%;
  min-height: 200px;
  padding: 1p;
  padding: 10px;
  border: 1px solid;
  border-radius: 4px;
}

.form {
  padding: 50px;
  box-shadow: 0px 1px 15px 0px #d3d2cf;
}

.reach-us ul li {
  line-height: 30px;
  padding: 11px 0px;
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 15px;
  border-bottom: 1px solid #000;
}

.reach-us ul li i {
  font-size: 25px;
  color: #000000;
}


#slider__container {
  position: relative;
  width: 100%;

}

#article__container {
  position: relative;
  width: 100%;
  max-width: 1000px;
  /* Limit maximum width */
  border-radius: 6px;
  background: #ffffff;
  box-shadow: 6px 6px 12px #c4c5c7, -6px -6px 12px #c4c5c7;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  /* Center content vertically */
  min-height: 55vh;
}

.button_margin {
  margin-top: 20px;
}

.container__text {
  position: relative;
  display: inline-block;
  padding: 45px;
  width: 50%;
  color: #3e3e3fe5;
}

.swiper-slide--style {
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  /* Ensure text and images stack */
}

.slide__img--img {
  position: absolute;
  width: 120%;
  height: 120%;
  background-color: #ebc909;
  left: 46%;
  top: -5%;
  overflow: hidden;
  clip-path: circle(50%);
  object-fit: cover;
  /* Scale images appropriately */
}

#slide__img1,
#slide__img2,
#slide__img3 {
  background-size: cover;
  background-position: center;
}

@media all and (max-width: 1000px) {
  .slide__img--img {
    clip-path: none;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
  }

  .container__text {
    z-index: 1;
    width: 100%;
    padding: 10px;
    background-color: rgba(55, 182, 255, 0.425);
    color: #fff;
    text-align: center;
  }

  .container__text h2 {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .container__text p {
    font-size: 14px;
  }
}

.swiper-pagination-bullet {
  height: 12px;
  width: 12px;
  background-color: red;
  margin: 6px;
}

.swiper-pagination-bullet-active {
  background-color: red;
  opacity: 1;
}

.swiper-button-next,
.swiper-button-prev {
  display: block;
  width: 44px;
  height: 44px;

  border-radius: 50%;
  color: red;
  font-size: 20px;
}






.progress-striped .progress-bar-success {
  background-image: -webkit-linear-gradient(45deg,
      rgba(255, 255, 255, 0.15) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, 0.15) 50%,
      rgba(255, 255, 255, 0.15) 75%,
      transparent 75%,
      transparent);
  background-image: -o-linear-gradient(45deg,
      rgba(255, 255, 255, 0.15) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, 0.15) 50%,
      rgba(255, 255, 255, 0.15) 75%,
      transparent 75%,
      transparent);
  background-image: linear-gradient(45deg,
      rgba(255, 255, 255, 0.15) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, 0.15) 50%,
      rgba(255, 255, 255, 0.15) 75%,
      transparent 75%,
      transparent);
}

.progress-bar-info {
  background-color: #5bc0de;
}

.progress-striped .progress-bar-info {
  background-image: -webkit-linear-gradient(45deg,
      rgba(255, 255, 255, 0.15) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, 0.15) 50%,
      rgba(255, 255, 255, 0.15) 75%,
      transparent 75%,
      transparent);
  background-image: -o-linear-gradient(45deg,
      rgba(255, 255, 255, 0.15) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, 0.15) 50%,
      rgba(255, 255, 255, 0.15) 75%,
      transparent 75%,
      transparent);
  background-image: linear-gradient(45deg,
      rgba(255, 255, 255, 0.15) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, 0.15) 50%,
      rgba(255, 255, 255, 0.15) 75%,
      transparent 75%,
      transparent);
}

.progress-bar-warning {
  background-color: #f0ad4e;
}

.progress-striped .progress-bar-warning {
  background-image: -webkit-linear-gradient(45deg,
      rgba(255, 255, 255, 0.15) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, 0.15) 50%,
      rgba(255, 255, 255, 0.15) 75%,
      transparent 75%,
      transparent);
  background-image: -o-linear-gradient(45deg,
      rgba(255, 255, 255, 0.15) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, 0.15) 50%,
      rgba(255, 255, 255, 0.15) 75%,
      transparent 75%,
      transparent);
  background-image: linear-gradient(45deg,
      rgba(255, 255, 255, 0.15) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, 0.15) 50%,
      rgba(255, 255, 255, 0.15) 75%,
      transparent 75%,
      transparent);
}

.progress-bar-danger {
  background-color: #d9534f;
}

.progress-striped .progress-bar-danger {
  background-image: -webkit-linear-gradient(45deg,
      rgba(255, 255, 255, 0.15) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, 0.15) 50%,
      rgba(255, 255, 255, 0.15) 75%,
      transparent 75%,
      transparent);
  background-image: -o-linear-gradient(45deg,
      rgba(255, 255, 255, 0.15) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, 0.15) 50%,
      rgba(255, 255, 255, 0.15) 75%,
      transparent 75%,
      transparent);
  background-image: linear-gradient(45deg,
      rgba(255, 255, 255, 0.15) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, 0.15) 50%,
      rgba(255, 255, 255, 0.15) 75%,
      transparent 75%,
      transparent);
}

section.reviews-sec span.swiper-pagination-bullet {
  height: 15px;
  width: 15px;
}

section.reviews-sec span.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #ebc909;
}

section.reviews-sec .swiper-button-next,
.swiper-button-prev {
  display: none !important;
}

section.reviews-sec,
p,
h2 {
  color: #000000;
}

section.reviews-sec p.fs-20.m-0 {
  font-size: 30px;
  color: #ebc909;
}

section.reviews-sec .swiper-button-next {
  display: none;
}

section.Ratings {
  background: #ffffff;
}

.col-xs-3.col-md-3.text-right {
  font-size: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

h1.rating-num {
  font-weight: 700;
  color: #000;
}

.progress-bar {
  background-color: #ebc909;
}

.rating span {
  color: #ebc909;
}

.row.rating-desc span {
  color: #ebc909;
}

.footer-menu ul li {
  line-height: 35px;
  color: #fff;
}

.footer-menu {
  padding: 50px 0px;
  background: #000;
}

.product-img {
  padding: 32px;
  background: #fff;
}

/* Desktop: Hide mobile version */
@media only screen and (min-width: 769px) {
  .onlymobile {
    display: none!important;
  }
  .onlydesktop {
    display: block !important;
  }
}

/* Mobile: Hide desktop version */
@media only screen and (max-width: 768px) {
  .onlymobile {
    display: block !important;
  }
  .onlydesktop {
    display: none!important;
  }
}


@media screen and (min-device-width: 320px) and (max-device-width: 768px) {



  .topbar ul.d-flex.align-items-center.justify-content-center.m-0.gap-3 {
    display: block !important;
  }

  section.banner {
    top: 0;
    padding-top: 300px;
  }

  h2 {
    font-size: 35px;
  }

  section#Product-range .py-4 p.text-center {
    line-height: 25px;
    font-size: 14px;
  }

  section#Product-range h3.py-3.text-center {
    font-weight: 700;
  }

  .form {
    padding: 30px;
    margin-top: 20px;
  }

  section.reviews-sec {
    padding: 0px;
  }

  .row.rating-desc {
    display: flex;
    padding: 20px;
  }

  .row.rating-desc .col-xs-8.col-md-9 {
    margin-bottom: 10px;
  }

  .data.py-5.text-center {
    padding-bottom: 20px !important;
  }

  .row.rating-desc a.navbar-brand.d-flex.align-items-center {
    flex-wrap: wrap;
  }

  form.d-flex.gap-3 {
    flex-wrap: wrap;
  }
}

.mainbaner {
  margin-top: 121px;
}

section.banner-main.innerpadding {
  margin-top: 120p;
  float: left;
  width: 100%;
  margin-top: 12px;
}

section {
  float: left;
  width: 100%;
}

section.banner-main.innerpadding {
  float: left;
  width: 100%;
}

footer {
  float: left;
  width: 100%;
}

/*.custom-carousel-btn {
    width: 50px; 
    height: 50px;
    background-color: #ffde21; 
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    border: none;
}*/

/*.custom-carousel-btn:hover {
   // background-color: #ffd700;
}*/

.carousel-control-prev {
  left: 10px;
}

.carousel-control-next {
  right: 10px;
}

.carousel-control-icon {
  display: inline-block;
  width: 100px;
  height: 100px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

span.carousel-control-icon.prev-icon {
  position: absolute;
  left: 20px;
  top: 280px;
}

span.carousel-control-icon.next-icon {
  position: absolute;
  right: 20px;
  top: 280px;
}

div#banner_main_carousel {
  height: auto;
  max-height: 700px;
}

div#banner_main_carousel img {
  max-height: 520px;
}

div#banner_main_carousel {
  margin-top: 155px;
}

h5.title_slider_main {
  width: 100%;
  max-width: 400px;
  margin: auto;
  border-radius: 10px;
}

.sectionabout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px;
  margin: 0 auto;
  background-color: #f9f9f9;
}

.aboutimage-box {
  flex: 1;
  max-width: 45%;
}

.aboutimage-box img {
  width: 100%;
  height: auto;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  border-radius: 8px;
}

.aboutdescription {
  flex: 1;
  max-width: 50%;
}

.aboutdescription h2 {
  margin: 0 0 10px;
  font-size: 1.8rem;
}

.aboutdescription p {
  margin: 0;
  color: #555;
  line-height: 1.6;
}

@media (max-width: 768px) {
  section {
    flex-direction: column;
    text-align: center;
  }

  .aboutimage-box,
  .aboutdescription {
    max-width: 100%;
  }
}

.readmore_about {
  width: 100%;
  margin-top: 33px;
  background: #ffde21;
  width: 200px;
  margin-top: 32px;
  padding: 17px;
  border-radius: 13px;
}

.readmore_about a {
  text-align: center !important;
  display: block;
  text-decoration: none;
  color: #000;
}

#categoryTabs {
  margin-bottom: 20px;
  border-bottom: 2px solid #ddd;
}

#categoryTabs .nav-item {
  margin-right: 10px;
}

#categoryTabs .nav-link {
  background-color: #f1f1f1;
  color: #333;
  padding: 10px 20px;
  font-weight: bold;
  border-radius: 5px 5px 0 0;
  transition: background-color 0.3s ease, color 0.3s ease;
}

#categoryTabs .nav-link:hover {
  background-color: #e0e0e0;
  color: #007bff;
}

.tab-content {
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 0 0 5px 5px;
}

.tab-pane {
  display: none;
}

.tab-pane.show {
  display: block;
}

.product-items {
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
  text-align: center;
}

.product-img img {
  max-width: 100%;
  height: auto;
  border-radius: 5px;
}

.product-items p {
  margin: 10px 0;
}

#categoryTabs .nav-link.active {
  background-color: #ffde21;
  border-color: #ffde21;
}

.product-img img {
  max-height: 264px ;
  height: 171px;
  width: 238px;
}

.footer-menu li,
.footer-menu li a {
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
}
.btn.WhatsApp {
  background: #25D366;
  color: #fff;
}

#submit_comment {
  background: #ffde21;
  padding: 9px 26px;
  border: none;
  margin-top: 15px;
  color: #000;
  border-radius: 5px;
  float: right;
}

.form {
  padding-bottom: 85px;
}



#banner_main_carousel {
  margin: 0;
}

.header-banner .row.align-items-center {
  align-items: start !important;
}

.header-banner .col-lg-6.col-md-6.col-12 .form {
  height: 100%;
  min-height: 520px;
}

.navbar.navbar-expand-lg.bg-body-tertiary a p {
    font-size: 40px;
}
#navbarSupportedContent ul {
    gap: 10px;
}
section.header-banner img{
    object-fit: cover;
    overflow: hidden;
}
.brochure button {
    background: #ffde21;
}

.header-banner .carousel-control-icon {
    width: 34px;
    height: 34px;
}
.header-banner .col-lg-12.col-md-12.col-12.text-center {
    padding: 0px;
}
.container-fluid.py-5.header-banner {
    padding-top: 0px ;
}
#Product-range {
    position: relative;
    padding: 30px 0px;
}
.submit_comment {
   border: 1px solid;
    width: 100%;
    max-width: 200px;
    border-radius: 5px;
    margin-top: 10px;
    padding: 10px 0px;
}
#Product-range h2.fw-bold.red.text-center.pb-4 {
    padding-bottom: 10px !important;
}
h3.category-title {
    padding-bottom: 20px;
}
.footer-menu .product-img iframe {
    width: 100%;
    height: 200px;
}
footer .data.py-5.text-center {
    padding: 50px 0px;
}
.category-section {
    margin-bottom: 40px;
}
.container-fluid.py-5.header-banner {
    padding-top: 0px !important;
    position: unset;
    padding-bottom: 0px !important;
        margin-bottom: 0px;
}
form.d-flex.gap-3 a {
    color: #ffffff;
}

  
  
@media screen and (max-width: 768px) {
    ul.navbar-nav.d-flex.justify-content-center {
    margin-bottom: 20px;
    }
    .topbar ul.d-flex.align-items-center.justify-content-center.m-0.gap-3 {
        padding: 0px 10px;
    }
 .product-items {
        margin: 10px ;
    }
    .Reach-form.innerpadding .form h3 {
    text-align: start;
    }
    .Reach-form.innerpadding .form label {
        text-align: start;
    }
    .Reach-form.innerpadding .form button.submit_comment {
        display: flex;
        text-align: center;
        justify-content: center;
    }
    .footer-menu ul.p-0 {
    display: flex;
    gap: 10px;
    justify-content: start;
    flex-wrap: wrap;
    }
   
}

