.breadcrumb {
  padding: 20px 50px;
  background: #f8f8f8;
  font-size: 14px;
  color: #666;
}

.breadcrumb a {
  color: #333;
  text-decoration: none;
  font-weight: 500;
}

.breadcrumb a:hover {
  color: #007bff;
}

.about-section {
  display: flex;
  align-items: center;
  padding: 50px 0px;
  max-width: 1400px;
  margin: 0 auto;
  gap: 60px;
}

.content {
  flex: 1;
  max-width: 600px;
}

.content h1 {
  font-size: 42px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 30px;
  position: relative;
  /* padding-bottom: 20px; */
}

.content h1::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 80px;
  height: 3px;
  background: #763405;
}

.content p {
  font-size: 17px;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.8;
  text-align: justify;
}

.image-container {
  flex: 1;
  position: relative;
}

.image-container img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

@media (max-width: 968px) {
  .about-section {
    flex-direction: column;
    padding: 31px 12px;
  }

  .content h1 {
    font-size: 32px;
  }

  .breadcrumb {
    padding: 15px 30px;
  }
}

/*-----------product section styles--------*/

.product-sec-container {
  /* max-width: 1400px;
  margin: 0 auto; */
  margin: 50px;
  margin-top: 0px;
}

.product-safety-sec {
  margin-top: 50px;
  margin-bottom: 50px;
}

@media (max-width: 480px) {
  .product-sec-container {
    margin: 10px;
  }
  .product-sec-section-header {
    margin-bottom: 20px !important;
  }

  .product-safety-sec {
    margin-top: 0px !important;
    /* margin-bottom: 50px; */
  }
}

.product-sec-section-header {
  margin-bottom: 0px;
}

.product-sec-section-subtitle {
  font-size: 13px;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.product-sec-section-title {
  font-size: 42px;
  font-weight: 700;
  color: #1a1a1a;
  /* text-transform: uppercase; */
  letter-spacing: 1px;
}

.product-sec-events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

/* .product-sec-event-card {
  background: white;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
} */

/* .product-sec-event-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
} */

.product-sec-card-image {
  position: relative;
  overflow: hidden;
  height: 280px;
}

.product-sec-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-sec-event-card:hover .product-sec-card-image img {
  transform: scale(1.1);
}

/* .product-sec-card-category {
  position: absolute;
  left: 4%;
  top: 32%;
  background: #a8d08d; 
  color: #2d5016;
  padding: 12px 20px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
} */

.product-sec-card-category {
  position: absolute;
  /* left: 4%; */
  left: 4%;
  top: 32%;
  background: #ffffff;
  color: #763405;
  padding: 12px 20px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;

  /* transform: translate(-50%, -50%); */
}

.product-ex-btn {
  background-color: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
  background-color: #763405;
  padding: 10px 20px;
}

.product-sec-card-icon {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #333;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-sec-event-card:hover .product-sec-card-icon {
  opacity: 1;
}

.product-sec-card-content {
  padding: 30px 25px;
}

.product-sec-card-title {
  font-size: 20px;
  font-weight: 600;
  /* color: #ffffff; */
  color: #763405;
  margin-bottom: 15px;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-sec-card-date {
  font-size: 13px;
  color: #999;
  display: flex;
  align-items: center;
  gap: 8px;
}

.product-sec-card-date::before {
  content: "📅";
  font-size: 14px;
}

@media (max-width: 768px) {
  .product-sec-events-grid {
    grid-template-columns: 1fr;
  }

  .product-sec-section-title {
    font-size: 32px;
  }
}

/*---------another product section styles------*/

.aromatic-pro-container {
  /* max-width: 1400px; */
  /* margin: 0 auto; */
  margin: 40px;
}

.aromatic-pro-section-header {
  /* display: flex;
  justify-content: space-between; */
  align-items: flex-start;
  /* margin-bottom: 50px; */
  /* align-items: center; */
}

.aromatic-pro-header-text {
  flex: 1;
}

.aromatic-pro-section-subtitle {
  font-size: 16px;
  color: #333;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
}

.aromatic-pro-section-subtitle::after {
  content: "";
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 2px;
  background: #ffc107;
}

.aromatic-pro-section-title {
  font-size: 42px;
  font-weight: 700;
  color: #2d3e50;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.aromatic-pro-navigation {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.aromatic-pro-nav-btn {
  width: 45px;
  height: 45px;
  border: 2px solid #ddd;
  background: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #999;
  transition: all 0.3s ease;
}

.aromatic-pro-nav-btn:hover {
  border-color: #ffc107;
  color: #ffc107;
}

.aromatic-pro-services-container {
  position: relative;
  overflow: hidden;
}

.aromatic-pro-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  transition: transform 0.5s ease;
}

.aromatic-pro-service-card {
  background: white;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.aromatic-pro-service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.aromatic-pro-card-image {
  position: relative;
  overflow: hidden;
  height: 280px;
}

.aromatic-pro-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.aromatic-pro-service-card:hover .aromatic-pro-card-image img {
  transform: scale(1.1);
}

.aromatic-pro-card-content {
  padding: 35px 30px;
  background: #f8f8f8;
  position: relative;
}

.aromatic-pro-service-card:hover .aromatic-pro-card-content {
  background: white;
}

.aromatic-pro-card-title {
  font-size: 20px;
  font-weight: 700;
  color: #2d3e50;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.aromatic-pro-card-description {
  font-size: 15px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 25px;
}

.aromatic-pro-learn-more {
  font-size: 13px;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  cursor: pointer;
  transition: color 0.3s ease;
  display: inline-block;
  background-color: #763405;
  padding: 8px 20px;
}
.aromatic-pro-service-card:hover .aromatic-pro-learn-more {
  color: #ffffff;
}

.aromatic-pro-card-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: transparent;
  transition: background 0.3s ease;
}

.aromatic-pro-service-card:hover .aromatic-pro-card-accent {
  background: #763405;
}

@media (max-width: 1024px) {
  .aromatic-pro-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .aromatic-pro-services-grid {
    grid-template-columns: 1fr;
  }

  .aromatic-pro-section-header {
    flex-direction: column;
  }

  .aromatic-pro-navigation {
    margin-top: 20px;
  }

  .aromatic-pro-section-title {
    font-size: 32px;
  }

  .aromatic-pro-section-subtitle::after {
    display: none;
  }
}

/*---------------research & development section styles-------*/

.research-section-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  position: relative;
}

