* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: 'sacramento';
  src: url('../fonts/Sacramento-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
} 

:root {
  --wb-black: #2F2F2F;
  --wb-lightbg: #F4E9E0;
  --wb-dusty-rose: #CFA9B1;
  /* --head-blue: #182A41; */
  /* --footer-text: #CFE5FF; */
  --white: #fff;
  --wb-bluish-gray: #5A6F85;
  --wb-light-green: #A8B2A1;
  --wb-warm-grey: #A89F91;
  --wb-cadet-blue: #97A8BA;

}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--wb-black);
  background-color: var(--wb-lightbg);
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  text-wrap-style: pretty;
}

a {
  text-decoration: none;
}

/* common classes */
.bd_left {
  border-left: 1px solid var(--wb-dusty-rose);
}

.bd_right {
  border-right: 1px solid var(--wb-dusty-rose);
}

.container-fluid {
  max-width: 1820px;
}

.comman-btn {
  border-radius: 50px;
  background: var(--wb-dusty-rose);
  color: #FFF;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.btn-effect {
  color: var(--white);
  background: var(--wb-dusty-rose);
  /* Normal background */
  border: 2px solid var(--wb-dusty-rose);
  border-radius: 30px;
  padding: 12px 28px;
  font-weight: 500;
  font-size: 16px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: color 0.3s ease-in-out, background 0.3s ease-in-out;
}

.btn-effect::before {
  content: "";
  position: absolute;
  inset: 0;
  background: transparent;
  /* Now initially transparent */
  transform: translateX(0);
  /* Show full */
  transition: transform 0.4s ease-in-out;
  z-index: -1;
}

.btn-effect:hover::before {
  background: var(--wb-dusty-rose);
  /* If you want background animation — optional */
  transform: translateX(-100%);
  /* Slide out */
}

.btn-effect:hover {
  color: var(--wb-dusty-rose);
  background: transparent;
  border-color: var(--wb-dusty-rose);
  /* Or change it to white, if desired */
}


.comman-btn:hover {
  background: var(--wb-dusty-rose);
  color: #FFF;
}

.round_btn {
  background: var(--wb-dusty-rose);
  padding: 30px 25px;
  border-radius: 60%;
  cursor: pointer;
}

.section_space {
  margin: 60px 0px;
}
.section_pt_top{ padding-top: 30px;}
.section_mt {
  margin-top: 80px;
}

.section_pt {
  padding-top: 80px;
}

