:root {
  --primary-gradient: linear-gradient(135deg, #0050ea 0%, #20bbff 100%);
  --primary-color: #0050ea;
  --secondary-color: #20bbff;
  --dark-color: #0f0f57;
  --text-color: #52527a;
  --light-bg: #f7f7fc;
  --white-color: #ffffff;
}

.badge-primary-soft {
  background: rgba(138, 43, 226, 0.1);
  color: var(--primary-color);
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 600;
}

.lead-text {
  font-size: 1.125rem;
  color: #52527a;
  line-height: 1.7;
}

/*================================================
0. Mixins Css
=================================================*/
@media (min-width: 1200px) and (max-width: 1399px) {
  .btn-lg {
    font-size: 1.8rem;
  }
}
@media (max-width: 1199px) {
  .btn-lg {
    font-size: 0.875rem;
  }
}

.jewelry-hero {
  position: relative;
  padding: 80px 0 80px;
  overflow: hidden;
}
@media (min-width: 1400px) and (max-width: 1599px) {
  .jewelry-hero {
    padding: 60px 0 80px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .jewelry-hero {
    padding: 170px 0 80px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .jewelry-hero {
    padding: 100px 0 80px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .jewelry-hero {
    padding: 100px 0 80px;
  }
}
@media (max-width: 767px) {
  .jewelry-hero {
    padding: 40px 0 40px;
  }
}
.jewelry-hero .hero-gradient-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  z-index: 0;
}
.jewelry-hero .hero-bg-shapes .shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
  animation: float 20s infinite ease-in-out;
}
.jewelry-hero .hero-bg-shapes .shape-1 {
  width: 400px;
  height: 400px;
  background: var(--primary-color);
  top: -100px;
  right: -100px;
  animation-delay: 0s;
}
.jewelry-hero .hero-bg-shapes .shape-2 {
  width: 300px;
  height: 300px;
  background: hsl(200, 80%, 50%);
  bottom: -50px;
  left: -50px;
  animation-delay: 5s;
}
.jewelry-hero .hero-bg-shapes .shape-3 {
  width: 250px;
  height: 250px;
  background: var(--secondary-color);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: 10s;
}

.hero-title {
  color: #1a1a1a;
  line-height: 1.2;
  font-size: 2.5rem;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .hero-title {
    font-size: 2.2rem;
  }
}
@media (max-width: 991px) {
  .hero-title {
    font-size: 2rem;
  }
}
.hero-title .text-gradient {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  color: #4a4a4a;
  font-size: 1rem;
  line-height: 1.6;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .hero-subtitle {
    font-size: 0.9rem;
  }
}

.trust-signals-inline {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.trust-signals-inline .trust-item {
  text-align: center;
}
.trust-signals-inline .trust-item .trust-number {
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1;
  margin-bottom: 5px;
}
.trust-signals-inline .trust-item .trust-label {
  font-size: 0.875rem;
  color: #666;
}
.trust-signals-inline .trust-divider {
  width: 1px;
  height: 40px;
  background: rgba(0, 0, 0, 0.1);
}

.btn-gradient-primary {
  background: var(--primary-gradient);
  border: none;
  color: #fff;
  font-weight: 600;
  transition: all 0.3s ease;
}
.btn-gradient-primary:hover {
  transform: translateY(-3px);
}

.btn-glass {
  background: rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(0, 0, 0, 0.1);
  color: #333;
  font-weight: 600;
  transition: all 0.3s ease;
}
.btn-glass:hover {
  background: rgba(0, 0, 0, 0.1);
  border-color: rgba(0, 0, 0, 0.2);
  transform: translateY(-3px);
  color: #000;
}

.hero-trust-footer {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
}
.hero-trust-footer .trust-footer-item {
  display: flex;
  align-items: center;
  color: #555;
  font-size: 0.9rem;
}

.hero-image-wrapper {
  position: relative;
}
.hero-image-wrapper .hero-image-frame {
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  padding: 14px;
}
.hero-image-wrapper .hero-jewelry-img {
  position: relative;
  z-index: 1;
  width: 90%;
  margin-left: 20px;
  border-radius: 20px;
  height: auto;
}
.hero-image-wrapper .floating-stat-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 5px 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  animation: floatCard 3s infinite ease-in-out;
  z-index: 2;
}
@media (max-width: 576px) {
  .hero-image-wrapper .floating-stat-card {
    display: none;
  }
}
.hero-image-wrapper .floating-stat-card .stat-icon {
  width: 45px;
  height: 45px;
  border-radius: 12px;
  background: var(--primary-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
}
.hero-image-wrapper .floating-stat-card .stat-value {
  font-size: 1.2rem;
  font-weight: 700;
  color: hsl(240, 70%, 20%);
  line-height: 1;
}
.hero-image-wrapper .floating-stat-card .stat-label {
  font-size: 0.75rem;
  color: hsl(240, 20%, 50%);
  margin-top: 3px;
}
.hero-image-wrapper .floating-stat-card.stat-card-1 {
  animation-delay: 0s;
  top: 19%;
  right: -5%;
  border: 1px solid rgba(0, 0, 0, 0.12);
}
.hero-image-wrapper .floating-stat-card.stat-card-2 {
  bottom: 55%;
  left: -1%;
  border: 1px solid rgba(0, 0, 0, 0.12);
}
.hero-image-wrapper .floating-stat-card.stat-card-3 {
  bottom: 26%;
  right: 5%;
  border: 1px solid rgba(0, 0, 0, 0.12);
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 3;
}
@media (max-width: 576px) {
  .scroll-indicator {
    display: none;
  }
}
.scroll-indicator .scroll-mouse {
  width: 30px;
  height: 50px;
  border: 2px solid var(--primary-color);
  border-radius: 15px;
  margin: 0 auto 10px;
  position: relative;
}
.scroll-indicator .scroll-mouse .scroll-wheel {
  width: 4px;
  height: 10px;
  background: var(--primary-color);
  border-radius: 2px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollWheel 2s infinite;
}
.scroll-indicator .scroll-text {
  color: var(--text-color);
  font-size: 0.85rem;
  margin: 0;
}

.z-index-2 {
  z-index: 2;
}

.service-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.service-badges .badge-glass {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: #333;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.3s ease;
}
.service-badges .badge-glass:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.how-it-works {
  position: relative;
}
.how-it-works .process-card {
  background: var(--white-color);
  border-radius: 20px;
  padding: 40px 30px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.how-it-works .process-card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(135deg, hsl(200, 80%, 55%), hsl(190, 80%, 60%));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.how-it-works .process-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(138, 43, 226, 0.2);
}
.how-it-works .process-card:hover:before {
  transform: scaleX(1);
}
.how-it-works .process-card .process-number {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 3rem;
  font-weight: 700;
  color: rgba(138, 43, 226, 0.1);
}
.how-it-works .process-card .process-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto;
  color: white;
  background: var(--primary-gradient);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  font-size: 2rem;
}
.how-it-works .process-card .process-icon i {
  color: white;
}
.how-it-works .process-card .process-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: hsl(240, 70%, 20%);
  margin-bottom: 15px;
}
.how-it-works .process-card .process-description {
  color: hsl(240, 20%, 50%);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Review Summary Micro-Section */
@keyframes shimmerStars {
  0% {
    background-position: 0% center;
  }
  100% {
    background-position: 200% center;
  }
}
/* Carousel Navigation */
.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary-gradient);
  border: none;
  color: var(--white-color);
  font-size: 1.25rem;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}