.research-left-panel {
  background: #f5f5f5;
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.research-right-panel {
  background: url("../img/product_images/research_development_bg.png");
  /* background: url("../img/product_images/research_and_development1.jpg"); */
  /* background:#CAA39A; */
  background-size: cover;
  background-position: center;
  /* padding: 80px 60px; */
  padding: 33px 46px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.research-right-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* background: linear-gradient(
    135deg,
    rgba(30, 58, 138, 0.7),
    rgba(15, 23, 42, 0.8)
  ); */
  /* background-color: #CAA39A; */
}

.research-right-panel > * {
  position: relative;
  z-index: 1;
}

.research-section-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #666;
  margin-bottom: 15px;
  font-weight: 600;
}

.research-main-heading {
  font-size: 42px;
  line-height: 1.3;
  color: #1a1a1a;
  margin-bottom: 30px;
  font-weight: 300;
}

.research-description {
  font-size: 16px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 500px;
}

.research-contact-btn {
  background: #763405;
  color: #ffffff;
  padding: 16px 40px;
  border: none;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  font-weight: 600;
  width: fit-content;
  transition: all 0.3s ease;
}

.research-contact-btn:hover {
  /* background: #ffed4e; */
  transform: translateY(-2px);
  /* box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4); */
}

/* .research-feature-box {
  margin-bottom: 50px;
} */

.research-feature-icon {
  width: 50px;
  height: 50px;
  background: #ffd700;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.research-feature-icon svg {
  width: 28px;
  height: 28px;
  fill: #1a1a1a;
}

.research-feature-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 12px;
  font-weight: 600;
}

.research-feature-title {
  font-size: 28px;
  color: #fff;
  margin-bottom: 20px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.research-feature-description {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  max-width: 500px;
}

.research-hamburger {
  position: absolute;
  top: 30px;
  left: 30px;
  width: 40px;
  height: 40px;
  background: #1a1a1a;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  z-index: 10;
}

.research-hamburger span {
  width: 20px;
  height: 2px;
  background: #ffd700;
}

.research-top-button {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: #ffd700;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  z-index: 10;
  transition: all 0.3s ease;
}

.research-top-button:hover {
  background: #ffed4e;
  transform: translateY(-3px);
}

@media (max-width: 968px) {
  .research-section-container {
    grid-template-columns: 1fr;
  }

  .research-left-panel,
  .research-right-panel {
    padding: 60px 40px;
  }

  .research-main-heading {
    font-size: 32px;
  }

  .research-feature-title {
    font-size: 24px;
  }
}

/*------research new styles(research image styles)-----*/

.research-right-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.research-feature-box {
  /* width: 50%;  */
  /* padding: 10px;  */
}

.research-feature-box img {
  width: 100%;
  display: block;
  border-radius: 6px;
}

/*----------slider styles---------*/

/* ---------- Reset & base ---------- */
/* * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html,
body {
  height: 100%;
  font-family: system-ui, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  color: #111;
} */
/* a {
  color: inherit;
  text-decoration: none;
} */

/* ---------- Layout ---------- */
.hero-slider {
  position: relative;
  overflow: hidden;
  width: 100%;
  /* max-width: 1200px;
  margin: 0 auto;
  border-radius: 12px; */
}
.hero-slider .slider {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.22, 0.9, 0.36, 1);
  will-change: transform;
}
.hero-slider .slide {
  min-width: 100%;
  position: relative;
  user-select: none;
}
.hero-slider img {
  display: block;
  width: 100%;
  height: 520px;
  object-fit: cover;
}