.main_head {
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 40px;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.main_night_title {
  color: var(--wb-dusty-rose);
  font-family: 'sacramento', sans-serif;
  font-size: 72px;
  font-style: normal;
  font-weight: 400;
  line-height: 40px;
  margin-bottom: 0px;
}

.lh_60 {
  line-height: 60px;
}

.lh_74 {
  line-height: 74px;
}

.text-unset {
  text-transform: unset;
}
.text-capitalize {
  text-transform: capitalize;
}
.brown_text {
  color: var(--wb-warm-grey);
}

.p_24 {
  color: var(--wb-black);
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 40px;
}

.sub_head {
  color: var(--wb-bluish-gray);
  text-align: center;
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: 38px;
}

.header_banner {
  transform: translateY(-40px);
}

.header_banner_wrapper {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.header_banner_wrapper .main_head {
  margin-bottom: 10px;
  text-transform: unset;
}

.header_banner_wrapper .breadcrumb-item a {
  color: var(--wb-black);
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
}

.header_banner_wrapper .breadcrumb-item.active,
.header_banner_wrapper .breadcrumb-item {
  color: var(--wb-black);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

.header_banner_wrapper .breadcrumb-item+.breadcrumb-item::before {
  content: "|";
}

.header_banner_wrapper .breadcrumb {
  justify-content: center;
}

/* header */
.navbar {
  padding-top: 28px;
  z-index: 1;
}

.nav-bg {
  border-radius: 60px;
  background: var(--white);
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.20);
}

#bottomNavbar {
  transition: all 0.3s ease;
}

header .nav-link.active {
  color: var(--wb-dusty-rose) !important;
  font-weight: 600;
  position: relative;
}

header .nav-link.active svg circle {
  fill: var(--wb-dusty-rose);
}
/* dropdown */
/* Parent dropdown container */
.custom-dropdown {
  position: relative;
}

/* Dropdown card */
.dropdown .custom-menu {
  position: absolute;
  top: 85%;
    left: 0;
transform: translateX(0%) translateY(7px);
  /* background: #fff; */
  padding: 16px 18px;
  min-width: 240px;
  transition: all 0.3s ease;
  z-index: 2;
   /* border-radius: 0 0 20px 20px;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(4.449999809265137px); */
}

.nav-item {
    padding: 15px 0;
}

/* Show on hover */
.custom-dropdown .custom-menu::before{
         content: none;
    position: absolute;
    top: 0%;
    left: -6%;
    transform: translateX(0);
    border: 7px solid transparent;
    border-right-color: #BFB2A6;
    border-bottom-color: #BFB2A6;
}
.custom-dropdown:hover .nav-link{
  z-index: 3;
  position: relative;
  color: #CFA9B1;
}
.custom-menu hr {
     border: none;
    border-top: 1px solid #DDD;
    margin: 63px 0 12px;
}
.custom-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.custom-menu ul li {
  margin-bottom: 8px;
}

.custom-menu ul li:last-child {
  margin-bottom: 0;
}

.custom-menu ul li a {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #52677a;
  font-size: 16px;
  font-weight: 500;
  transition: color 0.3s ease;
  padding: 6px 0;
}

.custom-menu ul li a img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  object-fit: cover;
}

.custom-menu ul li a:hover {
  color: #b1838e; 
  background: transparent;
}

.custom-menu .accordion-button {
  background: none;
  box-shadow: none;
  font-size: 16px;
  color: var(--wb-bluish-gray);
}

.custom-menu .accordion-button::after {
  filter: invert(50%);
}
.custom-menu .accordion-button:before {
  content: "";
  position: absolute;
    right:  0.75rem;
  /* top: 1.25rem; */
        height: 7%;
    width: 12px;
    background-color: var(--wb-bluish-gray);
    /* border-radius: 10px; */
}
.custom-menu .accordion-button.collapsed:after {
  content: "";
  position: absolute;
    right: 17px;
  /* top: 0.8125rem; */
 height: 12px;
    width: 2px;
  border-style: none;
  background-color: var(--wb-bluish-gray);
    /* border-radius: 10px; */
}

.accordion-button:not(.collapsed)::after {
  background-image: none;
  transform: none;
}

/* Initial position */
.bottom-bar.normal {
  position: static;
  width: 100%;
}


.bottom-bar.sticky {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  /* background: var(--wb-lightbg); */
  z-index: 1000;
  transition: transform 0.3s ease;
  /* box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1); */
}

.bottom-bar.sticky .menu_item {
  /* margin-top: 8px !important;
  margin-bottom: 8px !important; */
}

.bottom-bar.hide {
  transform: translateY(100%);
}


/* #bottomNavbar.sticky-bottom {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1050;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1);
} */

/* index */
.banner-wrapper-bg {
  border-radius: 20px;
  background: linear-gradient(180deg, #CBABAF 0%, #C2A7C3 43.27%, #9E8FA7 100%);
  padding-top: 70px;
  transform: translateY(-50px);

}

.banner-wrapper-bg::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: url(../images/banner_left_vector.png) no-repeat right top;
  z-index: 0;
  border-radius: 20px;
}

.banner-wrapper {

  /* background-image: url(../images/banner_bg.png);
  background-position: top;
  background-repeat: no-repeat;
  background-size: auto; */

}

.banner-wrapper .main_head {
  line-height: 60px;
  text-transform: unset;
  color: #FFF;
}

.image-border-wrapper {
  position: relative;
  display: inline-block;
}