.carousel-nav .prev-btn {
  left: 0;
}
.carousel-nav .next-btn {
  right: 0;
}
.carousel-nav:hover {
  transform: translateY(-50%) scale(0.8);
}

/* Trust Indicators */
.trust-indicators {
  background: var(--primary-gradient);
  border-radius: 20px;
  padding: 40px 20px;
}

.trust-label1 {
  color: #ffffff !important;
}

.trust-number1 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 8px;
}

.trust-label1 {
  font-size: 0.9rem;
  opacity: 0.9;
}

/* Responsive */
@media (max-width: 991px) {
  .testimonial-card {
    min-width: calc(50% - 15px);
  }
  .testimonials-carousel {
    padding: 0 50px;
  }
}
@media (max-width: 767px) {
  .testimonial-card {
    min-width: 100%;
  }
  .testimonials-carousel {
    padding: 0 40px;
  }
  .carousel-nav {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  .trust-number {
    font-size: 2rem;
  }
}
/*================ Why Choose Section */
.why-choose-section {
  padding: 100px 0 80px 0;
  background: linear-gradient(to bottom, hsl(240, 50%, 98%), #fff);
}

/* Feature Card */
.feature-card {
  background: #fff;
  border-radius: 20px;
  padding: 35px 30px;
  height: 100%;
  border: 2px solid hsl(240, 30%, 95%);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.feature-card .popular-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--primary-gradient);
  color: #fff;
  padding: 6px 15px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
}
.feature-card .feature-badge {
  width: 70px;
  height: 70px;
  border-radius: 15px;
  background: rgba(55, 125, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 20px;
  transition: all 0.4s ease;
}
.feature-card .feature-title {
  font-size: 1.375rem;
  font-weight: 700;
  color: hsl(240, 70%, 20%);
  margin-bottom: 15px;
}
.feature-card .feature-desc {
  color: hsl(240, 20%, 50%);
  line-height: 1.6;
  margin-bottom: 20px;
}
.feature-card .feature-points {
  list-style: none;
  padding: 0;
  margin: 0;
}
.feature-card .feature-points li {
  color: hsl(240, 20%, 40%);
  font-size: 0.9rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.feature-card .feature-points li i {
  color: var(--primary-color);
  font-size: 0.875rem;
}
.feature-card.featured {
  border-color: var(--primary-color);
}
.feature-card.featured:before {
  transform: scaleX(1);
}
.feature-card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}
.feature-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-color);
}
.feature-card:hover .feature-badge {
  background: var(--primary-gradient);
  color: #fff;
  transform: scale(1.1) rotate(5deg);
}
.feature-card:hover:before {
  transform: scaleX(1);
}

