:root {
  --dark: #6a5142;
  --brown: #5E502C;
  --lbrown: #BE9D5A;
  --lbrown2: #9D721C;
  --pyellow: #E9C66D;
  --pyellow2: 233, 198, 109;
  --light: #FFF8E8;
  --BrandBrown: #4b3a1f;
  --BrandGold: #bda56d;
  --BrandGoldSoft: #d1bd88;
  --TextMuted: #888888;
}

body {
  background-color: #FFF8E8;
  font-family: "Poppins", sans-serif;
}

/*Reset*/
*:focus:not(:focus-visible) {
  outline: none;
}

a {
  text-decoration: none;
}

/* main CSS */
.Montserrat {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
}

.Rounded10 {
  border-radius: 10px;
}

.Dark {
  color: var(--dark);
}

.Brown {
  color: var(--brown);
}

.Lh170 {
  line-height: 1.7;
}

.LBrown {
  color: var(--lbrown);
}

.LBrown2 {
  color: var(--lbrown2);
}

.PYello {
  color: var(--pyellow);
}

.PYelloBg {
  background-color: var(--pyellow);
}

.btn.PYelloBg:hover {
  background-color: var(--lbrown2);
  color: #fff;
}

.Light {
  color: var(--light);
}

.TextMuted {
  color: var(--TextMuted);
}

.LYellow {
  color: #FFE6A9
}

.LYellow2 {
  color: #9F8259
}

.BgOffwhite {
  background-color: #F5EDD9;
}

a.LBrown2:hover,
a.Brown:hover {
  color: var(--dark);
}

.Fs14 {
  font-size: .875rem;
}

.Fs48 {
  font-size: calc(2rem + 1vw);
}

.ArrowLink {
  display: flex;
  align-items: center;
  gap: 5px;
}

.ArrowLink svg {
  width: 11px;
  height: 11px;
  transition: all 0.3s ease-in-out;
}

.ArrowLink:hover svg {
  transform: translateX(5px);
}

@media (min-width:1200px) {
  .Fs48 {
    font-size: 3rem;
  }
}

.Fs18 {
  font-size: 1.125rem;
}

.Spacer1 {
  height: 60px;
}

.Spacer2 {
  height: 90px;
}

.Spacer3 {
  height: 50px;
}

@media(min-width:768px) {
  .Spacer1 {
    height: 80px;
  }

  .Spacer2 {
    height: 140px;
  }

  .Spacer3 {
    height: 65px;
  }
}

@media(min-width:992px) {
  .Spacer1 {
    height: 104px;
  }

  .Spacer2 {
    height: 180px;
  }

  .Spacer3 {
    height: 80px;
  }
}

.BulletList {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0;

}

.BulletList li::marker {
  color: var(--lbrown2)
}

.BulletList li {
  margin-left: 1rem;
}


.modal-backdrop.show,
.offcanvas-backdrop.show {
  opacity: .85;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(10px);
}

header {
  z-index: 10;
  top: 30px;
  transition:
    top 0.3s ease,
    padding 0.3s ease,
    background-color 0.3s ease,
    box-shadow 0.3s ease;
}

.navbar {
  box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

.dropdown-item:focus,
.dropdown-item:hover {
  background-color: transparent;
}

@media(min-width:992px) {
  .navbar-nav {
    --bs-navbar-nav-link-padding-x: 1rem;
  }

  .navbar .dropdown:hover>.dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
  }

  .dropdown-menu {
    background-color: var(--light);
  }
}

@media(min-width:1200px) {
  .navbar-nav {
    --bs-navbar-nav-link-padding-x: 1.125rem;
  }

  .HeaderWrap .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}


.offcanvas {
  background: #EBE2C9;
  background: linear-gradient(0deg, rgba(235, 226, 201, 1) 0%, rgba(245, 237, 217, 1) 100%);
}

.offcanvas .nav-item {
  border-top: 1px solid rgba(0, 0, 0, .08);
  transition: ease-in-out 0.3s;

}

.offcanvas .nav-link {
  padding-top: .75rem;
  padding-bottom: .75rem;
  font-size: 1rem;
  font-weight: 500;
}

.nav-link:hover,
.dropdown-item:hover {
  color: var(--lbrown2)
}
.dropdown-item.active, .dropdown-item:active{
    background:transparent;
    color:var(--lbrown)
}

.offcanvas .dropdown-toggle {
  padding-bottom: .25rem;
}

.offcanvas .dropdown-item {
  padding-top: .25rem;
  padding-bottom: .25rem;
  display: flex;
  align-items: center;
  gap: 6px;
  padding-left: 10px;
}