/* .image-border-wrapper::after {
  content: "";
  position: absolute;
  top: 20px;
  left: 8%;
  width: 100%;
  height: 640px;
  border: 2px solid #CFA9B1;
  border-radius: 309.611px 309.611px 0px 0px;
  transition: all 0.6s ease-in-out;
} */
/* .image-border-wrapper {
  position: relative;
  display: inline-block;
  width: 600px;
  height: 640px;
} */

/* .image-border-wrapper img {
  width: 100%;
  height: 100%;
  display: block;
} */

.border-svg {
  position: absolute;
  top: 20px;
  left: 8%;
  width: 100%;
  /* height: 100%; */
  fill: none;
  stroke: #CFA9B1;
  stroke-width: 2;
  stroke-dasharray: 2500;
  stroke-dashoffset: 2500;
  pointer-events: none;
}

.image-border-wrapper.animate .border-svg {
  animation: drawBorder 2s ease-in-out forwards;
}

@keyframes drawBorder {
  to {
    stroke-dashoffset: 0;
  }
}


.services_offercard {
  display: grid;
  justify-items: center;
  gap: 30px;
  text-align: center;
}

.Productcategories_card {
  position: relative;
}

.Product_card_text {
  transform: translateY(-35px);
    display: flex;
    justify-content: space-between;
    position: absolute;
    /* inset: 0; */
    align-items: center;
    /* padding: 0px 31px; */
    padding-left: 40px;
    padding-right: 30px;
    bottom: 0;
    gap: 25px;
}

.Productcategories_card img {
  width: 100%;
}

.Manufacturing_card {
  text-align: center;
  width: 100%;
  display: grid;
  align-content: space-between;
  gap: 40px;
}

.svg-bounce,
.map_location {
  animation: bounceArrow 1.2s ease-in-out infinite;
}

@keyframes bounceArrow {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

/* .svg-fancy {
  animation: fancyFloat 2s ease-in-out infinite;
  transform-origin: center;
}

@keyframes fancyFloat {
  0% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
  30% {
    transform: translateY(-10px) scale(1.05);
    opacity: 0.7;
  }
  60% {
    transform: translateY(5px) scale(0.98);
    opacity: 0.9;
  }
  100% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
} */

/* 
.Manufacturing_img {
  width: 310.013px;
  height: 285.057px;
} */

/* .icon_circle{
  stroke-width: 2px;
stroke: var( --wb-light-green);
} */
.why_choseus_subtext {
  color: var(--wb-bluish-gray);
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 40px;
}

.why_choseus_wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 2px solid var(--wb-light-green);
  border-bottom-style: dashed;
  padding-bottom: 20px;
  margin-top: 20px;
}

.why_choseus_counter {
  margin-top: 60px;
}

.counter_card {
  border-radius: 10px;
  border: 1px solid var(--wb-dusty-rose);
  padding: 30px 30px 0px 30px;
  height: 100%;
  text-align: center;
}