/* Responsive */
@media (max-width: 991px) {
  .why-choose-section {
    padding: 60px 0;
  }
}
/* CTA Section start */
/* CTA Section */
.cta-section {
  padding: 100px 0;
  background: #fff;
}

.cta-wrapper {
  /* Light tint based on brand color #26D0CE/Blue */
  background: linear-gradient(135deg, #f0fbff 0%, #e2f2ff 100%);
  border-radius: 40px;
  padding: 80px 60px;
  position: relative;
  overflow: hidden;
  border: 1px solid #c5d7ee;
}

@media (max-width: 1199px) {
  .cta-wrapper {
    padding: 60px 40px;
  }
}
@media (max-width: 767px) {
  .cta-wrapper {
    padding: 40px 25px;
    border-radius: 24px;
  }
}
.cta-wrapper .cta-bg-shapes .cta-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.6;
}

.cta-wrapper .cta-bg-shapes .cta-shape-1 {
  width: 400px;
  height: 400px;
  background: rgba(55, 125, 255, 0.1);
  top: -150px;
  right: -100px;
}

.cta-wrapper .cta-bg-shapes .cta-shape-2 {
  width: 300px;
  height: 300px;
  background: rgba(38, 208, 206, 0.1);
  bottom: -100px;
  left: -50px;
}