/* ---------- Overlays (content) ---------- */
.hero-overlay {
  position: absolute;
  inset: 0;
  display: none; /* we'll show only the active overlay */
  align-items: center;
  padding: 40px;
  pointer-events: none; /* let clicks go to controls unless explicit */
}
.hero-overlay.active {
  display: flex;
  pointer-events: auto;
}
.hero-content {
  max-width: 620px;
  /* background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.92),
    rgba(255, 255, 255, 0.82)
  ); */
  padding: 28px;
  border-radius: 10px;
  /* box-shadow: 0 8px 30px rgba(11, 22, 40, 0.12); */
  transform-origin: left center;
  animation: contentIn 0.45s ease;
}
@keyframes contentIn {
  from {
    transform: translateY(8px) scale(0.99);
    opacity: 0;
  }
  to {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

.hero-content h1 {
  font-size: 55px;
  line-height: 1.15;
  margin-bottom: 10px;
  color: #3c3836;
}
.hero-content .highlight {
  color: #ff6b3d;
  font-weight: 700;
}
.hero-content p {
  margin-bottom: 16px;
  color: #333;
  font-size: 17px;
  font-weight: 400;
  font-family: "Karma";
}

.download-section {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.download-btn {
  display: inline-block;
  padding: 10px 26px;
  border-radius: 8px;
  /* background: #ff6b3d; */
  background: #763405;
  color: white;
  font-size: 15px;
  font-family: "Karma";
  font-weight: 500;
  box-shadow: 0 6px 18px rgba(255, 107, 61, 0.18);
}
.app-stores {
  display: flex;
  gap: 10px;
  align-items: center;
}
.app-store-btn img {
  height: 36px;
  display: block;
}

/* ---------- Controls ---------- */
.hero-controls {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 14px;
  display: flex;
  justify-content: center;
  gap: 12px;
  z-index: 30;
}
.dot {
  width: 15px;
  height: 16px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  transform: scale(1);
  transition: transform 0.18s, background 0.18s;
}
.dot.active {
  background: #763405;
  transform: scale(1.15);
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  cursor: pointer;
  z-index: 40;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
}
.arrow.left {
  left: 14px;
}
.arrow.right {
  right: 14px;
}
.arrow svg {
  width: 18px;
  height: 18px;
  pointer-events: none;
}

/* ---------- Small tweaks for Slide 4 (example) ---------- */
.slide-4-content {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.95),
    rgba(255, 255, 255, 0.86)
  );
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero-content {
    padding: 18px;
    max-width: 86%;
  }
  .hero-content h1 {
    font-size: 22px;
  }
  .hero-slider img {
    height: 420px;
  }
}
@media (max-width: 520px) {
  .hero-content {
    max-width: 94%;
    padding: 14px;
    margin-left: 4%;
  }
  .hero-content h1 {
    font-size: 18px;
  }
  .hero-slider img {
    height: 320px;
  }
  .arrow {
    width: 38px;
    height: 38px;
  }
}

/* ---------- Accessibility focus style ---------- */
.arrow:focus,
.dot:focus,
.download-btn:focus {
  outline: 3px solid rgba(255, 107, 61, 0.22);
  outline-offset: 3px;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(0 0 0 / 24%); /* change color here */
}

.d-grid {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* Mobile screen: 1 column */
@media (max-width: 768px) {
  .d-grid {
    grid-template-columns: 1fr;
  }
}

/*----------slider styles--------*/

.slider-last-cont {
  color: #ffffff !important;
}

.slider-last-para {
  color: #ffffff !important;
}

.slider-contact-btn {
  background: #ffffff !important;
  color: #000000;
}

.product-sec-section-header h2 {
  font-size: 42px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 20px;
}

.product-sec-section-header h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 80px;
  height: 3px;
  background: #763405;
}

.product-safety-btn {
  text-decoration: underline;
}

.footer-location-icon {
  height: 25px;
  width: 42px;
  vertical-align: top !important;
}

.copyright-company{
  color:#763405 !important;
}

.copyright-symbol{
  color:#763405 !important;
}

@media (max-width: 480px) {
  .product-safety-bg {
    margin-top: 18px;
    height: 400px;
  }

  .product-safety-cont {
    margin-top: 10px;
  }
  .research-main-heading {
    font-size: 20px;
    line-height: 1.3;
    color: #1a1a1a;
    margin-bottom: 10px;
    font-weight: 300;
  }

  .product-sec-section-header h2 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
    position: relative;
    padding-bottom: 20px;
  }

  .content h1 {
    font-size: 20px;
  }

  .footer-map {
    height: 200px !important;
    width: 290px !important;
  }
  .main__footer.section--padding {
    padding-bottom: 0rem;
  }

  .footer__section {
    padding-bottom: 0px !important;
  }

  .about-section {
    gap: 0px !important;
  }
}

.footer__widget--info__text:hover {
    color:#763405;
}

.section--padding {
  padding-top: 8rem;
  padding-bottom: 0rem !important;
}

/*------------testimonial section styles------*/

.testimonial-sec {
  /* margin-top:50px; */
  padding-top: 50px;
  margin-bottom: 50px;
}

@media (max-width: 480px) {
  .testimonial-sec {
    /* margin-top:50px; */
    padding-top: 20px;
  }
}

/*----------contact section styles--------*/

.contact-page-map {
  margin-top: 7rem;
}

.contact-email-cont {
  display: flex;
  align-items: center;
}

.contact__section--heading__maintitle {
  font-size: 2.8rem;
  line-height: 3rem;
  color: #763405 !important;
  margin-bottom: 1.5rem;
}