.youtube_icon {
  position: absolute;
  display: flex;
  inset: 0;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

.our_facility_img {
  mix-blend-mode: luminosity;
}

.line_doted {
  border-left: 2px solid var(--wb-light-green);
  border-left-style: dashed;
  margin: 0px 80px;

}

.certifications {
  display: flex;
  justify-content: space-between;
  gap: 15px;
}

.certifications_item {
  display: flex;
  align-items: center;
}

.certifications_title {
  color: var(--wb-dusty-rose);
  text-align: center;
  font-family: "Tuesday Night";
  font-size: 28px;
  font-style: normal;
  font-weight: 400;
  line-height: 40px;
  margin-bottom: 20px;
}

.brand_items {
  align-items: center;
  padding-top: 50px;
}

.brand_slide {
  display: flex !important;
  text-align: center;
  justify-content: center;
}

/* Card styling */
.slider_wrapper .slick-track {
  display: flex !important;
  margin-bottom: 26px;
}

.slider_wrapper .slick-slide {
  height: auto !important;
}

.usp_card {
  border-radius: 16px;
  padding: 40px;
  color: #fff;
  font-size: 14px;
  box-sizing: border-box;
  transition: transform 0.3s ease;
  height: 100%;
  margin: 0 12px;

}

.usp_card_title {
  color: var(--white);
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 48px;
  text-transform: uppercase;
  margin-bottom: 40px;
}

.usp_card_text {
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
}

.green {
  background-color: var(--wb-light-green);
}

.brown {
  background-color: var(--wb-warm-grey);
}

.blue {
  background-color: var(--wb-cadet-blue);
}

.usp_slider {
  flex: 1;
}

/* Optional Zoom on center */
/* .slick-slide {
  transform: scale(0.95);
}
.slick-center {
  transform: scale(1);
} */
.slick-dots li button:before,
.slick-dots li.slick-active button:before {
  display: none;
}

.slick-dots li {
  width: auto;
  height: auto;
}

.slick-dots li.slick-active button {
  width: 60px;
  height: 8px;
  border-radius: 10px;
  background: #CFA9B1;
}

.slick-dots li button {
  width: 14px;
  height: 8px;
  border-radius: 10px;
  background: #fff;
}

/* .your_brand .image-border-wrapper{
  width: auto;
  height: auto;
} */
.brand_form .form-control {
  background-color: transparent;
  border-bottom: 1px solid var(--wb-dusty-rose) !important;
  border: none;
  border-radius: 0;
  padding: 10px 0px;
  margin-bottom: 30px;
  color: #999 !important;

}

.brand_form .form-label {
  color: var(--wb-bluish-gray);
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.brand_form .form-select {
  background-color: transparent;
  border-bottom: 1px solid var(--wb-dusty-rose) !important;
  border: none;
  border-radius: 0;
  padding: 10px 0px;
  margin-bottom: 30px;
  color: #999;



}

.form-control:focus,
.form-select:focus {
  background-color: transparent;
  border-bottom: 1px solid var(--wb-dusty-rose);
  box-shadow: none;
}

input::-webkit-input-placeholder,
textarea::placeholder {
  color: #999 !important;

}


.bannervector {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  transition: transform 0.1s ease-out;
  will-change: transform;

}

.banner-vector1 {
  right: 0px;
}

.banner-vector2 {
  right: 0px;
}

.banner-vector3 {
  right: 0px;
}

.vector {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  transition: transform 0.1s ease-out;
  will-change: transform;

}

.vector-leaf1 {
  top: -23px;
  left: 24%;
}

.vector-leaf2 {
  top: -70px;
  right: 27%;
}

.vector-leaf3 {
  bottom: 15%;
  right: 33%;
}

.vector-leaf4 {
  bottom: 15%;
  left: 33%;
}

.vector-arrow1 {
  top: -16px;
  left: 26%;
}

.vector-arrow2 {
  top: 30px;
  right: 29%;
  width: 220px;
}

.vector-arrow3 {
  bottom: 41%;
  right: 28%;
  /* width: 143px; */
  height: 87px;
  transform: rotate(12deg);
}

.vector-arrow4 {
  bottom: 36%;
  left: 27%;
}

/* footer */
.footer_sapce {
  margin-bottom: 38px;
  margin-top: 100px;

}

.footer_bg {
  border-radius: 20px;
  background: #DDD4C5;
  padding-top: 70px;
  padding-bottom: 50px;
}

.ft_title {
  color: #A89E8D;
  /* text-align: center; */
  font-family: 'sacramento', sans-serif;
  font-size: 66px;
  font-style: normal;
  font-weight: 400;
  line-height: 70px;
}

.social_items {
  display: inline-flex;
  justify-content: flex-end;
  align-items: center;
  gap: 15px;
}

.ft_content {
  gap: 20px;
  display: inline-grid;
  justify-items: start;
}

.ft_menu_title {
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.ft_list {
  padding-left: 0;
  list-style: none;
}

.ft_list a {
  color: var(--wb-black);
  font-size: 16px;
  line-height: 36px;
  text-decoration: none;
}

.copyrigt_text a {
  color: var(--wb-black)
}

/* .social_items a {
  display: inline-block;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social_items a:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 10px rgba(168, 178, 161, 0.3); 
} */
/* .social_items a:hover img {
  filter: brightness(0) saturate(100%) sepia(24%) hue-rotate(70deg) saturate(500%);
  transform: scale(1.1);
  transition: all 0.3s ease;
} */
.social_items a {
  display: inline-block;
  /* margin-right: 12px; */
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.social_items a img {
  /* width: 32px; */
  transition: transform 0.4s ease;
  transform-origin: center;
}

/* Hover effect */
.social_items a:hover img {
  transform: rotate(10deg) scale(1.1);
  /* box-shadow: 0 8px 15px rgba(160, 160, 160, 0.25); */
  /* filter: drop-shadow(0 0 4px rgba(168, 178, 161, 0.4)); */
}

.submit_btn {
  padding: 12px 30px;
}

/* about css  */


.about_cosmed_list {
  display: grid;
  gap: 15px;
}

.what_drivesus .usp_card {
  margin: 0px;
  padding: 50px 40px 60px 40px;
}

.about_whyus_text {
  color: var(--wb-black);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
}

.whyus_list_wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 2px solid var(--wb-light-green);
  border-bottom-style: dashed;
  padding-bottom: 18px;
  margin-top: 15px;
}

.blur_filter_bg {
  border-radius: 20px;
  background: linear-gradient(270deg, rgba(255, 255, 255, 0.00) 0%, rgba(255, 255, 255, 0.40) 42.79%, rgba(255, 255, 255, 0.70) 100%);
  backdrop-filter: blur(19.399999618530273px);
  padding: 30px 0px 30px 60px;
}

.whyus_wrapper {
  /* position: absolute;
      left: 50px; */
  background-image: url(../images/about/why_us.png);
  background-size: auto;
  background-repeat: no-repeat;
  background-position: top center;
  padding: 22px;
  border-radius: 20px;
}

/* Why Choose Us  */
.counter_1 {
  border-radius: 20px;
  background: #EBCBD1;
}

.counter_2 {
  border-radius: 20px;
  background: #CCC1B1;
}

.counter_3 {
  border-radius: 20px;
  background: #CFC6D5;
}

.counter_4 {
  border-radius: 20px;
  background: #C4D0BB;
}

.counter_bg {
  padding: 80px 30px;
  border: none;
}

.certifications_card {
  display: grid;
  gap: 15px;
}

/* contact us css */
.address_card {
  border-radius: 20px;
  padding: 35px 40px;
  color: var(--white);
  height: 100%;
  gap: 20px;
  display: flex;
  flex-direction: column;
}

.address_title {
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 26px;
}

.address_subtitle {
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
  color: var(--white);
}


/* product css  */
.skincare_card {
  border-radius: 20px;
  border: 1px solid var(--wb-light-green);
  /* background: var(--wb-lightbg); */
  height: 100%;
  display: grid;
  gap: 20px;
  padding: 40px 40px;
}

.skincare_card_title {
  color: var(--wb-black);
  font-size: 36px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  margin-bottom: 40px;
}

.svg-wrapper {
  position: relative;
  width: 40px;
  height: 40px;
  display: inline-block;
}

.svg-wrapper .svg-small {
  position: absolute;
  top: 15px;
  left: 0;
  transition: opacity 0.3s ease;
}

.svg-wrapper .svg-hover {
  position: absolute;
  top: -12px;
  left: 0;
  transition: opacity 0.3s ease;
}

.svg-small {
  opacity: 1;
  z-index: 2;
}

.svg-hover {
  opacity: 0;
  z-index: 2;
}

.skincare_card:hover .svg-wrapper .svg-small {
  opacity: 0;
}

.skincare_card:hover .svg-wrapper .svg-hover {
  opacity: 1;
}

/* acne care  */
.acnecare_wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;
}

.acnecare_card {
  border-radius: 20px;
  border: 1px solid var(--wb-light-green);
  /* background: var(--wb-lightbg); */
  height: 100%;
  display: grid;
  gap: 20px;
  padding: 12px 12px;
  padding-bottom: 40px;
  justify-items: center;

}

.acnecare_card:hover .svg-wrapper .svg-small {
  opacity: 0;
}

.acnecare_card:hover .svg-wrapper .svg-hover {
  opacity: 1;
}

.acnecare_card .svg-wrapper .svg-small {
  right: 10px;
  left: unset;
  top: 10px;
}

.acnecare_card .svg-wrapper .svg-hover {
  right: 0;
  left: unset;
  top: 0px;

}

.acnecare_card .svg-wrapper {
  position: relative;
  width: 100%;
  height: 40px;
  display: inline-block;
}

.skincategories_slider .skincategories_item {
  margin: 20px;
}

/* detail css  */
.product-gallery {
  display: flex;
  align-items: flex-start;
  /* gap: 20px; */
  /* background: #f8e8db; */
  /* padding: 30px; */
  border-radius: 12px;
}

.thumbnails {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.thumbnails-item img {
  width: 100%;
  height: 80px;
  object-fit: contain;
  transition: 0.3s;
}

.thumbnails-item {
  border: 1px solid var(--wb-light-green);
  border-radius: 20px;
  cursor: pointer;
  background-color: var(--wb-lightbg);
  transition: 0.3s;
  padding: 16px;
}

.main-preview {
  overflow: hidden;
  border: 1px solid var(--wb-light-green);
  border-radius: 20px;
  background-color: var(--wb-lightbg);
  padding: 40px 20px;
}

.main-preview img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  aspect-ratio: 100.44 / 90;
}

.zoomed-image-box {
  /* width: 300px;
  height: 300px;
  border: 1px solid #ccc;
  overflow: hidden;
  display: none; */
  width: 100%;
  height: 600px;
  border: 1px solid var(--wb-light-green);
  /* border-radius: 20px; */
  overflow: hidden;
  display: none;
  position: absolute;
  left: 0;
  background: var(--wb-lightbg);
  z-index: 3;

}

#zoomedImage {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: 200%;
  /* adjust for zoom level */
}



.custom-icon-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  list-style: none;
  /* padding: 0; */
  /* margin: 0; */
}