.cta-wrapper .cta-badge {
  display: inline-block;
  background: rgba(55, 125, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(55, 125, 255, 0.2);
  color: #377dff;
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 25px;
  letter-spacing: 0.5px;
}

.cta-wrapper .cta-title {
  font-size: 3rem;
  font-weight: 800;
  color: #1e2022;
  margin-bottom: 20px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

@media (max-width: 1199px) {
  .cta-wrapper .cta-title {
    font-size: 2.75rem;
  }
}
@media (max-width: 991px) {
  .cta-wrapper .cta-title {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .cta-wrapper .cta-title {
    font-size: 2rem;
  }
}
.cta-wrapper .cta-subtitle {
  font-size: 1.1rem;
  color: #677788;
  line-height: 1.6;
  margin-bottom: 40px;
}

@media (max-width: 991px) {
  .cta-wrapper .cta-subtitle {
    text-align: center;
  }
}
@media (max-width: 1280px) {
  .cta-wrapper .cta-title {
    font-size: 2rem !important;
  }
}
.cta-wrapper .cta-subtitle strong {
  color: #377dff;
  background: rgba(55, 125, 255, 0.1);
  padding: 2px 6px;
  border-radius: 4px;
}

.cta-wrapper .cta-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
}

@media (max-width: 991px) {
  .cta-wrapper .cta-benefits {
    max-width: 500px;
    margin: 0 auto;
  }
}
.cta-wrapper .cta-benefits li {
  display: flex;
  align-items: center;
  gap: 15px;
  color: #1e2022;
  margin-bottom: 18px;
  font-size: 1.1rem;
}

.cta-wrapper .cta-benefits li i {
  width: 28px;
  height: 28px;
  background: rgba(55, 125, 255, 0.1);
  color: #377dff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  flex-shrink: 0;
}

@media (max-width: 991px) {
  .cta-wrapper .volume-pricing-box {
    text-align: center;
  }
}
.cta-wrapper .volume-pricing-box .volume-label {
  display: block;
  color: #1e2022;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-wrapper .volume-pricing-box .volume-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

@media (max-width: 991px) {
  .cta-wrapper .volume-pricing-box .volume-pills {
    justify-content: center;
  }
}
.cta-wrapper .volume-pricing-box .volume-pills .v-pill {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  color: #1e2022;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.cta-wrapper .volume-pricing-box .volume-pills .v-pill:hover {
  background: #377dff;
  color: #fff;
  box-shadow: 0 4px 15px rgba(55, 125, 255, 0.3);
}

.cta-wrapper .volume-pricing-box .volume-cta-link {
  color: #377dff;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: underline;
  opacity: 0.9;
  transition: opacity 0.3s ease;
  display: inline-block;
  margin-top: 15px;
}

.cta-wrapper .volume-pricing-box .volume-cta-link:hover {
  opacity: 1;
  color: #0056b3;
}

.cta-wrapper .cta-action-box {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 24px;
  padding: 45px 35px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

@media (max-width: 767px) {
  .cta-wrapper .cta-action-box {
    padding: 35px 25px;
  }
}
.cta-wrapper .cta-action-box .offer-highlight {
  text-align: center;
  margin-bottom: 30px;
}

.cta-wrapper .cta-action-box .offer-highlight .offer-icon {
  font-size: 2.5rem;
  color: #377dff;
  margin-bottom: 15px;
}

.cta-wrapper .cta-action-box .offer-highlight .offer-title {
  font-size: 1.75rem;
  font-weight: 800;
  color: #1e2022;
  margin-bottom: 8px;
}

.cta-wrapper .cta-action-box .offer-highlight .offer-subtitle {
  color: #677788;
  font-size: 0.95rem;
}

.cta-wrapper .cta-buttons .cta-btn-custom {
  font-size: 1.1rem !important;
}

.cta-wrapper .cta-action-box .pricing-context .price-value {
  color: #1e2022;
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.cta-wrapper .cta-action-box .pricing-context .price-disclaimer {
  color: #677788;
  font-size: 0.85rem;
}

.cta-wrapper .cta-action-box .trust-row {
  display: flex;
  justify-content: center;
  gap: 25px;
  padding-top: 25px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

@media (max-width: 767px) {
  .cta-wrapper .cta-action-box .trust-row {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }
}
.cta-wrapper .cta-action-box .trust-row .trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #1e2022;
  font-size: 0.85rem;
  font-weight: 600;
  opacity: 0.9;
}

.cta-wrapper .cta-action-box .trust-row .trust-item i {
  font-size: 1rem;
}

/* Utilities */
.border-white-10 {
  border-color: rgba(0, 0, 0, 0.05) !important;
}/*# sourceMappingURL=jewelry.css.map */