.contact__info {
  background: #763405 !important;
  width: 46rem;
  padding: 2rem;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translatey(-50%);
  transform: translatey(-50%);
}

.primary__btn {
  font-weight: 500;
  display: inline-block;
  font-size: 1.3rem;
  line-height: 4.2rem;
  height: 3.8rem;
  padding: 0 2rem;
  letter-spacing: 0.2px;
  border-radius: 0.5rem;
  background: #763405 !important;
  color: var(--text-white-color);
  border: 0;
}

.contact__section.section--padding {
  padding-top: 50px;
}

@media (max-width: 600px) {
  .contact__section--heading__maintitle {
    font-size: 20px !important;
  }
}

/*-------------research and development page styles-------*/

.research-develop-sec .research-page-container {
  margin: 62px !important;
  /* background-color: #faf0f0; */
  padding: 43px;
  border-radius: 15px;
  /* background: url('../img/slider/home5-slider1-bg.webp'); */
}

.research-page-heading {
  margin-bottom: 23px;
  font-size: 38px;
  font-family: "Frank Ruhl Libre";
  font-weight: 700;
  color: #1a1a1a;
  position: relative;
  padding-bottom: 15px;
}

.research-page-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 304px;
  height: 3px;
  background: #763405;
}

.research-page-para {
  font-size: 17px;
  font-family: "Karma";
  text-align: justify;
}

/*----------research page carousel------------*/

.carousel-container {
  width: 100%;
  max-width: 1400px;
  margin: auto;
}

.carousel-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slide {
  flex: 0 0 calc(25% - 20px); /* 4 images per view */
  /* margin: 10px; */
}

.research-slide {
  flex: 0 0 calc(25% - 20px); /* 4 images per view */
  margin: 10px;
}

.slide-content {
  width: 100%;
  height: 300px;
  border-radius: 18px;
  overflow: hidden;
  background: white;
  /* box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15); */
}

.slide-content img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
  display: block;
  user-select: none;
}

/* Navigation buttons */
.nav-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  border: none;
  font-size: 30px;
  padding: 7px 15px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  z-index: 10;
}

.nav-button:hover {
  background: #f0f0f0;
}

.nav-button.prev {
  left: 10px;
}

.nav-button.next {
  right: 10px;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .slide {
    flex: 0 0 calc(50% - 20px); /* 2 per view */
  }
}

@media (max-width: 600px) {
  .slide {
    flex: 0 0 calc(100% - 20px); /* 1 per view */
  }
}

/* ---------- Lightbox styles ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.7);
  padding: 28px;
}
.lightbox.open {
  display: flex;
}
.lightbox-content {
  position: relative;
  max-width: 92vw;
  max-height: 92vh;
  width: auto;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.6);
  background: #111;
  display: block;
}

.lb-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.93);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  font-size: 20px;
}
.lb-btn:hover {
  transform: translateY(-50%) scale(1.05);
}
.lightbox-prev {
  left: -70px;
}
.lightbox-next {
  right: -70px;
}

.lightbox-close {
  position: absolute;
  top: -50px;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  font-size: 23px;
}

/* small screens for lightbox controls */
@media (max-width: 700px) {
  .lightbox-prev {
    left: 8px;
  }
  .lightbox-next {
    right: 8px;
  }
  .lightbox-close {
    top: 8px;
    right: 8px;
  }
  .lb-btn {
    width: 44px;
    height: 44px;
  }
}

/*------------product-safety-page styles-------*/

/* .about__experience--text {
    position: absolute;
    top: 50%;
    left: 0;
    border: 1px solid var(--secondary-color);
    background: var(--body-background-color);
    border-radius: .5rem;
    -webkit-transform: translatey(-50%);
    transform: translatey(-50%);
    padding: 1rem;
    width: 10rem;
} */

.about__experience--text {
  padding: 0rem !important;
  width: 16rem !important;
  height: 13rem !important;
}

.product-safety-add-image {
  height: 100% !important;
}

.product-safety-page-para {
  text-align: justify;
}

.product-safety-page-sec {
  padding-bottom: 8rem !important;
}

.product-safety-page-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 80px;
  height: 3px;
  background: #763405;
}

.product-safety-page-heading {
  position: relative;
  padding-bottom: 10px;
}

/*----------breadcrumbs styles----------*/

.breadcrumb__bg {
  /* background: #763405 !important; */
  padding: 8rem 0 !important;
  background: url("../img/product_safety/breadcrum_bg3.jpg");
  background-size: cover !important;
  background-position: center !important;
  position: relative !important;
  z-index: 1;
  background-attachment: fixed;
}

.breadcrumb__bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(247, 238, 221, 0.6) !important; /* overlay color + opacity */
  z-index: -1; /* keep overlay behind text */
}

.breadcrumb__content--menu__items,
.breadcrumb__content--menu__items a {
  /* position: relative;
    margin-right: 18px;
    padding-right: 18px;
    font-size: 15px;
    line-height: 24px; */
  color: #763405 !important;
  z-index: 1;
  font-size: 38px;
  font-weight: 900 !important;
}

