:root {
  --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Nunito", sans-serif;
  --nav-font: "Inter", sans-serif;
}

:root {
  --background-color: #ffffff;
  --default-color: #212529;
  --heading-color: #2d465e;
  --accent-color: #34bf49;
  --surface-color: #ffffff;
  --contrast-color: #ffffff;
}

.light-background {
  --surface-color: #ffffff;
}

:root {
  scroll-behavior: smooth;
}

body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: 'Lato', Arial, sans-serif;
}

a {
  color: #28a745;
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb,#28a745,transparent 25%);
  text-decoration: none;
}

.footer {
  background-color: var(--nav-dropdown-background-color);
  font-size: 14px;
  position: relative;
}

.footer .footer-top {
  padding-top: 50px;
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 5px;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  color: var(--heading-color);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
}

.footer .footer-about p {
  font-size: 14px;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb,var(--default-color),transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb,var(--default-color),transparent 20%);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: #28a745;
  border-color: #28a745;
}

.footer h4 {
  font-size: 16px;
  font-weight: 700;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul li {
  padding: 6px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: color-mix(in srgb,var(--default-color),transparent 30%);
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: #28a745;
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.page-title {
  color: var(--default-color);
  background-color: #f3f2ef;
  padding: 170px 0 80px 0;
  text-align: center;
  position: relative;
}

.page-title h1 {
  font-size: 52px;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li + li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li + li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb,var(--default-color),transparent 70%);
}

.section-title p {
  margin-bottom: 0;
}

.hero {
  position: relative;
  padding-top: 160px;
  background: linear-gradient(135deg,color-mix(in srgb,var(--accent-color),transparent 95%) 50%,color-mix(in srgb,var(--accent-color),transparent 98%) 25%,transparent 50%);
  background: #fff0;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 90% 10%,color-mix(in srgb,#28a745,transparent 92%),transparent 40%);
  pointer-events: none;
}

.hero .hero-content {
  position: relative;
  z-index: 1;
}

.hero .hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -1.19px;
  margin-bottom: 1.5rem;
  color: var(--heading-color);
}

.hero .hero-content h1 .accent-text {
  color: #28a745;
}

@media (max-width:992px) {
  .hero .hero-content {
    text-align: center;
    margin-bottom: 3rem;
  }
}

@media (max-width:992px) {
  .hero .hero-content h1 {
    font-size: 2.5rem;
  }
}

@media (max-width:575px) {
  .hero .hero-content h1 {
    font-size: 2rem;
  }
}

.hero .hero-image {
  position: relative;
  text-align: center;
  z-index: 1;
}

.hero .hero-image img {
  max-width: 100%;
  height: auto;
}

.hero .customers-badge {
  position: absolute;
  bottom: 10px;
  right: 30px;
  background-color: var(--surface-color);
  padding: 1rem;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgb(0 0 0 / .1);
  max-width: 300px;
  animation: float-badge 3s ease-in-out infinite;
  will-change: transform;
}

.hero .customers-badge .customer-avatars {
  display: flex;
  align-items: center;
  margin-bottom: .5rem;
}

.hero .customers-badge .avatar {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 2px solid var(--surface-color);
  margin-left: -8px;
}

.hero .customers-badge .avatar:first-child {
  margin-left: 0;
}

.hero .customers-badge .avatar.more {
  background-color: #28a745;
  color: var(--contrast-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  font-weight: 600;
}

.hero .customers-badge p {
  font-size: .875rem;
  color: color-mix(in srgb,var(--default-color),transparent 40%);
}

@media (max-width:992px) {
  .hero .customers-badge {
    position: static;
    margin: 1rem auto;
    max-width: 250px;
  }
}

.hero .stats-row {
  position: relative;
  z-index: 1;
  margin-top: 5rem;
  background-color: var(--surface-color);
  border-radius: 20px;
}

.hero .stat-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 2rem;
}

.hero .stat-item .stat-icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: color-mix(in srgb,#28a745,transparent 92%);
  border-radius: 50px;
  transition: 0.3s;
}

.hero .stat-item .stat-icon i {
  font-size: 1.5rem;
  color: #28a745;
}

.hero .stat-item:hover .stat-icon {
  background-color: #28a745;
}

.hero .stat-item:hover .stat-icon i {
  color: var(--contrast-color);
}

.hero .stat-item .stat-content {
  flex-grow: 1;
}

.hero .stat-item .stat-content h4 {
  font-size: 1.25rem;
  margin-bottom: .25rem;
  font-weight: 600;
}

.hero .stat-item .stat-content p {
  font-size: .875rem;
  color: color-mix(in srgb,var(--default-color),transparent 40%);
  margin: 0;
}

@media (max-width:575px) {
  .hero .stat-item {
    padding: 1.5rem;
  }
}

@keyframes float-badge {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}

.features-cards {
  --default-color: #555;
  --heading-color: #333;
}

.features-cards .feature-box {
  height: 100%;
  padding: 40px 30px;
  border-radius: 0;
}

.features-cards .feature-box i {
  font-size: 44px;
  display: inline-block;
  line-height: 0;
  color: #28a745;
  margin-bottom: 20px;
}