.offcanvas .dropdown-item:before {
  content: '';
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="10" height="10" viewBox="0 0 24 24" fill="currentColor"><path d="M7.33 24l-2.83-2.829 9.339-9.175-9.339-9.167 2.83-2.829 12.17 11.996z"></path></svg>');
  width: 10px;
  height: 10px;
}

.offcanvas .dropdown-item:hover:before {
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="10" height="10" viewBox="0 0 24 24" fill="%239D721C"><path d="M7.33 24l-2.83-2.829 9.339-9.175-9.339-9.167 2.83-2.829 12.17 11.996z"></path></svg>');
}


.nav-link {
  font-weight: 600;
}

header .SiteLogo {
  height: 64px;
  transition: height 0.3s ease;
}

/* AFTER SCROLL */
header.is-scrolled {
  top: 0;
}

header.is-scrolled .SiteLogo {
  height: 42px;
  /* shrunk logo */
}

header.is-scrolled .navbar {
  border-top-left-radius: 0 !important;
  border-top-right-radius: 0 !important;
}

.HeroBanner {
  margin-top: 76px;
}

.HeroText {
  font-size: 1.375rem;
}

.LightBtn {
  --bs-btn-color: var(--brown);
  --bs-btn-bg: #f5edd9;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: var(--dark);
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: var(--darl);
}

.CaptionHeading {
  color: #FFF9EB;
}

/* Caption base */
.HeroCaption {
  text-align: left;
  left: 10%;
  right: auto;
  top: 0;
  height: 100%;
  position: absolute;
  max-width: 530px;
}

@media(max-width:575px) {
  .HeroCaption {
    left: 20px;
    padding-top: 20px;
    padding-right: 20px;
  }
}

.EnquireNow {
  --bs-btn-color: #fff;
  --bs-btn-bg: #6a5142;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: var(--lbrown);
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: var(--lbrown);
  border: 0;
}

.CompanyNo {
 background: #BE9D5A;
  background-image: url(../img/bg.webp), linear-gradient(45deg, #BE9D5A 0%, #A48752 100%);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.HomeAbout {
  background: #F5EDD9;

}

.HomeAboutTxt {
  padding-top: 30px;
  padding-left: 20px;
  padding-right: 20px;
}

@media(min-width:576px) {
  .HomeAboutTxt {
    padding-top: 40px;
    padding-left: 40px;
    padding-right: 40px;
  }
}

@media(min-width:992px) {
  .HomeAboutTxt {
    padding-top: 0;
    padding-left: 60px;
    padding-right: 60px;
  }
}

@media(min-width:1200px) {
  .HomeAboutTxt {
    margin-right: -50px;
    padding-right: 0;
  }
}

@media(max-width:1199px) {
  .HomeAboutTxt {
    margin-bottom: -50px;
  }
}

#Products {
  --spacer: 40px;
}

.OurProducts {
  background: #F5EDD9;
  background: linear-gradient(180deg, rgba(245, 237, 217, 1) 0%, rgba(235, 226, 201, 1) 100%);
  border-radius: 20px;
  padding-top: var(--spacer);
}

@media(min-width:768px) {
  #Products {
    --spacer: 60px;
  }
}

@media(min-width:992px) {
  #Products {
    --spacer: 90px;
  }
}

.ProductInfoWrap {
  border-bottom: 1px dashed rgba(255, 255, 255, .2);
}

.ProductCol {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}


.ProductBox .ProductCol {
  background: #a48752 ;
}
.ProductBox .ProductCol a{
    z-index:2;
} 
.ProductBox .ProductCol:before {
    content: '';
    background: url(../img/bg.webp) no-repeat 50% 250%;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: .6;
    display: block;
}
.ProductInfo {
  color: #f0d89e;
}

.ProductLink {
  border: 1px solid rgba(var(--pyellow2), .2);
  padding: 1rem;
  border-radius: 10px;
  color: #f0d89e;
}

.ProductLink svg {
  width: 16px;
  height: 16px;
}

.ProductBox .PartnerWithUs {
  background: #A48752!important
}

.marquee-wrapper {
  width: 100%;
  overflow: hidden;
  padding: 10px 0;
  margin-top: var(--spacer);
}

.marquee-content {
  display: flex;
  /* Important: Must be twice the size of wrapper */
  animation: scrollLeft 15s linear infinite;
  opacity: .35;
}

.marquee-item {
  flex: 1;
  /* Ensures items share space equally */
  padding: 0 20px;
  /* Gap between items */
  text-align: center;
  white-space: nowrap;
}