@media (max-width: 480px) {
  .research-develop-sec .research-page-container {
    margin: 14px !important;
    padding: 23px;
    border-radius: 15px;
  }

  .research-page-heading::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 84px;
    height: 3px;
    background: #763405;
  }

  .breadcrumb__content--menu__items,
  .breadcrumb__content--menu__items a {
    font-size: 25px;
  }

  .research-page-heading {
    font-size: 20px;
    font-family: "Frank Ruhl Libre";
    font-weight: 700;
  }

  .research-page-heading {
    margin-bottom: 17px;
  }

  .research-page-heading {
    padding-bottom: 7px;
  }

  .research-page-para {
    font-size: 16px;
    font-family: "Karma";
    text-align: justify;
    font-weight: 400;
  }

  .nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: none;
    font-size: 19px;
    padding: 5px 13px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    z-index: 10;
  }

  .product-safety-page-sec {
    padding-top: 4rem !important;
  }

  .about__experience--text {
    position: relative !important;
    padding: 0rem !important;
    width: 29rem !important;
    height: 20rem !important;
    margin-top: 20px;
  }

  .product-safety-page-heading {
    position: relative;
    padding-bottom: 10px;
    font-size: 20px !important;
    font-weight: 700;
    font-family: "Frank Ruhl Libre";
  }

  .product-safety-page-heading::after {
    content: "";
    position: absolute;
    left: 28%;
    bottom: 0;
    width: 80px;
    height: 3px;
    background: #763405;
  }

  .product-safety-page-para {
    text-align: justify;
    font-size: 16px !important;
    font-weight: 400 !important;
    font-family: "Karma";
  }

  .product-safety-page-sec {
    padding-bottom: 4rem !important;
  }

  .section--padding {
    padding-top: 3rem !important;
  }

  .contact__info {
    background: #763405 !important;
    width: 29rem;
    padding: 2rem;
    position: relative;
    top: 50%;
    left: 0;
    -webkit-transform: translatey(-50%);
    transform: translatey(0%);
  }

  .home-slider {
    /* flex: 0 0 calc(25% - 20px); */
    margin: 0px !important;
  }

  .contact-page-map {
    margin-top: 0rem !important;
  }

  .aromatic-pro-container {
    margin: 10px;
  }
}

.footer-phone-icon {
  transform: rotate(90deg);
}

/*-----------enquiry page styles--------*/

.enquiry-contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  /* max-width: 1400px; */
  /* margin: 50px auto; */
  background: #f5f5f5;
  /* box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15); */
  border-radius: 12px;
  overflow: hidden;
  margin-left: 50px;
  margin-right: 50px;
  margin-top: 50px;
  margin-bottom: 50px;
}

.enquiry-image-side {
  position: relative;
  min-height: 600px;
  overflow: hidden;
}

.enquiry-image-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.enquiry-form-side {
  padding: 60px 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.enquiry-form-side h2 {
  font-size: 42px;
  color:#763405;
  margin-bottom: 40px;
  font-weight: 600;
}

.enquiry-form-group {
  margin-bottom: 25px;
}

.enquiry-form-group label {
  display: block;
  margin-bottom: 8px;
  color: #2d3e50;
  font-size: 14px;
  font-weight: 500;
}

.enquiry-form-group input,
.enquiry-form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 15px;
  transition: all 0.3s ease;
  font-family: inherit;
}

.enquiry-form-group input:focus,
.enquiry-form-group textarea:focus {
  outline: none;
  border-color: #5a7a47;
  box-shadow: 0 0 0 3px rgba(90, 122, 71, 0.1);
}

.enquiry-form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.enquiry-submit-btn {
  background: #763405;
  color: white;
  padding: 16px 45px;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
  align-self: flex-start;
}

.enquiry-submit-btn:hover {
  background: #4a6a37;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(90, 122, 71, 0.3);
}

.enquiry-submit-btn:active {
  transform: translateY(0);
}

.enquiry-success-message {
  display: none;
  padding: 15px;
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
  border-radius: 8px;
  margin-bottom: 20px;
}

.enquiry-success-message.show {
  display: block;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 968px) {
  .enquiry-contact-section {
    grid-template-columns: 1fr;
    margin: 20px;
  }

  .enquiry-image-side {
    min-height: 300px;
  }

  .enquiry-form-side {
    padding: 40px 30px;
  }

  .enquiry-form-side h2 {
    font-size: 32px;
  }
}

@media (max-width: 600px) {
  .enquiry-form-side h2 {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .enquiry-contact-section {
    margin-left: 10px;
    margin-right: 10px;
    margin-top: 30px;
    margin-bottom: 30px;
  }
}

/* Basic active styles for your header links */
.header__menu--link.active,
.header__menu--link.active:hover,
.header__menu--wrapper a.active {
  color: #763405;
  font-weight: 700;
  /* border-bottom: 2px solid #763405; */
}

/* Active styles for offcanvas/mobile nav */
.offcanvas__menu_item.active,
.offcanvas__menu a.active {
  color: #763405;
  font-weight: 700;
}

/* If your theme sets stronger rules, use this temporarily to confirm */
.header__menu--link.active {
  /* outline: 2px solid rgba(118,52,5,0.12); */
}

/*---------another research section--------*/

/* HOME RESEARCH — balanced two-column About/Research section */
.home-research-about-section {
  padding: 40px 0; /* reduce top/bottom spacing */
  color: #333;
  background-color: #f5f5f5;
}

/* two-column layout: text + image */
.home-research-about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr; /* adjust 480px to control image width */
  gap: 32px; /* smaller gap */
  align-items: stretch;
  margin-left: 40px;
  margin-right: 40px; /* make both columns equal height */
}