.grid_list_3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* 3 columns */
  gap: 12px 24px;
  /* row gap and column gap */
}

.custom-icon-list li {
  position: relative;
  padding-left: 30px;
}

.custom-icon-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='25' height='25' viewBox='0 0 25 25' fill='none'%3E%3Cpath d='M11.0324 17.0687C10.9324 17.0687 10.8324 17.0687 10.6324 16.9687C10.1324 16.7687 9.83237 16.1687 10.0324 15.6687C11.2324 12.7687 14.7324 7.46865 18.2324 5.06865C18.7324 4.76865 19.3324 4.86865 19.6324 5.36865C19.9324 5.86865 19.8324 6.46865 19.3324 6.76865C16.2324 8.86865 13.0324 13.8687 11.9324 16.4687C11.8324 16.8687 11.4324 17.0687 11.0324 17.0687Z' fill='%23A89F91'/%3E%3Cpath d='M11.0324 17.0686C10.6324 17.0686 10.3324 16.8686 10.1324 16.5686C9.13242 14.7686 7.93242 13.1686 6.53242 11.7686C6.13242 11.3686 6.13242 10.7686 6.53242 10.3686C6.93242 9.9686 7.53242 9.9686 7.93242 10.3686C9.53242 11.8686 10.8324 13.6686 11.9324 15.5686C12.2324 16.0686 12.0324 16.6686 11.5324 16.9686C11.4324 17.0686 11.2324 17.0686 11.0324 17.0686Z' fill='%23A89F91'/%3E%3Cpath d='M12.2319 22.0687C7.03195 22.0687 2.63195 18.0687 2.23195 12.7687C2.13195 10.0687 2.93195 7.46866 4.73195 5.46866C6.43195 3.46866 8.93195 2.26866 11.5319 2.06866C12.7319 1.96866 13.9319 2.06866 15.0319 2.46866C15.5319 2.66866 15.8319 3.16866 15.7319 3.66866C15.5319 4.16866 15.0319 4.46866 14.5319 4.36866C13.5319 4.06866 12.6319 3.96866 11.7319 4.06866C9.53195 4.26866 7.63195 5.16866 6.23195 6.76866C4.83195 8.36866 4.13195 10.4687 4.23195 12.6687C4.53195 17.0687 8.43195 20.3687 12.7319 20.0687C14.8319 19.8687 16.8319 18.9687 18.2319 17.3687C19.6319 15.7687 20.3319 13.6687 20.1319 11.5687C20.1319 11.1687 20.0319 10.6687 19.9319 10.2687C19.8319 9.76866 20.1319 9.16866 20.6319 9.06866C21.2319 8.76866 21.7319 9.06866 21.9319 9.66866C22.132 10.2687 22.2319 10.7687 22.2319 11.3687C22.4319 14.0687 21.5319 16.6687 19.8319 18.6687C18.1319 20.6687 15.6319 21.8687 13.0319 22.0687C12.7319 22.0687 12.5319 22.0687 12.2319 22.0687Z' fill='%23A89F91'/%3E%3C/svg%3E");
}


