/* Scroll section start */
.trusted-section {
  padding: 90px 0;
  background: #f8f8f6;
  overflow: hidden;
  border-top: 1px solid rgba(10, 24, 48, 0.06);
  border-bottom: 1px solid rgba(10, 24, 48, 0.06);
}

.trusted-container {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
}

.trusted-heading {
  max-width: 620px;
  margin: 0 auto 48px;
  text-align: center;
}

.trusted-eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  color: #e9a6b5;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.trusted-heading h2 {
  margin: 0 0 15px;
  color: #101c32;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.trusted-heading p {
  max-width: 510px;
  margin: 0 auto;
  color: #6d7480;
  font-size: 15px;
  line-height: 1.8;
}

/* Marquee wrapper */
.logo-marquee {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-bottom: 44px;
  overflow: hidden;
}

/* Soft fade edges */
.logo-marquee::before,
.logo-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 150px;
  pointer-events: none;
}

.logo-marquee::before {
  left: 0;
  background: linear-gradient(to right, #f8f8f6, rgba(248, 248, 246, 0));
}

.logo-marquee::after {
  right: 0;
  background: linear-gradient(to left, #f8f8f6, rgba(248, 248, 246, 0));
}

.logo-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: logoScroll 35s linear infinite;
}

.client-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 70px;
  margin-right: 28px;
  padding: 0 25px;
  color: #8c929b;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-align: center;
  white-space: nowrap;
  /* opacity: 0.7; */
  /* filter: grayscale(100%); */
  transition: opacity 0.3s ease;
}

/* Replace text logos with images */
.client-logo img {
  display: block;
  width: auto;
  max-width: 145px;
  max-height: 60px;
  object-fit: contain;
  /* filter: grayscale(100%); */
  /* opacity: 0.65; */
}

.client-logo:hover,
.client-logo:hover img {
  opacity: 1;
}

@keyframes logoScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.trusted-industries {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 42px;
}

.trusted-industries span {
  padding: 9px 15px;
  border: 1px solid rgba(16, 28, 50, 0.1);
  border-radius: 999px;
  color: #68717e;
  font-size: 12px;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.55);
}

@media (max-width: 700px) {
  .trusted-section {
    padding: 65px 0;
  }

  .trusted-container {
    width: min(100% - 30px, 1200px);
  }

  .trusted-heading {
    margin-bottom: 30px;
  }

  .logo-marquee::before,
  .logo-marquee::after {
    width: 65px;
  }

  .client-logo {
    width: 135px;
    height: 60px;
    margin-right: 18px;
    padding: 0 15px;
    font-size: 11px;
  }

  .client-logo img {
    max-width: 110px;
    max-height: 34px;
  }

  .trusted-industries {
    margin-top: 30px;
    gap: 8px;
  }

  .trusted-industries span {
    padding: 8px 11px;
    font-size: 11px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .logo-track {
    animation-play-state: paused;
  }
}
/* Scroll section end */

/* Google Trust Badge Start */
.google-brand {
  display: flex;
  align-items: baseline;
  gap: 0;
  line-height: 1;
  white-space: nowrap;
}

.google-letter {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 27px;
  font-weight: 500;
  letter-spacing: -1.5px;
}

.google-brand strong {
  margin-left: 7px;
  color: #111111;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 23px;
  font-weight: 700;
  letter-spacing: -0.8px;
}

.google-blue {
  color: #4285f4;
}

.google-red {
  color: #ea4335;
}

.google-yellow {
  color: #fbbc05;
}

.google-green {
  color: #34a853;
}

/* Rating row */
.google-rating-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 3px;
}

.google-rating {
  color: #111111;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 29px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -1px;
}

.google-stars {
  color: #fbbc04;
  font-size: 28px;
  line-height: 1;
  letter-spacing: -3px;
  white-space: nowrap;
  text-shadow: 0 1px 1px rgba(180, 120, 0, 0.08);
}

.google-review-count {
  margin-left: 1px;
  color: #7b8490;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 1;
}

/* Supporting text */
.google-review-subtext {
  color: #687384;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.3;
  margin-top: 1px;
}

/* CTA button */
.google-review-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-top: 8px;
  padding: 10px 15px;
  border-radius: 9px;
  background: #fff0f5;
  color: #a62c61;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  transition:
    background 0.2s ease,
    transform 0.2s ease,
    color 0.2s ease;
}

.google-review-button span {
  font-size: 16px;
  line-height: 0.7;
}

.google-review-button:hover {
  background: #f9dce8;
  color: #8f2051;
  transform: translateY(-1px);
}

/* Mobile */
@media (max-width: 520px) {
  .google-reviews-banner {
    min-width: 0;
    width: 100%;
    max-width: 330px;
    padding: 18px 20px;
  }

  .google-letter {
    font-size: 25px;
  }

  .google-brand strong {
    font-size: 21px;
  }

  .google-rating {
    font-size: 27px;
  }

  .google-stars {
    font-size: 25px;
  }
}
/* Google Trust Badge End */

/* Breadcrumbs start */
/* Container styling */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: sans-serif;
  font-size: 14px; /* Keeps it small and secondary to the heading */
  color: #666666; /* Subdued gray color */
  margin-bottom: 15px; /* Spacing above your main H1 title */
}

/* Individual links */
.breadcrumb a {
  color: #c93b7f; /* Use your pink brand color for clickable links */
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

/* The separator (/) */
.breadcrumb .separator {
  color: #b5b5b5;
}

/* Active page (current page should not be clickable or bright) */
.breadcrumb .active {
  color: #777777;
  font-weight: 500;
}

/* Breadcrumbs end */

.mini-service {
  display: flex;
}

.brand img {
  padding: 16px;
}

.badge-text {
  max-width: 75%;
}

.audience {
  display: flex;
  align-items: center;
  gap: 2px;
}

.audience-icon {
  margin: 0 !important;
}

.step:not(:last-child)::after {
  left: 44px !important;
}

.flex-col {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