.marquee-item img {
  height: 50px;
  /* Adjust image size */
}

/* Keyframes to move from 0 to -50% of the content width */
@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }

  /* Loops back seamlessly */
}

/* Pause on hover */
.marquee-wrapper:hover .marquee-content {
  animation-play-state: paused;
}

.BtnGradient {
  background-color: var(--lbrown);
  /*background: linear-gradient(90deg, rgba(190, 157, 90, 1) 0%, rgba(88, 73, 42, 1) 100%);*/
  --bs-btn-color: #fff;
  --bs-btn-hover-bg:var(--brown);
  --bs-btn-hover-color: #fff;
    --bs-btn-active-bg:var(--brown);
  --bs-btn-active-color: #fff;
  font-weight: 500;
  border: 0;
}

.StickyCard {
  transition: transform 0.4s ease;
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 1rem;
  background-color: #fff;
  overflow: hidden;
}

.StickyCardsSection {
  position: relative;
  padding: 1rem 0;
}

.StickyCardsWrap {
  position: relative;
}

@media(min-width:768px) {

  .StickyCard {
    position: sticky;
    top: calc(100px + var(--Offset, 0px));
    /* adjust based on header height */
    margin-bottom: 96px;
    z-index: 1;
  }
}

.StickyCard:hover {
  transform: scale(0.98);
}

.StickyCard:nth-child(1) {
  z-index: 1;
}

.StickyCard:nth-child(2) {
  z-index: 2;
  --Offset: 40px;
}

.StickyCard:nth-child(3) {
  z-index: 3;
  --Offset: 80px;
}

.StickyCard:nth-child(4) {
  z-index: 4;
  --Offset: 120px;
}

.StickyCard:nth-child(5) {
  z-index: 5;
  --Offset: 160px;
}

.ReliableSupplyTxt {
  width: 262px;
}

.WhyUsCol {
  background: #EBE2C9;
  background: var(--bgimg), linear-gradient(0deg, rgba(235, 226, 201, 1) 0%, rgba(245, 237, 217, 1) 100%);
  background-repeat: no-repeat;
  background-position: var(--vertical) var(--horizontal);

}

.Scale, .ReliableSupply {
  --bgimg: url(../img/scale-bg.webp);
  --vertical: 50%;
  --horizontal: 100%;
}

.ReliableSupply img {
  min-height: 200px;
}
@media(min-width:992px){
    .ReliableSupplyContent{
        position:absolute;
    }
}
@media(max-width:991px){
   .ReliableSupply img {
    display:none;    
   }
   .ReliableSupplyTxt {
       color:var(--brown)!important;
   }
}

.ApplicationDriven {
  --bgimg: none;
}

.ConsistentPurity {
  --bgimg: url(../img/consistent-purity.webp);
  --vertical: 100%;
  --horizontal: 100%;
}