#zoomContainer {
  position: relative;
}

#lens {
  position: absolute;
  width: 100px;
  height: 100px;
  background-color: rgba(173, 216, 230, 0.3);
  /* Light blue transparent */
  border: 1px solid #ccc;
  display: none;
  pointer-events: none;
  z-index: 14;
}

/* blog css */
.blog_card {
  display: grid;
  gap: 16px;
  position: relative;
}

.blog_subtitle {
  color: var(--wb-black);
  font-size: 24px;
  font-weight: 600;
  line-height: 34px;
  margin-bottom: 10px;
}

.blog-arrow {
  position: absolute;
  right: 10px;
  top: 10px;
}
.pagination{
  display: flex;
    justify-content: space-between;
    margin-top: 60px;
}
/* events */
.event_card {
  border-radius: 20px;
border: 1px solid var(--wb-light-green);
background: var(--wb-lightbg);
}
.event_card_content{
padding: 30px;
}
.event_date{
  border-radius: 10px;
background: var(--wb-dusty-rose);
display: flex;
    align-items: center;
    gap: 16px;
    padding-left: 16px;
    padding-right: 16px;
}
.event_date h3{
  color: var(--white);
font-size: 36px;
font-style: normal;
font-weight: 700;
line-height: 26px; 
text-transform: capitalize;
}
.event_date_text{
  color: var(--white);
font-size: 14px;
font-style: normal;
font-weight: 700;
line-height: 26px;
text-transform: capitalize;
}
.border_left{
  border-left: 1px solid var(--wb-lightbg);
  padding-left: 20px;
  padding-bottom: 12px;
  padding-top: 12px;
}

