.services-marquee-section {
  width: 100%;
  overflow: hidden;
}

.services-marquee {
  width: 100%;
  overflow: hidden;
  background: var(--tj-color-theme-bg);
  padding: 45px 0;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeMove 28s linear infinite;
  will-change: transform;
}

.marquee-content {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 32px;
  padding-right: 32px;
}

.marquee-content a {
  flex: 0 0 auto;
  white-space: nowrap;
  color: #ffffff;
  text-decoration: none;
  font-size: 36px;
  font-weight: 500;
  line-height: 1.2;
  position: relative;
  transition: color 0.3s ease;
}

.marquee-content a:hover {
  color: #F28C38;
}

.marquee-content a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: #F28C38;
  transition: width 0.3s ease;
}

.marquee-content a:hover::after {
  width: 100%;
}

@keyframes marqueeMove {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

/* tablet */
@media (max-width: 1025px) {
  .services-marquee {
    padding: 40px 0;
  }

  .marquee-track {
    animation-duration: 24s;
  }

  .marquee-content {
    gap: 24px;
    padding-right: 24px;
  }

  .marquee-content a {
    font-size: 35px;
  }
}

/* mobile */
@media (max-width: 575px) {
  .services-marquee {
    padding: 35px 0;
  }

  .marquee-track {
    animation-duration: 20s;
  }

  .marquee-content {
    gap: 18px;
    padding-right: 12px;
  }

  .marquee-content a {
    font-size: 32px;
  }
}

/* optional: pause on hover */
.services-marquee:hover .marquee-track {
  animation-play-state: paused;
}

.pricing-btn:hover .text-btn .btn-text span{
  color: white;
}

.pricing-btn:hover .text-btn .btn-text .special{
  color: orange;
}

/*responsive*/

@media (max-width: 1024px) {
  h1 { font-size: 48px !important; }
  h2 { font-size: 36px !important; }
  h3 { font-size: 28px !important; }
  h4 { font-size: 22px !important; }
  h5 { font-size: 18px !important; }
  p  { font-size: 15px !important; }
}

@media (max-width: 768px) {
  h1 { font-size: 40px !important; }
  h2 { font-size: 30px !important; }
  h3 { font-size: 24px !important; }
  h4 { font-size: 20px !important; }
  h5 { font-size: 17px !important; }
  p  { font-size: 15px !important; }

  .header-button{
    display: none !important;
  }
}

@media (max-width: 426px) {
  h1 { font-size: 32px !important; }
  h2 { font-size: 26px !important; }
  h3 { font-size: 22px !important; }
  h4 { font-size: 18px !important; }
  h5 { font-size: 16px !important; }
  p  { font-size: 14px !important; }
  .tj-faq .accordion-item .faq-title{
    font-size: 18px !important;
  }
}

@media (max-width: 376px) {
  h1 { font-size: 28px !important; }
  h2 { font-size: 24px !important; }
  h3 { font-size: 20px !important; }
  h4 { font-size: 17px !important; }
  h5 { font-size: 15px !important; }
  p  { font-size: 14px !important; }
  .tj-faq .accordion-item .faq-title{
    font-size: 18px !important;
  }
}

@media (max-width: 320px) {
  h1 { font-size: 24px !important; }
  h2 { font-size: 22px !important; }
  h3 { font-size: 18px !important; }
  h4 { font-size: 16px !important; }
  h5 { font-size: 14px !important; }
  p  { font-size: 13px !important; }
  .tj-faq .accordion-item .faq-title{
    font-size: 16px !important;
  }
}

.tj-primary-btn:hover .btn-text{
  color: white !important;
}