/* content column: make it a vertical flex so paragraphs layout nicely */
.home-research-about-content {
  max-width: 760px;
  display: flex;
  flex-direction: column;
  /* justify-content: center;         */
  gap: 12px;
  padding: 6px 0;
}

/* tighten default heading spacing */
.home-research-about-title {
  font-family: "Frank Ruhl Libre";
  font-size: 42px;
  font-weight: 700;
  margin: 0 0 12px; /* smaller bottom margin */
  line-height: 1.05;
  color: #1f1f1f;
  position: relative;
  padding-bottom: 12px;
}

/* underline */
.home-research-about-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 80px;
  height: 4px;
  background: #763405;
  border-radius: 2px;
}

/* paragraphs: reduced margins so layout is denser */
.home-research-about-content p {
  color: #545454;
  font-size: 17px;
  line-height: 1.85;
  margin: 8px 0; /* smaller paragraph gap */
  text-align: justify;
  letter-spacing: 0.2px;
}

/* image column: fill the grid cell */
.home-research-about-image {
  /* display: block; */
  height: 100%;
  width: 100%;
  overflow: hidden;
  /* border-radius: 12px; */
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.06);
}

/* make the img fill the container and crop to fit */
.home-research-about-image img {
  width: 100%;
  /* height: 100%; */
  height: 300px;
  /* display: block; */
  object-fit: cover; /* preserve cover and crop if needed */
  /* border-radius: 12px; */
}

/* Tablet & Mobile: stack with image above text (or swap order if you like) */
@media (max-width: 991px) {
  .home-research-about-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  /* let image be natural height but still responsive */
  .home-research-about-image {
    height: auto;
  }
  .home-research-about-image img {
    height: auto;
    max-width: 100%;
    object-fit: cover;
  }
  .home-research-about-title {
    font-size: 34px;
  }
}

@media (max-width: 600px) {
  .home-research-about-section {
    padding: 28px 12px;
    margin-left: 10px;
    margin-right: 10px;
    margin-top: 30px;
  }
  .home-research-about-title {
    font-size: 20px;
    margin-bottom: 0px;
  }
  .home-research-about-content p {
    font-size: 15px;
    line-height: 1.7;
  }

  .home-research-about-inner {
    margin-left: 0px;
    margin-right: 0px;
  }

  .home-safety-heading::after {
    transform: translate(86%);
  }

  .home-safety-heading {
    /* margin-bottom: 30px; */
    position: relative;
    padding-bottom: 9px !important;
  }

  .product-sec-section-header h2 {
    padding-bottom: 9px;
  }

  .home-testimonial-heading {
    font-size: 20px !important;
    padding-bottom: 9px !important;
  }

  .home-testimonial-heading::after {
    transform: translateX(-71%) !important;
  }

  .hero-box {
    flex-direction: column;
    padding: -8px 0px;
    margin-top: 20px !important;
  }

  .home-safety-heading::after {
    content: "";
    position: absolute;
    left: 54px !important;
    bottom: 0;
    width: 80px;
    height: 3px;
    background: #763405;
}
}

/*---------another product safety section styles------*/

/* SECTION WRAPPER */
.safety-page-section {
  padding: 40px 0;
  color: #333;
  background-color: #f5f5f5;
  margin-top: 50px;
  margin-bottom: 50px;
  margin-left: 50px;
  margin-right: 50px;
  border-radius: 15px;
}

/* MAIN GRID */
.safety-page-inner {
  display: grid;
  /* grid-template-columns: 1fr 1fr; */
  grid-template-columns:65% 32%;
  gap: 32px;
  align-items: stretch;
  margin-left: 40px;
  margin-right: 40px;
}

/* CONTENT */
.safety-page-content {
  /* max-width: 760px; */
   max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 6px 0;
}

/* TITLE */
.safety-page-title {
  font-family: "Frank Ruhl Libre";
  font-size: 42px;
  font-weight: 700;
  margin: 0 0 12px;
  line-height: 1.05;
  color: #1f1f1f;
  position: relative;
  padding-bottom: 12px;
}

/* TITLE UNDERLINE */
.safety-page-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 80px;
  height: 4px;
  background: #763405;
  border-radius: 2px;
}

/* PARAGRAPHS */
.safety-page-content p {
  color: #545454;
  font-size: 17px;
  line-height: 1.85;
  margin: 8px 0;
  text-align: justify;
  letter-spacing: 0.2px;
}

/* IMAGE WRAPPER */
.safety-page-image {
  width: 100%;
  height: 100%;
  overflow: hidden;
  /* box-shadow: 0 18px 36px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.06); */
}

/* IMAGE */
.safety-page-image img {
  width: 100%;
  height: 236px;
  object-fit: cover;
  border-radius:20px;
}

/* BUTTON */
.safety-page-contact-btn {
  padding: 12px 28px;
  background: #763405;
  color: white;
  border: none;
  font-weight: 600;
  cursor: pointer;
  width: fit-content;
}