.TechnicalLeadership {
  background: #BE9D5A;
  background: linear-gradient(45deg, #BE9D5A 0%, #A48752 100%);
  position:relative;
}

.TechnicalLeadership:before {
    content: '';
    background: url(../img/technical-leadership.webp) no-repeat 50% 250%;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: .5;
    display: block;
}
.PartnerWithUs:before{
    display:none!important;
}
.Powered img {
  mix-blend-mode: multiply;
}

.ReliableSupplyTxt {
  width: 262px;
}

.AboutText {
  background: -webkit-linear-gradient(79deg, #d7b571 0%, #6a5142 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.TechPartnersSection {
  padding-bottom: 40px;
  padding-top:40px;
}

.TechDriven .card {
  background-color: var(--techbg);
  border-top: 4px solid;
}

.TechDriven:nth-child(odd) .card {
  --techbg: #fff;
  border-top-color: var(--lbrown);
}

.TechDriven:nth-child(even) .card {
  --techbg: #FEFDFA;
  border-top-color: #836F3D;
}

.TechDriven .card img {
  margin-bottom: 30px;
}

@mrdia(min-width:992px) {
    .TechPartnersSection {
  padding-bottom: 70px;
  padding-top:70px;
}
  .TechDriven .card img {
    margin-bottom: 40px;
  }
}

.SectionHeading {
  color: var(--BrandBrown);
  letter-spacing: .2px;
}

.LeaderCard {
  max-width: 620px;
}

.LeaderAvatarWrap {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  /*padding: 7px;
  background: linear-gradient(135deg, #bda56d50, #d1bd8850);*/
  flex: 0 0 auto;
}

.LeaderAvatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  background: #e9ecef;
  display: block;
  border: 7px solid #be9d5a50;
  box-sizing: border-box;
}

.LeaderName {
  margin-bottom: .15rem;
}

.LeaderRole {
  color: var(--BrandGold);
  font-weight: 500;
  font-size: .9375rem;
}

.LeaderBio {
  color: var(--brown);
  line-height: 1.6;
  font-size: .95rem;
}

.CoreValuesSection {
  position: relative;
  overflow: hidden;
  border-radius: 1.25rem;
  min-height: 380px;

}

.CoreValuesBg {
  position: absolute;
  inset: 0;
  background: url('../img/core-values-bg.webp')no-repeat 0 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
  filter: saturate(1.05) contrast(1.05);
}

.CoreValuesOverlay {
  position: relative;
  z-index: 1;
  padding-top: 150px !important
}

@media(min-width:1200px) {
  .CoreValuesOverlay {
    padding-top: 300px !important
  }
}

.CoreValuesTitle {
  color: #fff;
  text-shadow: 0 8px 30px rgba(0, 0, 0, .35);
}

.ValueCard {
  background: rgba(200, 170, 95, .90);
  border: 0;
}

.Integrity,
.Innovation {
  background-color: #F5EDD9;
}

.Precision,
.Sustainability {
  background-color: var(--light);
}

.LightBgImage {
  background: #fff;
  border-top: 4px solid var(--lbrown) !important;
}

.AboutProcduct {
  background-repeat: 140% 100%;
}

.AboutProcduct hr {
  color: #6F574120;
  opacity: 1;
}

.ValueCard .CardBody {
  padding: 1.25rem 1rem;
}

.ValueIcon {
  width: 38px;
  height: 38px;
  margin-bottom: 28px;
}

.ProductInfoCol {
  background: #F5EDD9;
  background: linear-gradient(180deg, rgba(245, 237, 217, 1) 0%, rgba(235, 226, 201, 1) 100%);
  border-top: 4px solid var(--lbrown) !important;
}

.AvailableSizes {
  background: #F5EDD9;
  background-image: url(../img/availble-size-bg.webp);
  background-repeat: no-repeat;
  background-position: left bottom;
}

.Block1 {
  background: #95784E;
  background: linear-gradient(66deg, rgba(149, 120, 78, 1) 0%, rgba(149, 120, 78, 1) 100%);
}

.ApplicationTitle {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  justify-content: center;
}

.ApplicationTitle:before,
.ApplicationTitle:after {
  content: '';
  background: rgba(255, 255, 255, .1);
  height: 1px;
  background-color: #6F574120;
  width: 200px;
}

.EngineeredPurity {
  background: #fff url(../img/product-bg-filler.webp)no-repeat 200% 150%;
}

.EngineeredPurityImg {
  object-fit: cover;
  height: 100%;
}

.Capacity {
  background: url(../img/capacity.webp)no-repeat 0 0;
  background-size: cover;
}

.Block1,
.Block2 {
  margin-top: -7px;
  border-bottom-left-radius: .375rem;
  border-bottom-right-radius: .375rem;
}

.Block1 {
  background: #F5EDD9;
}

.Block2 {
  background: var(--light);
}

.table td span {
  width: 34px;
  text-align: right;
  display: block;
  margin: 0 auto;
}

.TypicalParticleSize {
  --bs-table-bg: #FFF8E8;
  --bs-table-striped-bg: #ffffff;
  --bs-table-color-state: var(--dark);
}

.GeneralProperties {
  background: #F5EDD9;
  background: url(../img/availble-size-bg.webp)no-repeat right bottom, linear-gradient(180deg, rgba(245, 237, 217, 1) 0%, rgba(235, 226, 201, 1) 100%);
}

@media(min-width:992px) {
  .ItemStick {
    position: sticky;
    top: 50px;
  }
}


/* footer */
.FooterWrap {
  border-radius: 30px;
  padding-top: 35px;
}

.FooterBottom {
  margin-top: 45px;
}

.WidgetTitle {
  font-size: .875rem;
}

.FooterBottom .BrownBox {
  height: 6px;
  background-color: #BE9D5A;
  margin-bottom: 3px;
}

.FooterBottom .BlueBox {
  height: 13px;
  background-color: #08558C;
}

@media(min-width:768px) {
  .FooterWrap {
    padding-top: 50px;
  }

  .FooterBottom {
    margin-top: 60px;
  }
}

@media(min-width:992px) {
  .FooterWrap {
    padding-top: 60px;
  }

  .FooterBottom {
    margin-top: 70px;
  }
}