/* gallery */
.gallery-pills {
      gap: 20px;
          display: flex;
    justify-content: center;
}
.gallery-link.nav-link.active{
background-color: var(--wb-dusty-rose);
color: var(--white);
}

.gallery-link.nav-link{
  display: flex;
padding: 10px 16px;
justify-content: center;
align-items: center;
gap: 10px;
flex-shrink: 0;
border-radius: 50px;
border: 1px solid var(--wb-dusty-rose);
color: var(--wb-bluish-gray);
}
.tradeprocess_wrapper{
  background-image: url(../images/effortless-process.png);
      padding-left: 60px;
    /* padding-top: 70px; */
    /* position: absolute;
    left: 85px;
    top: 62px; */
}
.industry_wrapper{
    background-image: url(../images/industry_bg.png);
}
.blurwhite_filter_bg {
background: rgba(255, 255, 255, 0.70);
backdrop-filter: blur(10px);
    margin-bottom: 100px;
    margin-top: 50px;
}
  .Product_Categories_slider .slick-slide {
  margin: 0 10px; 
}

.Product_Categories_slider .slick-list {
  margin: 0 -10px; 
}
/* .tradeprocess_wrapper .blur_filter_bg{
background: rgba(255, 255, 255, 0.70);
backdrop-filter: blur(10px);
    margin-bottom: 100px;
} */
.excellence_card{
  border-radius: 20px;
background: #FEFEFE;
display: grid;
    text-align: center;
    justify-items: center;
    justify-content: center;
    padding: 50px;
    gap: 20px;
}
/* accordion */
.faq_section .accordion-button:not(.collapsed) {
  color: var(--wb-black);
  /* background-color: #c5e5d8;*/
  background-color: var(--secondary-text);
  box-shadow:none;
}