/* TABLET */
@media (max-width: 991px) {
  .safety-page-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .safety-page-image {
    height: auto;
  }

  .safety-page-image img {
    height: auto;
    max-width: 100%;
  }

  .safety-page-title {
    font-size: 34px;
  }
}

/* MOBILE */
@media (max-width: 600px) {
  .safety-page-section {
    padding: 28px 12px;
  }
  .safety-page-title {
    font-size: 20px;
    margin-bottom: 0px;
    /* text-align: center; */
  }
  .safety-page-content p {
    font-size: 15px;
    line-height: 1.7;
  }

  .safety-page-section {
    margin-left: 10px;
    margin-right: 10px;
    margin-top: 30px;
    margin-bottom: 30px;
  }

  .safety-page-inner {
    margin-left: 10px;
    margin-right: 10px;
  }
}

/*---------hpme page product safety section styles-----*/

.home-safety-heading {
  /* font-size: 42px;
    font-weight: 700;
    color: #1a1a1a; */
  /* margin-bottom: 30px; */
  position: relative;
  padding-bottom: 15px;
}

.home-safety-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 80px;
  height: 3px;
  background: #763405;
}

/*---------home page testimonial section styles-----*/

.home-testimonial-heading {
  font-size: 42px;
  font-weight: 700;
  /* color: #1a1a1a; */
  /* margin-bottom: 30px; */
  position: relative;
  padding-bottom: 15px;
}

.home-testimonial-heading::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 80px;
  height: 3px;
  background: #763405;
  transform: translateX(-150%);
}

/*-----------------whatsapp and call styles---------*/