.features-cards .feature-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 10px 0;
}

.features-cards .feature-box p {
  font-size: 15px;
  margin-bottom: 0;
}

.features-cards .feature-box.orange {
  background-color: #fff3e2;
}

.features-cards .feature-box.orange i {
  color: #edb86e;
}

.features-cards .feature-box.blue {
  background-color: #deedfd;
}

.features-cards .feature-box.blue i {
  color: #28a745;
}

.features-cards .feature-box.green {
  background-color: #d5f1e4;
}

.features-cards .feature-box.green i {
  color: #48c88a;
}

.features-cards .feature-box.red {
  background-color: #fdeded;
}

.features-cards .feature-box.red i {
  color: #f28484;
}

:root {
  --logo-height: 60px;
  --logo-gap: 60px;
  --marquee-speed: 28s;
  --fade-width: 12.5%;
}

/* layout */

.logo-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 24px 0;
}

.logo-track {
  display: flex;
  align-items: center;
  gap: var(--logo-gap);
  animation: marquee var(--marquee-speed) linear infinite;
  will-change: transform;
}

/* images */

.logo-track img {
  height: var(--logo-height);
  width: auto;
  display: block;
  opacity: 0.65;
  filter: grayscale(100%);
  transition: transform .35s cubic-bezier(.2,.8,.2,1), opacity .25s ease, filter .25s ease;
  transform-origin: center;
}

/* hover / focus */

.logo-track img:hover, .logo-track img:focus {
  transform: scale(1.08) translateY(-2px);
  opacity: 1;
  filter: none;
  outline: none;
}

/* small parallax: slightly different transform for even/odd items for a livelier effect */

.logo-track img:nth-child(odd) {
  transform: translateY(0) scale(1);
}

.logo-track img:nth-child(even) {
  transform: translateY(0) scale(1);
}

/* fade masks (left + right) */

.logo-fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: var(--fade-width);
  pointer-events: none;
  z-index: 2;
}

.logo-fade-left {
  left: 0;
  background: linear-gradient(to right, #fff 0%, rgba(255,255,255,0.0) 40%);
}

.logo-fade-right {
  right: 0;
  background: linear-gradient(to left, #fff 0%, rgba(255,255,255,0.0) 40%);
}

/* If your site background is not white, replace #fff above with your container background color (e.g. #f7f6f3). */

/* marquee animation: translate by -50% (because set duplicated set) */

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Accessibility: reduce motion */

@media (prefers-reduced-motion: reduce) {
  .logo-track {
    animation: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .logo-track img {
    transition: none;
  }
}

/* Responsiveness */

@media (max-width: 992px) {
  :root {
    --logo-gap: 44px;
    --logo-height: 52px;
    --marquee-speed: 26s;
  }
}

@media (max-width: 992px) {
  .logo-fade {
    width: 16%;
  }
}

@media (max-width: 576px) {
  :root {
    --logo-gap: 30px;
    --logo-height: 44px;
    --marquee-speed: 22s;
  }
}

@media (max-width: 576px) {
  .logo-fade {
    width: 18%;
  }
}

/* Safety: ensure the track never collapses in constrained builder environments */

.logo-track {
  min-width: 200%;
}

/* ensures enough width for duplicated set */

/* Wrapper for fade edges and nicer look */

/* Fade edges – subtle Netflix effect */

/* Core layout */

.tb-reviews-carousel {
  display: flex;
  gap: 24px;
  overflow: hidden;
  scroll-behavior: smooth;
  will-change: transform;
}

.tb-review-card {
  min-width: 350px;
  max-width: 350px;
  background: #fff;
  padding: 24px;
  border: 1px solid #eee;
  border-radius: 14px;
  transition: transform .35s ease;
  box-shadow: 0 4px 14px rgba(0,0,0,0.06);
}

/* CENTER CARD POP */

/* Avatar */

.tb-review-avatar {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  border: 2px solid #28a745;
  object-fit: cover;
}

/* Name + Role */

.tb-review-name {
  font-size: 17px;
  font-weight: 600;
}

.tb-review-role {
  color: #6c757d;
  font-size: 14px;
}

/* Stars */

.tb-review-stars i {
  color: #ffc107;
  font-size: 17px;
}

/* Text */

.tb-review-text {
  font-size: 15px;
  color: #333;
  line-height: 1.55;
}

/* Navigation arrows */

.tb-reviews-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #ffffff;
  border: 1px solid #ccc;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 20px;
  color: #28a745;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: .25s ease;
  z-index: 20;
}

.tb-reviews-nav:hover {
  background: #28a745;
  color: #fff;
  border-color: #28a745;
}

.tb-reviews-prev {
  left: -10px;
}

.tb-reviews-next {
  right: -10px;
}

/* Mobile */

@media (max-width: 768px) {
  .tb-review-card {
    min-width: 80%;
    max-width: 80%;
  }
}

@media (max-width: 768px) {
  .tb-reviews-prev {
    left: 5px;
  }
}

@media (max-width: 768px) {
  .tb-reviews-next {
    right: 5px;
  }
}

