* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  /* background-color: #F3F3F3; */

  font-family: "Public Sans", sans-serif;
}

.hidden {
  display: none;
}

::-webkit-scrollbar {
  width: 0px;
  background: transparent;
}

.move-prop {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  will-change: transform, left;
  z-index: 9999;
  /* max-width: 90vw;
  max-height: 90vh; */
  display: flex;
  align-items: center;
  justify-content: center;
}

.another {
  min-height: 100vh;
  background-color: #7baddb;
}

/* cursor effect  */
/* Remove default cursor */
body {
  /* cursor: none; */
  overflow-x: hidden;
}

/* Cursor styles */
.cursor-outer,
.cursor-inner {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 10000;
  will-change: transform;
}

.cursor-outer {
  width: 40px;
  height: 40px;
  background-color: #a37d51;
  opacity: 0.4;
  mix-blend-mode: difference;
  transition: background-color 0.3s ease;
}

.cursor-inner {
  width: 14px;
  height: 14px;
  background-color: #312d28;
  transition: background-color 0.3s ease;
}

/* cursor effect end  */

/* common styles */
button {
  border: 0;
  outline: 0;
}
img {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.container {
  max-width: 1520px;
  margin: 0 auto;
}
.common-button {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
  border-radius: 8px;
  background: #018849;
  padding: 16px 32px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: 1px solid #018849;
}
.common-button:hover {
  background: white;
  color: #018849;
}

/* common styles ends  */

/* hero image styles start */

.btn-wrapper {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.banner-title {
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}
.banner-title p {
  color: #181818;
  text-align: center;
  font-size: 20px;
  line-height: 29.4px;
}
.banner-title p span {
  background: linear-gradient(
    90deg,
    #2997ff 0%,
    #a259ff 40%,
    #f36 80%,
    #fa6800 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
  font-weight: 700;
}
.banner-title h1 {
  max-width: 600px;
  text-align: center;
  font-size: 50px;
  font-weight: 700;
  line-height: 58.74px;
  letter-spacing: -1.764px;
  margin-top: 30px;
}
.hero-section {
  margin: 50px 0;
}
.hero-img {
  width: 100%;
  height: 500px;
  border-radius: 24px;
  /* border: 2px solid #018849; */
  pointer-events: none;
}
.hero-img img {
  object-fit: contain;
  z-index: 9999;
  background: none;
}

.hero-btn {
  padding-top: 550px;
}

/* hero image styles end */

/* banner title text   */
.wave-wrapper {
  display: inline-block;
}
.char {
  display: inline-block;
}
.space {
  width: 0.3em;
}

.inovative-productins {
  padding: 100px 16px 0px 16px;
  /* background-color: red; */
}

.productions-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 30px;
  position: relative;
}

.production-box {
  background: #161c24;
  padding: 64px 36px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  transition: all 0.4s ease-in-out;
  transform: scale(1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.production-box-prop {
  /* display: none; */
  scale: 0;
  padding-bottom: 15px;
  /* margin-left: 8px; */
  /* width: 0px; */
  transition: background-color 0.5s ease, display 0.5s ease;
}

.production-box:hover {
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
  background: #1e2630;
}

.production-logo {
  width: 88px;
  height: 88px;
}

.production-box h6 {
  font-weight: 700;
  font-size: 24px;
  color: white;
}

.production-box p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  font-weight: 400;
}

/* Positioning the boxes */
.box-left {
  grid-column: 1;
  grid-row: 1;
}

.box-right {
  grid-column: 3;
  grid-row: 1;
}

.box-center {
  grid-column: 2;
  grid-row: 2;
}

/* =========================== */

/* big impression section start  */
.big-impression {
  padding: 50px 16px;
  height: 100vh;
  background-color: white;
  color: black;
  transition: background-color 0.8s ease, color 0.8s ease;
  /* border: 2px solid red; */
  margin: 0 auto;
}

.impression-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 48px;
}
.impression-right {
  max-width: 828px;
}
.impression-img {
  max-width: 828px;
  height: 500px;
}
.impresseion-left h4 {
  font-size: 40px;
  font-weight: 700;
  /* color: #161c24; */
}
.impresseion-left {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 24px;
  max-width: 548px;
}
.impresseion-left p {
  /* color: rgba(22, 28, 36, 0.8); */
  font-size: 16px;
  line-height: 26px;
}
/*  big impression section end  */

/*  sponsor logo section start   */
.logo-wrapper {
  background: white;
  padding: 50px;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
}

.marquee-wrapper {
  display: flex;
  width: max-content;
  animation: marquee-scroll 10s linear infinite;
}

.marquee-track {
  display: flex;
  gap: 20px;
  flex-shrink: 0;
}

.sponsor-img {
  width: 180px;
  height: 80px;
  flex-shrink: 0;
  /* border: 1px solid; */
}

.sponsor-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

@keyframes marquee-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/*  sponsor logo section end   */

/*  timeline section start   */

.timeline-section {
  position: relative;
  width: 80%;
  margin: 0 auto;
  padding: 0px 20px 10px 20px;
  font-family: Arial, sans-serif;
  color: #222;
  /* border: 2px solid #ccc; */
}

.timeline-line-bg {
  position: absolute;
  top: 10%;
  bottom: 10%;
  left: 50%;
  width: 4px;
  background-color: #ccc;
  transform: translateX(-50%);
  z-index: 1;
  border-radius: 2px;
}

.timeline-line-progress {
  position: absolute;
  top: 10%;
  left: 50%;
  width: 4px;
  height: 0;
  background-color: #28a745;
  transform: translateX(-50%);
  z-index: 2;
  border-radius: 2px;
}

.timeline-container {
  position: relative;
}

.timeline-item {
  position: relative;
  width: 45%;
  margin: 100px 0;
  opacity: 0;
  transform: translateY(50px);
  padding-left: 0;
  padding-right: 0;
  background: none;
}

.timeline-item.left {
  left: 0 !important;
  text-align: right;
}

.timeline-item.right {
  left: 55%;
  text-align: left;
}

.timeline-item h3 {
  font-size: 38px;
  margin-bottom: 6px;
  font-weight: 600;
}

.timeline-item p {
  font-size: 18px;
  color: #444;
  margin-top: 0;
  line-height: 1.4;
}

.timeline-item::before {
  content: "";
  position: absolute;
  top: 20px;
  width: 14px;
  height: 14px;
  background: #28a745; /* Green dot */
  border-radius: 50%;
  z-index: 3;
  box-shadow: 0 0 5px rgba(40, 167, 69, 0.5);
}

.timeline-item.left::before {
  right: -28px;
}

.timeline-item.right::before {
  left: -28px;
}

/* timeline section end  */

/*  tailored inlays section start  */
.tailored-section {
  padding: 50px 16px;
}
.tailored-section-title {
  max-width: 684px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.tailored-section-title h4 {
  font-size: 40px;
  font-weight: 700;
  color: #161c24;
}
.tailored-section-title p {
  color: rgba(22, 28, 36, 0.8);
  font-size: 16px;
  line-height: 26px;
}
.tailored-wrapper {
  /* overflow-x: hidden; */
  margin: 48px 0;
  display: flex;
  align-items: center;
  gap: 10px !important;
}
.tailored-box {
  background: white;
  padding: 24px;
  border-radius: 24px;
  /* border: 2px solid red; */
  height: 100%;
}
.tailored-img {
  height: 455px !important;
  border-radius: 16px;
  width: 100%;
  /* border: 2px solid red; */
  object-fit: contain;
}
.tailored-img img {
  border-radius: 16px;
}
.tailored-content {
  margin-top: 32px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
}
.tailored-content h6 {
  color: #161c24;
  font-size: 24px;
  font-weight: 700;
}
.tailored-content p {
  margin-top: 16px;
  max-width: 511px;
  color: #454f5b;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}
/* tailored inlays section end  */

/* configure section  */
/*  packaging product section start  */
/* .packagin-product {
  padding: 80px 16px;
} */
/* .packagin-product-wrapper {
  display: flex;
  align-items: start;
  gap: 30px;
  justify-content: space-between;
  background: white;
  padding: 42px;
  margin-top: 48px;
  border: 1px solid rgba(22, 28, 36, 0.1);
  border-radius: 24px;
} */

.top-img {
  cursor: pointer;
  height: 350px;
  width: 702px;
}
.switcher-sub-image {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.sub-images {
  max-width: 220px;
  height: 140px;
  cursor: pointer;
}
.your-configuration {
  margin-top: 20px;
  display: flex;
  padding: 32px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 16px;
  border-radius: 16px;
  background: rgba(22, 28, 36, 0.05);
  width: 100%;
}
.configuration-title {
  width: 100%;
  padding-bottom: 16px;
  color: #000;
  font-size: 20px;
  font-weight: 500;
  border-bottom: 1px solid rgba(22, 28, 36, 0.2);
}
.money-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.money-wrapper h5 {
  color: #161c24;
  font-size: 32px;
  font-weight: 700;
}
.money-wrapper p {
  color: #161c24;
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
}
.delivery-discount-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: space-between;
}
.delivery-discount-boxes {
  width: 311px;
  height: 292px;
  display: flex;
  padding: 24px;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  border-radius: 16px;
  background: #fff;
}
.delivery-time-icon {
  width: 28px;
  height: 28px;
}
.delivery-discount-boxes span {
  width: 100%;
  color: #161c24;
  font-size: 16px;
  font-weight: 700;
  border-bottom: 1px solid rgba(22, 28, 36, 0.2);
  padding-bottom: 16px;
}
.delivery-discount-boxes p {
  color: #161c24;
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
  max-width: 263px;
}
.money-start {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  width: 100%;
}
.money-range {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.money-range p {
  color: rgba(22, 28, 36, 0.7);
  font-size: 16px;
}
.product-right-side {
  width: 100%;
}
.product-right-side h5 {
  color: #161c24;
  font-size: 32px;
  font-weight: 700;
  line-height: 52px;
}
.product-right-side p {
  color: rgba(22, 28, 36, 0.8);
  font-size: 18px;
  font-weight: 600;
}
.product-right-side-list {
  margin: 16px 0;
  list-style-type: none;
  padding: 0;
  border-bottom: 1px solid rgba(22, 28, 36, 0.2);
  padding-bottom: 10px;
}
.product-right-side-list li {
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
  color: rgba(22, 28, 36, 0.8);
}
.product-right-side-list li:before {
  content: "•";
  color: #222;
  font-size: 24px;
  position: absolute;
  left: 0;
  top: -2px;
}
.product-right-side-list li strong {
  font-size: 16px;
  color: #161c24;
  font-weight: 700;
}
.select-dimensions {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.select-dimensions-title {
  color: #018849 !important;
}
.select-dimensions-item {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.select-dimensions-item p {
  color: #161c24;
  font-size: 18px;
  font-weight: 600;
  border: none;
  padding: 10px 0;
}
/* Force the dropdown to full width */
.nice-select {
  width: 100% !important;
}

/* The dropdown list */
.nice-select .list {
  width: 100% !important;
  max-height: 450px; /* or any height you prefer */
  overflow-y: auto !important; /* adds scroll when needed */
  overflow-x: hidden;
  border: 1px solid grey;
}

.nice-select .current {
  display: block;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nice-select .list::-webkit-scrollbar {
  width: 6px;
}

.nice-select .list::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 4px;
}

.nice-select .list::-webkit-scrollbar-track {
  background-color: transparent;
}

.select-dimensions-select {
  width: 100%;
  border-radius: 8px;
  border: 1px solid rgba(22, 28, 36, 0.25);
  background: #fff;
  color: rgba(22, 28, 36, 0.6);
  font-size: 16px;
  font-weight: 500;
}

.select-color {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.select-color h6 {
  color: #161c24;
  font-size: 18px;
  font-weight: 600;
}
.color-select-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.color-picker {
  display: flex;
  gap: 16px;
  padding: 20px;
}
.color-swatch {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  box-shadow: 0 0 0 2px #eee;
  cursor: pointer;
}
.color-swatch.selected {
  box-shadow: 0 0 0 2px #7d91ac;
}
.printing-process h5,
.pressure h5,
.inlay h5 {
  color: #161c24;
  font-size: 18px;
  font-weight: 600;
}
.printing-process-buttons,
.inlay-buttons {
  display: flex;
  align-items: flex-start;
  align-content: flex-start;
  gap: 12px;
  flex-wrap: wrap;
}
.printing-process-button,
.pressure-button,
.inlay-button {
  background: white;
  color: rgba(22, 28, 36, 0.7);
  font-size: 16px;
  border-radius: 8px;
  border: 1px solid rgba(22, 28, 36, 0.25);
  padding: 9px 18px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.printing-process-button:hover,
.pressure-button:hover,
.inlay-button:hover {
  background: #018849;
  color: #fff;
  font-size: 16px;
  border-radius: 8px;
  border: 1px solid #018849;
  padding: 9px 18px;
  cursor: pointer;
}
.item-no {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.item-no h5 {
  color: #161c24;
  font-size: 18px;
  font-weight: 600;
  line-height: normal;
}
.item-no-item p {
  color: rgba(22, 28, 36, 0.8) !important;
  font-size: 16px;
  font-weight: 500;
  border-bottom: 0;
}
.increment-decrement {
  display: flex;
  align-items: center;
  gap: 12px;
}
.increment-decrement button {
  width: 44px;
  height: 44px;
  display: flex;
  padding: 10px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 8px;
  border: 1px solid rgba(22, 28, 36, 0.1);
  background: rgba(22, 28, 36, 0.05);
  cursor: pointer;
  font-size: 20px;
  color: #8f8f8f;
}
.increment-decrement p {
  border-bottom: 0;
  padding: 0;
}
.printing-position {
  padding: 20px;
  border-radius: 12px;
  border: 1px solid rgba(237, 149, 7, 0.3);
  background: rgba(237, 149, 7, 0.1);
}
.printing-position p {
  color: #e0951b !important;
  font-size: 16px;
  font-weight: 500;
  border-bottom: 0;
}
.add-to-cart-button {
  width: 100%;
  padding: 14px 25px;
  border-radius: 8px;
  background: #018849;
  color: #fff;
  font-size: 20px;
  border: none;
  cursor: pointer;
  font-weight: 700;
  border: 1px solid #018849;
  transition: all 0.3s ease-in-out;
}
.add-to-cart-button:hover {
  background: white;
  color: #018849;
}
.additional-payment p {
  color: #000 !important;
  font-size: 16px;
  border: 0;
}
.payment-methods {
  display: flex;
  gap: 16px;
}
.payment-methods button {
  cursor: pointer;
  background: #fff;
  width: 124px;
  height: 56px;
}
.pricing-details {
  width: 100%;
  display: flex;
  padding: 32px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 16px;
  border-radius: 16px;
  background: rgba(22, 28, 36, 0.05);
}
.pricing-details h6 {
  color: #161c24;
  font-size: 16px;
  font-weight: 500;
}
.pricing-content {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(22, 28, 36, 0.2);
  padding-bottom: 16px;
}
.pricing-content h5 {
  color: #161c24;
  font-size: 24px;
  font-weight: 800;
}
.pricing-content span {
  color: #161c24;
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
}
.volume-discount {
  width: 100%;
  display: flex;
  padding: 24px;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  flex: 1 0 0;
  border-radius: 16px;
  background: #fff;
}
.volume-discount h6 {
  width: 100%;
  color: #161c24;
  font-size: 16px;
  font-weight: 700;
  border-bottom: 1px solid rgba(22, 28, 36, 0.2);
  padding-bottom: 16px;
}
.discount-start {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  width: 100%;
}
.discount-range {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.faq-and-shipping {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}
.faq-and-shipping a {
  color: #018849;
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
  text-decoration-line: underline;
}
.net-prices p {
  color: rgba(22, 28, 36, 0.8);
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
}
.print-and-register {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.register-button,
.print-button {
  color: #161c24;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  max-width: 485px;
  text-align: center;
  display: flex;
  height: 56px;
  padding: 16px 32px;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  border: 1px solid rgba(22, 28, 36, 0.1);
  background: rgba(22, 28, 36, 0.05);
}
/* .print-button */
/* <!-- packaging product section end --> */

/*  <!-- Card stagger start --> */
.ideas-boxes {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  /* min-height: 100vh; */
  /* border: 2px solid yellow; */
}

.ideas-boxes-wrapper {
  width: 100%;
  height: 300px;
  /* border: 2px solid yellow; */
}

.ideas-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  /* opacity: 0; */
  pointer-events: none;
  /* transition: transform 0.5s ease, opacity 0.5s ease; */
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ideas-box.active {
  opacity: 1;
  pointer-events: auto;
  color: #1e1e1e;
}
.topRated-title {
  font-size: 50px;
  text-align: center;
  margin-bottom: 200px;
  color: #1e1e1e;
  /* border: 2px solid; */
}
.check-image {
  width: 120px;
  height: 120px;
  margin: 0 auto 20px;
  /* transform: scale(0); */
  /* opacity: 0; */
}
.ideas-box.active .check-image {
  transform: scale(1);
  opacity: 1;
}

.check-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.ideas-box p {
  /* color: #1e1e1e; */
  color: rgba(22, 28, 36, 0.3);
  font-weight: 600;
  font-size: 40px;
  max-width: 600px;
  /* border: 2px solid blue; */
}

.ideas-box.active p {
  /* color: #1e1e1e1e; */
  color: rgba(22, 28, 36, 0.9);
}

/* card stagger end  */

/*  <!-- Why Ideas in boxes? end --> */

/* contact person start */
.contact-person {
  margin-top: 32px;
  padding: 0 16px;
}
.contact-content {
  background: white;
  border: 1px solid rgba(22, 28, 36, 0.1);
  padding: 40px;
  border-radius: 24px;
  display: flex;
  gap: 32px;
  transition-duration: 0.4s;
  margin-top: 0px !important;
  margin-bottom: 32px;
}
.contact-content:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.contact-img {
  width: 160px;
  height: 160px;
  border-radius: 100%;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-para {
  font-size: 16px;
  font-weight: 500;
  color: rgba(22, 28, 36, 0.7);
}
.contact-info h5 {
  font-size: 28px;
  font-weight: 700;
  color: #161c24;
}
.consulting-p {
  font-size: 20px;
  color: #161c24;
  font-weight: 500;
}
.contact-info span {
  font-size: 18px;
  color: #161c24;
  font-weight: 600;
}
/* contact person end */

/* Custom arrow styling */
.owl-nav {
  position: absolute;
  top: 50%;
  width: 92%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
}
.owl-prev,
.owl-next {
  background: transparent !important;
  width: 40px;
  height: 40px;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  color: #333 !important;
  font-size: 20px !important;
}
.owl-prev {
  margin-left: -20px;
}
.owl-next {
  margin-right: -20px;
}

/* custom arrow style ends  */

/* customer examples start */
.customer-examples {
  background-color: #f9f9f9;
  padding: 150px 20px;
  font-family: sans-serif;
  overflow-x: hidden;
}

.customer-title {
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 40px;
  color: #111;
  text-align: left;
}

.customer-wrapper {
  padding: 20px;
  background-color: #fff;
  border-radius: 20px;
  /* border: 2px solid green; */
}

.customer-box {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 580px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-bottom: 20px;
  
}

.customer-img img {
  width: 100%;
  height: auto;
  display: block;
  border-bottom: 1px solid #eee;
}
.custom-box-text {
  position: absolute;
  bottom: 7%;
  color: #fff;
}
.custom-box-text h6 {
  font-size: 26px;
  color: #fff;
  font-weight: 600;
}

.owl-carousel {
  /* overflow-x: hidden; */
  /* border: 2px solid rebeccapurple; */
}
.customer-wrapper .owl-carousel .owl-dots.disabled,
.owl-carousel .owl-nav.disabled {
  display: flex !important;
}
.customer-wrapper .owl-prev {
  margin-left: -60px;
}
.customer-wrapper .owl-next {
  margin-right: -164px;
}
/* customer examples end */









/* experience product start */
.experience-product {
  padding: 0 16px;
  margin-top: 80px;
}
.experience-product-wrapper {
  margin-bottom: 80px;
  display: flex;
  padding: 100px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 32px;
  background: #161c24;
}
.extra-packaging {
  color: #018849;
  text-align: center;
  font-size: 18px;
  padding: 9px 20px;
  border-radius: 99px;
  border: 1px solid rgba(1, 136, 73, 0.25);
  background: rgba(1, 136, 73, 0.15);
}
.experience-product-wrapper h4 {
  max-width: 746px;
  color: #fff;
  text-align: center;
  font-size: 48px;
  font-weight: 700;
  margin-top: 24px;
}
.product-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
  margin: 48px 0;
}
.experience-product-img {
  border-radius: 24px;
  background: #fff;
  height: 426px;
  padding: 12px;
}
.experience-product-img img {
  border-radius: 24px;
}
/* experience product end */

/* top rated start */
.top-rated {
  margin-top: -250px;
  margin-bottom: 100px;
  padding: 0 16px;
}
.topRated-titile {
  color: #161c24;
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  line-height: 52px;
  margin-bottom: 32px;
}
/* .top-rated-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  margin: 0 24px;
} */
.top-rated-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 40px;
}

.top-rated-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
  padding: 40px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(22, 28, 36, 0.1);
  transition-duration: 0.4s;
  transform: scale(1);
}
.top-rated-box:hover {
  transform: scale(1.03);
  box-shadow: 0px 4px 4px 0px rgba(0.1, 0.1, 0.1, 0.1);
}
.review-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}

.star-review {
  width: 72px;
  height: 72px;
}
.top-rated-box h5 {
  font-size: 20px;
  font-weight: 500;
  color: rgba(22, 28, 36, 0.8);
}
.review-img {
  width: 24px;
  height: 24px;
}
.top-rated-box h6 {
  color: rgba(22, 28, 36, 0.8);
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  line-height: 26px;
}
.top-rated-box span {
  color: rgba(22, 28, 36, 0.8);
  text-align: center;
  font-size: 16px;
  line-height: 26px;
}
/* top rated end */

/* <!-- Why Ideas in boxes? slider section start --> */
.ideas-box {
  transition: 0.2s ease-in-out;
}
.ideas-box:hover {
  /* transform: scale(1.03); */
  /* box-shadow: 0px 4px 4px 0px rgba(0.10, 0.10, 0.10, 0.10); */
}
.ideas-boxes-slider {
  margin: 120px 0px;
  padding: 0 16px;
  overflow-x: hidden;
  /* border: 2px solid rebeccapurple; */
}
.ideas-boxes-slider-content p {
  color: #018849;
  text-align: center;
  font-size: 18px;
  border-radius: 99px;
  border: 1px solid rgba(1, 136, 73, 0.25);
  background: rgba(1, 136, 73, 0.15);
  padding: 9px 20px;
  width: fit-content;
}
.ideas-boxes-slider-content h5 {
  color: #161c24;
  font-size: 40px;
  font-weight: 700;
  line-height: 52px;
  margin: 24px 0 48px 0;
}
.ideas-box-slider-wrapper {
  display: flex;
  align-items: center;
  gap: 30px;
}
.ideas-slider-box {
  border-radius: 16px;
  background: #fff;
  display: flex;
  border: 1px solid rgba(22, 28, 36, 0.1);
  /* width: 33%; */
  padding: 32px;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.ideas-slider-img {
  width: 64px;
  height: 64px;
}
.ideas-slider-box h6 {
  color: #161c24;
  font-size: 24px;
  font-weight: 700;
}
.ideas-slider-box p {
  color: rgba(22, 28, 36, 0.8);
  font-size: 16px;
  line-height: 26px;
}
.ideas-box-slider-wrapper {
  overflow: hidden !important;
  width: 100%;
  position: relative;
  /* margin-left: 160px; */
}
.ideas-box-slider-wrapper .owl-stage-outer {
  overflow: visible !important;
}
.ideas-box-slider-wrapper .owl-stage {
  display: flex;
}

/* <!-- Why Ideas in boxes? slider section end --> */



/* <!-- quote section start --> */

.quote-section {
  position: relative;
  width: 100%;
  height: 80vh;
  background: url('../assets/Quote/bg-with-shadow.png') no-repeat center center / cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quote-bg {
  display: none;
}

.quote-wrap.container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 20px;
  position: relative;
  z-index: 2;
  /* border: 2px solid re d; */
}

.quote-content {
  display: flex;
  align-items: center;
  justify-content: center;

  flex-wrap: wrap;
  margin-right: 600px;
  gap: 50px;
  position: relative;
  /* border: 2px solid red; */
}

.quote-icon {
  position: absolute;
  top: -60%;
  right: -15%;
  height: 650px;
  width: 300px;
  opacity: 2;
  z-index: 999;
  color: white;
  /* border: 2px solid green; */
  
}

.quote-text {
  max-width: 600px;
  color: white;
  z-index: 2;
  text-align: left;
 
}

.quote {
  font-size: 30px;
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 20px;
}

.author {
  font-size: 24px;
  font-weight: bold;
   margin-top: 50px;
}

.position {
  font-weight: normal;
  font-size: 16px;
}

.quote-user .user-img {
  position: absolute;
  right: 15%;
  bottom: 0;
  width: 550px;
  height: auto;
  /* z-index: 2; */
}
/* Black overlay */


/* <!-- quote section end --> */



/* footer container star */
.footer {
  padding: 0 16px;
  margin: 20px 0px;
}
.footer-container {
  display: flex;
  padding: 80px 200px;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  border-radius: 32px;
  background: #161c24;
}
.footer-img {
  width: 254.567px;
  height: 49.334px;
}
.footer-img img {
  object-fit: contain;
}
.footer-container p {
  max-width: 837px;
  color: #fff;
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  line-height: 56px;
}
/* footer container end */

/* video effect section / page split  */
.video-wrap {
  position: relative;
  width: 100%;
  height: auto;
  padding: 0 40px;
  z-index: 1;
}
.spacer {
  width: 100%;
  height: 20vh;
}
.work {
  display: flex;
  /* border: 2px solid yellow; */
  width: 100%;
}
.video-effect-left {
  position: relative;
  /* width: 54%; */
  z-index: 2;
  /* border: 2px solid; */
  margin-right: auto;
}
.work-full-text {
  margin: auto 0;
  width: 80%;
}
.work-info {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* outline: 2px solid palevioletred; */
}
.work-left-content {
  text-align: left;
}
.work-left-content h4 {
  font-size: 56px;
}
.work-left-content p {
  margin-top: 20px;
  /* line-height: 0.9; */
  font-size: 22px;
}
.video-effect-right {
  /* width: 46%; */
  height: auto;
  /* background-color: gold; */
}
.work-right-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: sticky;
  width: 100%;
  height: 100vh;
  top: 0vh;
  /* background-color: peachpuff; */
}
.work-right-photo {
  /* width: 25vw;
  height: 20vw; */
  width: 600px;
  height: 500px;
  position: relative;
}
.work-photo-item {
  position: absolute;
  width: 100%;
  height: 100%;
  cursor: pointer;
  border-radius: 80px;
  overflow: hidden;
}
.work-photo-item video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10%;
}

/* video effect section / page split END */

/* =============================================== */
/* =============================================== */
/* =============================================== */

/* Root section setup */
.icon-box-animation {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  color: #000;
  transition: background-color 0.8s ease, color 0.8s ease;
  overflow: hidden;
}

.main-icon-title {
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translateX(-50%);
  font-size: 3rem;
  color: #1e1e1e;
  z-index: 12;
  margin-top: 0;
  text-align: center;
  transition: all 0.4s ease;
}

.icon-box-animation.dark-mode {
  background-color: #000;
  color: #fff;
}

.icon-box-animation.dark-mode .icon-title-item,
.icon-box-animation.dark-mode .main-icon-title,
.icon-box-animation.dark-mode .active-title-wrapper {
  color: #fff;
}

.icon-container {
  max-width: 800px;
  text-align: center;
  position: relative;
  padding: 2rem;
}

/* Fixed centered icon */
.icon-image-wrapper {
  width: 150px;
  height: 150px;
  position: absolute;
  top: 37%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}

.icon-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  rotate: 9deg;
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}

/* Fixed title under icon */
.active-title-wrapper {
  position: absolute;
  top: calc(40% + 90px);
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 600px;
  z-index: 11;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Title text styles */
.icon-title-item {
  font-size: 2.8rem;
  opacity: 0;
  transform: translateY(60px);
  font-weight: bold;
  text-align: center;
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  line-height: 1.4;
  will-change: transform, opacity;
}

.icon-title-item.active {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.icon-title-item.fade-out {
  opacity: 0 !important;
  transform: translateY(-40px) !important;
}

.icon-title-item p span {
  background: linear-gradient(
    90deg,
    #2997ff 0%,
    #a259ff 40%,
    #f36 80%,
    #fa6800 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
  font-weight: 700;
}

/* The full title list (hidden) */
.icon-title-list {
  opacity: 0;
  pointer-events: none;
}

/* Scroll progress bar container (fixed on right side) */
.icon-section-scrollbar {
  position: fixed;
  top: 20px;
  right: 30px;
  height: 90vh;
  width: 6px;
  background-color: #e0e0e0;
  border-radius: 3px;
  z-index: 999;
  overflow: hidden;
  display: none; /* starts hidden */
}

.icon-section-progressbar {
  width: 100%;
  height: 0%;
  background: linear-gradient(to bottom, #2997ff, #a259ff, #f36, #fa6800);
  transition: height 0.2s ease-out;
  border-radius: 3px;
}

/* lottie box animation  */
/* brand experience start  */
/* .brand-experience {
  background-color: #d9ede4;
}
.brand-experience-wrapper {
  padding: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 200px;
  margin: 0 auto;
  height: 100vh; 
}

.brand-content-item {
  opacity: 0;
  transform: translateY(40px);
}

.brand-p .sentence {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  margin-right: 6px; 
}

.right-content {
  gap: 24px;
  max-width: 600px;
}
.right-content h4 {
  font-size: 40px;
  font-weight: 700;
  color: #161c24;
}

.right-content .brand-p {
  font-size: 16px;
  color: rgba(22, 28, 36, 0.8);
  line-height: 32px;
}
.brand-space {
  margin-bottom: 30px;
}
#lottie-container {

  width: 500px;
  height: 500px;
} */

/*  brand experience end  */