/* Floating contact buttons (paste into your CSS) */
.floating-contacts {
  position: fixed;
  left: 18px; /* distance from left edge (tweak if needed) */
  top: 50%;
  transform: translateY(101%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 18px; /* space between buttons */
  pointer-events: none; /* let children control pointer events */
}

/* common button look */
.floating-contacts .fc-btn {
  pointer-events: auto;
  width: 50px; /* diameter like reference */
  height: 50px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  /* box-shadow:
    0 10px 20px rgba(0,0,0,0.12),      
    0 2px 6px rgba(0,0,0,0.06);         */
  /* border: 6px solid #fff;      */
  cursor: pointer;
  transform-origin: center;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
  position: relative;
  overflow: visible;
}

/* Icon sizing */
.floating-contacts .fc-icon {
  width: 24px;
  height: 24px;
  display: block;
  color: #fff; /* icon color */
}

/* WhatsApp style (green, layered gradient) */
.floating-contacts .fc-whatsapp {
  /* background: linear-gradient(180deg, #3be77a 0%, #22b14b 100%);
  box-shadow: 0 12px 22px rgba(34,177,76,0.18), 0 4px 8px rgba(0,0,0,0.06); */
}

/* Call style (slightly different green) */
.floating-contacts .fc-call {
  /* background: linear-gradient(180deg, #34d058 0%, #13a14b 100%);
  box-shadow: 0 12px 22px rgba(0,160,90,0.16), 0 4px 8px rgba(0,0,0,0.06); */
}

/* Close (red) */
.floating-contacts .fc-close {
  background: linear-gradient(180deg, #e05a45 0%, #c74a39 100%);
  box-shadow: 0 12px 22px rgba(199, 74, 57, 0.16), 0 4px 8px rgba(0, 0, 0, 0.06);
  border: 6px solid #fff;
}

/* hover/tap effects */
.floating-contacts .fc-btn:hover,
.floating-contacts .fc-btn:focus {
  /* transform: translateY(-2px) scale(1.03);
  box-shadow: 0 16px 28px rgba(0,0,0,0.15); */
}

/* small media tweak so it doesn't block content on small screens */
@media (max-width: 480px) {
  .floating-contacts {
    left: 12px;
    gap: 14px;
  }
  .floating-contacts .fc-btn {
    width: 40px;
    height: 40px;
    border-width: 5px;
  }
  .floating-contacts .fc-icon {
    width: 20px;
    height: 20px;
  }

  .floating-contacts {
    transform: translateY(161%);
   
}
}


/*------------preloader styles--------*/

.green-dot-loader {
  --size: 40px;         /* full loader size */
  --dot-size: 9px;      /* each circle size */
  /* --color: #66b31d;      */
  --color:#763405;
  --duration: 1s;       /* animation speed */
  
  width: var(--size);
  height: var(--size);
  position: relative;
}

.green-dot-loader div {
  position: absolute;
  top: calc(var(--size) / 2 - var(--dot-size) / 2);
  left: calc(var(--size) / 2 - var(--dot-size) / 2);
  
  width: var(--dot-size);
  height: var(--dot-size);
  background: var(--color);
  border-radius: 50%;

  transform-origin: calc(var(--size) / 2) calc(var(--size) / 2);
  animation: greenDotFade var(--duration) linear infinite;
  opacity: 0.15; /* trailing dots fade */
}

/* 12 dots rotated around the circle */
.green-dot-loader div:nth-child(1)  { transform: rotate(0deg)   translate(calc(var(--size)/2 - 10px)); animation-delay: -0.916s; }
.green-dot-loader div:nth-child(2)  { transform: rotate(30deg)  translate(calc(var(--size)/2 - 10px)); animation-delay: -0.833s; }
.green-dot-loader div:nth-child(3)  { transform: rotate(60deg)  translate(calc(var(--size)/2 - 10px)); animation-delay: -0.750s; }
.green-dot-loader div:nth-child(4)  { transform: rotate(90deg)  translate(calc(var(--size)/2 - 10px)); animation-delay: -0.666s; }
.green-dot-loader div:nth-child(5)  { transform: rotate(120deg) translate(calc(var(--size)/2 - 10px)); animation-delay: -0.583s; }
.green-dot-loader div:nth-child(6)  { transform: rotate(150deg) translate(calc(var(--size)/2 - 10px)); animation-delay: -0.500s; }
.green-dot-loader div:nth-child(7)  { transform: rotate(180deg) translate(calc(var(--size)/2 - 10px)); animation-delay: -0.416s; }
.green-dot-loader div:nth-child(8)  { transform: rotate(210deg) translate(calc(var(--size)/2 - 10px)); animation-delay: -0.333s; }
.green-dot-loader div:nth-child(9)  { transform: rotate(240deg) translate(calc(var(--size)/2 - 10px)); animation-delay: -0.250s; }
.green-dot-loader div:nth-child(10) { transform: rotate(270deg) translate(calc(var(--size)/2 - 10px)); animation-delay: -0.166s; }
.green-dot-loader div:nth-child(11) { transform: rotate(300deg) translate(calc(var(--size)/2 - 10px)); animation-delay: -0.083s; }
.green-dot-loader div:nth-child(12) { transform: rotate(330deg) translate(calc(var(--size)/2 - 10px)); animation-delay: 0s; }

/* Fading cycle: brighter → faded */
@keyframes greenDotFade {
  0%   { opacity: 1; }
  100% { opacity: 0.15; }
}




/*----------captacha styles--------*/

* Remove list markers */
ul.captcha {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

ul.captcha li {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Style for the captcha text */
#captchaContainer1 {
  font-size: 18px;
  color: #000;
  padding: 0 10px;
  padding-left: 0px !important;
}

/* Adjust input width */
#captcha {
  max-width: 150px;
  margin-left:20px !important;
}

.captcha li p {
  margin-top: auto;
  margin-bottom: 0px !important;
  font-size:1.7rem;
  margin-left:9%;
}

.rcmBody h3 {
  padding-left: 9px !important;
}

@media (max-width: 426px) {
  .form-submit-btn {
    margin-top: 16px !important;
    margin-bottom: 16px !important;
  }
}


/*---------enquiry form styles------*/

/* Error styling */
.field-error {
  color: #f44336;        /* red error color */
  font-size: 1.4rem;
  margin-top: 6px;
  min-height: 18px;
}

/* input states */
input.valid, textarea.valid { border-color: #4caf50 !important; }
input.invalid, textarea.invalid { border-color: #f44336 !important; }

/* optional: a smoother focus style */
input:focus, textarea:focus { box-shadow: 0 0 0 3px rgba(90,122,71,0.08); }


.enquiry__form--label__star {
	color: var(--secondary-color)
}



/*-----------contact form styles--------*/

button.contact__form--btn.primary__btn {
    margin-top: 20px;
}


/*-------------flavours page style-----------*/

.beverage-flavour-img img{
  height:271px !important;
}


.liquor-flavour-img img{
  height:405px !important;
}


.bakery-flavour-inner-cont{
   grid-template-columns: 32% 65%;
}

@media(max-width:600px){
  .bakery-flavour-inner-cont{
    grid-template-columns: 1fr !important;
  }

  .liquor-flavour-img img {
    height:auto !important;
  }

  .safety-page-image img {
    
    border-radius: 20px;
}

.catergory-filter-cont{
  margin-top:10px;
  margin-bottom:10px;
}

}


@media(max-width:768px){
  .bakery-flavour-inner-cont {
    grid-template-columns: 1fr !important;
}
}


@media(max-width:1024px) and (min-width:769px){
  .about-section {
    display: flex;
    align-items: center;
    padding: 50px 20px;
    max-width: 1400px;
    margin: 0 auto;
    gap: 60px;
}
}


@media(max-width:768px){
  .contact__info {
    /* background: #763405 !important;
    width: 73rem;
    padding: 2rem;
    
    top: auto;
    left: 0;
    -webkit-transform: translatey(-50%);
    transform: translatey(5%); */

     position: relative;     /* IMPORTANT */
    width: 100%;            /* Fit mobile screen */
    max-width: 100%;
    padding: 1.5rem;
    transform: none;        /* Remove shifting */
    margin-top: 20px;   
}
}

@media(max-width:1024px) and (min-width:769px){
  .contact__form {
    margin-left: 0rem; 
    padding: 5.5rem 3.5rem 5.5rem 10rem;
}

.contact__info {
    position: relative;     /* IMPORTANT */
    width: 100%;            /* Fit mobile screen */
    max-width: 100%;
    padding: 1.5rem;
    transform: none;        /* Remove shifting */
    margin-top: 20px;   
}

.home-research-about-image img {
    width: 100%;
    height: 379px;
    object-fit: cover;
    
}
}