body {
  padding: 0;
  margin: 0;
}

/* banner style css starts */

.navbar-light-mode {
  background-color: #062c66;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.hero-section-jewellery-erp {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: url("../jewellery-erp-assets/banner/banner-home-new.webp")
    center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.hero-section-jewellery-erp .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero-content-jewellery-erp {
  position: relative;
  z-index: 2;
}

.hero-content-jewellery-erp p {
  color: rgba(var(--default-color-rgb), 0.8);
  margin: 5px 0 0 0;
  font-size: 20px;
}

.feature-icon {
  font-size: 2rem;
  color: var(--bright-orange);
}

/* banner style css ends */

/* fetaures style css starts */
.features-grid {
  display: flex;
  flex-wrap: wrap;
}

.features-grid > .col {
  flex: 0 0 auto;
  width: 100%;
  border-right: 1px solid var(--nav-dropdown-hover-color);
  border-bottom: 1px solid var(--nav-dropdown-hover-color);
}

.features-grid i {
  color: var(--nav-dropdown-hover-color);
}

.features-grid h3:hover {
  color: var(--bright-orange);
  transition: 0.6s all ease-in-out;
  cursor: pointer;
}

/* benefit section css start */
.benefits-section {
  background: repeating-linear-gradient(
    45deg,
    #fafafa,
    #fafafa 10px,
    #fdfdfd 10px,
    #fdfdfd 20px
  );
}

.benefit-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #f58616, #f4d35e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.8rem;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}

/* why choose us */
.main-img-why-choose-us {
  width: 100%;
  height: auto;
  z-index: 2;
}

.dot-bg-jewellery-erp {
  width: 200px;
  height: 200px;
  top: 15%;
  left: 30%;
  z-index: 1;
  animation: floatUpDown 4s ease-in-out infinite;
}

@keyframes floatUpDown {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-25px);
  }
  100% {
    transform: translateY(0);
  }
}

.timeline {
  position: relative;
  margin-left: 30px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 19px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, #d4a017, transparent);
}

.timeline-item {
  position: relative;
  margin-bottom: 40px;
  display: flex;
  align-items: flex-start;
}

.timeline-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #f58616, #f4d35e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
  font-size: 20px;
}

.timeline-content {
  background: #fff;
  padding: 15px 20px;
  margin-left: 20px;
  border-radius: 10px;
  border: 1px solid #f0e6d2;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.timeline-content h5 {
  color: var(--nav-dropdown-hover-color);
  transition: 0.6s all ease-in-out;
}
.timeline-content h5:hover {
  color: var(--bright-orange);
  cursor: pointer;
}

/* Key Difference code */

.why-choose-unique .diff-card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 15px;
  backdrop-filter: blur(8px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.6s ease;
}

.why-choose-unique .diff-card:hover {
  transform: translateY(-6px);
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  cursor: pointer;
}

.why-choose-unique .diff-icon {
  font-size: 1.8rem;
  color: var(--nav-dropdown-hover-color);
}

.why-choose-unique .diff-text {
  color: var(--nav-dropdown-hover-color);
  transition: 0.6s all ease-in-out;
}
.why-choose-unique .diff-text:hover {
  color: var(--bright-orange);
}
/* Key Difference code ends*/

/* testimonials css start */
.testimonial-slide-jewellery-erp {
  position: relative;
  padding: 0 40px;
}

.quote-bg-jewellery-erp {
  font-size: 80px;
  font-weight: bold;
  color: rgba(212, 175, 55, 0.15);
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.testimonial-text-jewellery-erp {
  font-size: 1.4rem;
  font-weight: 400;
  color: #333;
  line-height: 1.8;
  max-width: 850px;
  margin: auto;
}

.testimonial-author-jewellery-erp {
  font-size: 1.2rem;
  /* margin-top: 15px; */
  color: #000;
}
/* testimonials css end */

/* contact us */

.social-icons {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 15px;
}

.social-icons li a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 18px;
  color: #fff;
  background: #3472b8;
  transition: all 0.3s ease;
}

.social-icons li a:hover {
  transform: translateY(-3px) scale(1.1);
  background: var(--dark-blue, #06306a);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.social-icons li a i {
  line-height: 1;
}