.faq_section .accordion-button:not(.collapsed)::after {
  background-image: none;
  transform: none;
}

.faq_section .accordion-button:focus {
  box-shadow: none;
}

.faq_section .accordion-button:before {
  content: "";
  position: absolute;
  /*   right: 0.75rem; */
  left: 0.75rem;
  /* top: 1.25rem; */
     height: 4px;
    width: 24.005px;
    background-color: var(--wb-black);
    border-radius: 10px;
}
.faq_section .accordion-button.collapsed:after {
  content: "";
  position: absolute;
  /*   right: 1.1875rem; */
  left: 22px;
  /* top: 0.8125rem; */
  height: 24.005px;
  width: 4px;
  border-style: none;
  background-color: var(--wb-black);
    border-radius: 10px;
}

.faq_section .accordion-button{
font-size: 24px;
font-style: normal;
font-weight: 600;
line-height: 34px;
background: var(--wb-lightbg);
padding-left: 7%;
}
.faq_section .accordion-item{
  background-color: transparent;
      border-bottom: 2px dashed var(--wb-warm-grey);
          border-right: 0;
    border-left: 0;
        padding-top: 15px;
    padding-bottom: 15px;
}
.faq_section .accordion-flush>.accordion-item:last-child {
    border-bottom:  2px dashed var(--wb-warm-grey);
}
/* Packaging Design  */
.what_we_offer{
   display: flex;
align-items: center;
gap: 20px;
}
.Packaging_card_title{
  color: var(--wb-bluish-gray);
text-align: center;
font-size: 36px;
font-style: normal;
font-weight: 700;
line-height: 38px; 
}
.Packaging_card{
  padding: 40px;
  display: grid;
  gap: 20px;
  background-color: var(--white);
  border-radius: 20px;
    justify-items: center;
    height: 100%;
}
.Packaging_card_option {
    list-style: none;
    padding: 0;
}
.Packaging_card_option li::before {
  content: '';
  display: inline-block;
  width: 30px;
  height: 30px;
  margin-right: 8px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='33' height='32' viewBox='0 0 33 32' fill='none'%3E%3Cpath d='M27.5911 8L12.9245 22.6667L6.25781 16' stroke='%232F2F2F' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
}
.custom_card{
display: flex;
flex-direction: column;
align-items: flex-start;
gap: 30px;
}

/* testimonials  */
.testimonial_img_contact{
  position: absolute;
  bottom: 25px;
  left: 30px;
  border-left: 2px solid #fff;
}
.testimonial_img_contact h3{
  color: #FFF;
font-size: 24px;
font-style: normal;
font-weight: 600;
line-height: 34px; 
text-transform: capitalize;
    margin-left: 12px;
}
.testimonial_img_contact h4{
color: #FFF;
font-size: 16px;
font-style: normal;
font-weight: 600;
line-height: 26px;
text-transform: capitalize;
    margin-left: 12px;
}
.subtile_36 {
  color: #FFF;
font-size: 36px;
font-style: normal;
font-weight: 400;
line-height: 30px; 
}
/* bodycare */
.bodycare_card {
    display: grid;
    gap: 16px;
    position: relative;
}
.bodycare-arrow{
      position: absolute;
       bottom: 0px;
    width: 100%;
    border-radius: 0 0 19px 19px;
    background: var(--wb-dusty-rose);
    padding: 15px 30px;
}

.Products_acnecare_card .acnecare_card{
    height: auto !important;
}