/* ============================================
   HERO SECTION - PREMIUM DESIGN WITH BG IMAGE
   ============================================ */

.hero-premium {
  min-height: 100vh;
  padding: 60px 0px;
  background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #0f1429 100%);
}

/* Animated Background Pattern */
.hero-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(30deg, rgba(133, 194, 38, 0.05) 12%, transparent 12.5%, transparent 87%, rgba(133, 194, 38, 0.05) 87.5%, rgba(133, 194, 38, 0.05)),
    linear-gradient(150deg, rgba(133, 194, 38, 0.05) 12%, transparent 12.5%, transparent 87%, rgba(133, 194, 38, 0.05) 87.5%, rgba(133, 194, 38, 0.05)),
    linear-gradient(30deg, rgba(133, 194, 38, 0.05) 12%, transparent 12.5%, transparent 87%, rgba(133, 194, 38, 0.05) 87.5%, rgba(133, 194, 38, 0.05)),
    linear-gradient(150deg, rgba(133, 194, 38, 0.05) 12%, transparent 12.5%, transparent 87%, rgba(133, 194, 38, 0.05) 87.5%, rgba(133, 194, 38, 0.05));
  background-size: 80px 140px;
  background-position: 0 0, 0 0, 40px 70px, 40px 70px;
  animation: patternMove 20s linear infinite;
  z-index: 0;
}

@keyframes patternMove {
  0% {
    background-position: 0 0, 0 0, 40px 70px, 40px 70px;
  }
  100% {
    background-position: 80px 140px, 80px 140px, 120px 210px, 120px 210px;
  }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 50%, rgba(133, 194, 38, 0.08) 0%, transparent 50%),
              radial-gradient(circle at 70% 80%, rgba(1, 146, 64, 0.06) 0%, transparent 50%);
  z-index: 1;
}

/* Animated Particles */
.hero-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

.particle {
  position: absolute;
  width: 8px;
  height: 8px;
  background: linear-gradient(135deg, var(--themeColor), var(--secondaryColor));
  border-radius: 50%;
  opacity: 0.6;
  box-shadow: 0 0 20px rgba(133, 194, 38, 0.5);
}

.particle-1 {
  top: 20%;
  left: 10%;
  animation: particleFloat 8s ease-in-out infinite;
}

.particle-2 {
  top: 60%;
  left: 80%;
  animation: particleFloat 10s ease-in-out infinite 1s;
}

.particle-3 {
  top: 40%;
  left: 20%;
  animation: particleFloat 12s ease-in-out infinite 2s;
}

.particle-4 {
  top: 70%;
  left: 60%;
  animation: particleFloat 9s ease-in-out infinite 1.5s;
}

.particle-5 {
  top: 30%;
  left: 90%;
  animation: particleFloat 11s ease-in-out infinite 0.5s;
}

.particle-6 {
  top: 80%;
  left: 30%;
  animation: particleFloat 13s ease-in-out infinite 2.5s;
}

@keyframes particleFloat {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.6;
  }
  25% {
    transform: translate(30px, -30px) scale(1.2);
    opacity: 0.8;
  }
  50% {
    transform: translate(-20px, -60px) scale(0.8);
    opacity: 0.4;
  }
  75% {
    transform: translate(40px, -40px) scale(1.1);
    opacity: 0.7;
  }
}

.min-vh-90 {
  min-height: 90vh;
}

/* Hero Content */
.hero-content-wrapper {
  position: relative;
  z-index: 2;
  animation: heroSlideInLeft 1s ease-out;
}

@keyframes heroSlideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Trust Badge */
.hero-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, rgba(133, 194, 38, 0.15), rgba(1, 146, 64, 0.15));
  border: 1px solid rgba(133, 194, 38, 0.35);
  border-radius: 50px;
  padding: 8px 12px;
  backdrop-filter: blur(15px);
  box-shadow: 0 8px 25px rgba(133, 194, 38, 0.25);
  animation: badgeGlow 3s ease-in-out infinite;
}

@keyframes badgeGlow {
  0%, 100% {
    box-shadow: 0 8px 25px rgba(133, 194, 38, 0.25);
  }
  50% {
    box-shadow: 0 10px 35px rgba(133, 194, 38, 0.4);
  }
}

.badge-icon {
  width: clamp(2rem, 1.875rem + 0.5vw, 2.5rem);
  height: clamp(2rem, 1.875rem + 0.5vw, 2.5rem);
  background: linear-gradient(135deg, var(--themeColor), var(--secondaryColor));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(133, 194, 38, 0.4);
  animation: iconRotate 4s linear infinite;
}

@keyframes iconRotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.badge-icon svg {
  stroke: var(--whiteColor);
  stroke-width: 2.5;
}

.badge-text {
  color: var(--whiteColor);
  font-size: clamp(0.8125rem, 0.75rem + 0.25vw, 0.9375rem);
  font-weight: 600;
  letter-spacing: 0.3px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

/* Main Heading */
.hero-main-heading {
  font-size: 46px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 0;
  text-shadow: 0 4px 25px rgba(0, 0, 0, 0.5);
}

.heading-line {
  display: block;
  color: var(--whiteColor);
  animation: textFadeIn 1s ease-out;
}

.heading-highlight {
  display: block;
  background: linear-gradient(135deg, var(--themeColor) 0%, var(--secondaryColor) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 200%;
  animation: gradientShift 4s ease infinite, textFadeIn 1s ease-out 0.2s both;
  position: relative;
  padding-bottom: clamp(0.75rem, 0.625rem + 0.5vw, 1rem);
}

.heading-highlight::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: clamp(5rem, 4rem + 3vw, 8rem);
  height: 5px;
  background: linear-gradient(90deg, var(--themeColor), var(--secondaryColor));
  border-radius: 3px;
  box-shadow: 0 3px 15px rgba(133, 194, 38, 0.6);
}

@keyframes textFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes gradientShift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

/* Description */
.hero-desc {
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.8;
  max-width: 580px;
  animation: textFadeIn 1s ease-out 0.3s both;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

/* CTA Buttons */
.hero-cta-group {
  animation: textFadeIn 1s ease-out 0.4s both;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, var(--themeColor) 0%, var(--secondaryColor) 100%);
  color: var(--whiteColor);
  padding: clamp(0.875rem, 0.75rem + 0.5vw, 1.125rem) clamp(1.75rem, 1.5rem + 1vw, 2.5rem);
  border-radius: clamp(0.75rem, 0.625rem + 0.5vw, 1rem);
  font-size: clamp(0.9375rem, 0.875rem + 0.25vw, 1.0625rem);
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(133, 194, 38, 0.4);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.btn-hero-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.btn-hero-primary:hover::before {
  left: 100%;
}

.btn-hero-primary:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 15px 40px rgba(133, 194, 38, 0.6);
  color: var(--whiteColor);
}

.btn-hero-primary:active {
  transform: translateY(-2px) scale(0.98);
}

.btn-hero-primary .btn-icon {
  transition: transform 0.3s ease;
}

.btn-hero-primary:hover .btn-icon {
  transform: translateX(5px);
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  background: rgba(255, 255, 255, 0.08);
  color: var(--whiteColor);
  padding: 12px 30px;
  border-radius: clamp(0.75rem, 0.625rem + 0.5vw, 1rem);
  font-size: clamp(0.9375rem, 0.875rem + 0.25vw, 1.0625rem);
  font-weight: 600;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(133, 194, 38, 0.5);
  color: var(--whiteColor);
  transform: translateY(-2px);
}

.btn-play-icon {
  width: clamp(1.75rem, 1.625rem + 0.5vw, 2rem);
  height: clamp(1.75rem, 1.625rem + 0.5vw, 2rem);
  background: linear-gradient(135deg, var(--themeColor), var(--secondaryColor));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.btn-play-icon::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: inherit;
  animation: playPulse 2s ease-out infinite;
}

@keyframes playPulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

.btn-play-icon svg {
  position: relative;
  z-index: 1;
  fill: var(--whiteColor);
}

/* Features List */
.hero-features-list {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 0.875rem + 0.5vw, 1.5rem);
  animation: textFadeIn 1s ease-out 0.5s both;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  transition: transform 0.3s ease;
}

.feature-item:hover {
  transform: translateX(5px);
}

.feature-icon {
  width: clamp(1.5rem, 1.375rem + 0.5vw, 1.875rem);
  height: clamp(1.5rem, 1.375rem + 0.5vw, 1.875rem);
  background: rgba(133, 194, 38, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
  background: linear-gradient(135deg, var(--themeColor), var(--secondaryColor));
  transform: scale(1.1);
}

.feature-icon svg {
  stroke: var(--themeColor);
  transition: stroke 0.3s ease;
}

.feature-item:hover .feature-icon svg {
  stroke: var(--whiteColor);
}

.feature-text {
  color: rgba(255, 255, 255, 0.85);
  font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1rem);
  font-weight: 500;
}

/* Contact Numbers Below Buttons */
.hero-contact-numbers {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(2rem, 1.75rem + 1vw, 3rem);
  margin-top: clamp(1.5rem, 1.25rem + 1vw, 2rem);
  animation: textFadeIn 1s ease-out 0.5s both;
}

.hero-contact-link {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 0.625rem + 0.5vw, 1rem);
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-link-icon {
  width: clamp(1rem, 1.875rem + 0.5vw, 2.25rem);
  height: clamp(1rem, 1.875rem + 0.5vw, 2.25rem);
  background: transparent;
  border: 2px solid var(--themeColor);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
  overflow: visible;
}

.hero-contact-link:hover .contact-link-icon {
  border-color: var(--secondaryColor);
}

.contact-link-icon svg {
  stroke: var(--themeColor);
  stroke-width: 2;
  width: clamp(1rem, 0.875rem + 0.5vw, 1.125rem);
  height: clamp(1rem, 0.875rem + 0.5vw, 1.125rem);
  transition: stroke 0.3s ease;
}

.hero-contact-link:hover .contact-link-icon svg {
  stroke: var(--secondaryColor);
}

.contact-link-icon img {
  filter: brightness(0) saturate(100%) invert(73%) sepia(28%) saturate(1234%) hue-rotate(33deg) brightness(95%) contrast(85%);
  width: clamp(1rem, 0.875rem + 0.5vw, 1.125rem);
  height: clamp(1rem, 0.875rem + 0.5vw, 1.125rem);
  transition: filter 0.3s ease;
}

.hero-contact-link:hover .contact-link-icon img {
  filter: brightness(0) saturate(100%) invert(60%) sepia(50%) saturate(2000%) hue-rotate(50deg) brightness(90%) contrast(90%);
}

.contact-link-text {
  color: rgba(255, 255, 255, 0.95);
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
}

.hero-contact-link:hover .contact-link-text {
  color: var(--themeColor);
}


/* Hero Image Section */
.hero-image-section {
  position: relative;
  z-index: 2;
  animation: heroSlideInRight 1s ease-out 0.3s both;
}

@keyframes heroSlideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Decorative Circles */
.hero-deco-circle {
  position: absolute;
  border-radius: 50%;
  z-index: 0;
}

.deco-1 {
  width: clamp(200px, 15vw + 100px, 300px);
  height: clamp(200px, 15vw + 100px, 300px);
  background: linear-gradient(135deg, rgba(133, 194, 38, 0.15), rgba(1, 146, 64, 0.15));
  top: -10%;
  right: -10%;
  filter: blur(60px);
  animation: decoFloat 8s ease-in-out infinite;
}

.deco-2 {
  width: clamp(150px, 12vw + 80px, 250px);
  height: clamp(150px, 12vw + 80px, 250px);
  background: linear-gradient(135deg, rgba(1, 146, 64, 0.12), rgba(133, 194, 38, 0.12));
  bottom: -10%;
  left: -10%;
  filter: blur(50px);
  animation: decoFloat 10s ease-in-out infinite reverse;
}

@keyframes decoFloat {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(20px, -20px) scale(1.1);
  }
}

/* Main Image */
.hero-main-image {
  position: relative;
  border-radius: clamp(1.25rem, 1rem + 1vw, 2rem);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.image-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(133, 194, 38, 0.2) 0%, rgba(1, 146, 64, 0.2) 100%);
  z-index: 1;
  mix-blend-mode: overlay;
}

.hero-main-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}

.hero-main-image:hover img {
  transform: scale(1.05);
}

/* Floating Stats */
.floating-stat {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: clamp(0.875rem, 0.75rem + 0.5vw, 1.25rem);
  padding: clamp(0.875rem, 0.75rem + 0.5vw, 1.25rem);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 0.625rem + 0.5vw, 1rem);
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.4s ease;
}

.floating-stat:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.25);
}

.stat-1 {
  top: 10%;
  left: -8%;
  animation: statFloat 4s ease-in-out infinite;
}

.stat-2 {
  top: 50%;
  right: -8%;
  animation: statFloat 5s ease-in-out infinite 0.5s;
}

.stat-3 {
  bottom: -10%;
  left: 5%;
  animation: statFloat 4.5s ease-in-out infinite 1s;
}

@keyframes statFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

.stat-icon {
  width: clamp(2.5rem, 2.25rem + 0.75vw, 3rem);
  height: clamp(2.5rem, 2.25rem + 0.75vw, 3rem);
  background: linear-gradient(135deg, rgba(133, 194, 38, 0.12), rgba(1, 146, 64, 0.12));
  border-radius: clamp(0.625rem, 0.5rem + 0.4vw, 0.875rem);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.floating-stat:hover .stat-icon {
  background: linear-gradient(135deg, var(--themeColor), var(--secondaryColor));
  transform: scale(1.1) rotate(5deg);
}

.stat-icon svg {
  stroke: var(--themeColor);
  transition: stroke 0.3s ease;
}

.floating-stat:hover .stat-icon svg {
  stroke: var(--whiteColor);
}

.stat-content {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.stat-number {
  font-size: clamp(1.25rem, 1.125rem + 0.5vw, 1.625rem);
  font-weight: 700;
  color: var(--primaryColor);
  line-height: 1.2;
  transition: color 0.3s ease;
}

.floating-stat:hover .stat-number {
  color: var(--themeColor);
}

.stat-label {
  font-size: clamp(0.75rem, 0.7rem + 0.2vw, 0.875rem);
  color: rgba(26, 30, 37, 0.7);
  font-weight: 500;
  line-height: 1.3;
}

/* Bottom Info Bar */
.hero-info-bar {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: clamp(1rem, 0.875rem + 0.5vw, 1.5rem);
  padding: clamp(1.25rem, 1rem + 1vw, 2rem);
  margin-top: clamp(3rem, 2.5rem + 2vw, 5rem);
  animation: textFadeIn 1s ease-out 0.6s both;
}

.info-item {
  display: flex;
  align-items: center;
  gap: clamp(0.875rem, 0.75rem + 0.5vw, 1.25rem);
  padding: clamp(0.75rem, 0.625rem + 0.5vw, 1rem);
  border-radius: clamp(0.625rem, 0.5rem + 0.4vw, 0.875rem);
  transition: all 0.3s ease;
}

.info-item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-3px);
}

.info-icon {
  width: clamp(2.75rem, 2.5rem + 0.75vw, 3.25rem);
  height: clamp(2.75rem, 2.5rem + 0.75vw, 3.25rem);
  background: rgba(133, 194, 38, 0.15);
  border-radius: clamp(0.625rem, 0.5rem + 0.4vw, 0.875rem);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.info-item:hover .info-icon {
  background: linear-gradient(135deg, var(--themeColor), var(--secondaryColor));
  transform: scale(1.1);
}

.info-icon svg {
  stroke: var(--themeColor);
  transition: stroke 0.3s ease;
}

.info-item:hover .info-icon svg {
  stroke: var(--whiteColor);
}

.info-icon img {
  filter: brightness(0) saturate(100%) invert(73%) sepia(28%) saturate(1234%) hue-rotate(33deg) brightness(95%) contrast(85%);
  transition: filter 0.3s ease;
}

.info-item:hover .info-icon img {
  filter: brightness(0) invert(1);
}

.info-content {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.info-label {
  font-size: clamp(0.75rem, 0.7rem + 0.2vw, 0.875rem);
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
  line-height: 1.3;
}

.info-value {
  font-size: clamp(0.9375rem, 0.875rem + 0.25vw, 1.0625rem);
  color: var(--whiteColor);
  font-weight: 600;
  line-height: 1.3;
  text-decoration: none;
  transition: color 0.3s ease;
}

.info-item:hover .info-value {
  color: var(--themeColor);
}

/* Contact Numbers Below Image */
.hero-contact-numbers {
  display: flex;
  gap: clamp(1rem, 0.875rem + 0.5vw, 1.5rem);
  flex-wrap: wrap;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .hero-premium {
    min-height: auto;
    padding: clamp(5rem, 4rem + 3vw, 7rem) 0 clamp(3rem, 2.5rem + 2vw, 4rem);
  }

  .stat-1 {
    left: 0;
  }

  .stat-2 {
    right: 0;
  }

  .stat-3 {
    left: 10%;
  }
}

@media (max-width: 767px) {
  .hero-premium {
    padding: clamp(4rem, 3rem + 3vw, 6rem) 0 clamp(2.5rem, 2rem + 2vw, 3.5rem);
  }

  .hero-main-heading {
    font-size: clamp(2rem, 1.5rem + 2vw, 3rem);
  }

  .btn-hero-primary,
  .btn-hero-secondary {
    width: 100%;
    justify-content: center;
  }

  .hero-features-list {
    flex-direction: column;
    gap: 0.875rem;
  }

  .floating-stat {
    position: static !important;
    margin-bottom: 1rem;
    animation: none;
  }

  .stat-1,
  .stat-2,
  .stat-3 {
    position: relative !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
  }
}

@media (max-width: 575px) {
  .hero-trust-badge {
    font-size: 0.75rem;
  }

  .particle {
    width: 6px;
    height: 6px;
  }
}

/* ============================================
   SLIDING FEATURES BAR
   ============================================ */

.sliding-features-bar {
  position: relative;
  width: 100%;
  background: linear-gradient(135deg, #1a1f3a 0%, #0f1429 100%);
  padding: clamp(1.25rem, 1rem + 1vw, 1.75rem) 0;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.sliding-features-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    rgba(133, 194, 38, 0.05) 0%, 
    transparent 20%, 
    transparent 80%, 
    rgba(133, 194, 38, 0.05) 100%
  );
  pointer-events: none;
}

.sliding-track {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: clamp(0.5rem, 0.375rem + 0.5vw, 0.75rem) 0;
}

.sliding-content {
  display: flex;
  align-items: center;
  gap: clamp(3rem, 2.5rem + 2vw, 5rem);
  animation: slideInfinite 30s linear infinite;
  width: max-content;
}

@keyframes slideInfinite {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.sliding-content:hover {
  animation-play-state: paused;
}

.sliding-item {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 0.625rem + 0.5vw, 1rem);
  white-space: nowrap;
  transition: all 0.3s ease;
}

.sliding-item:hover {
  transform: none;
}

.sliding-icon {
  width: clamp(2.25rem, 2rem + 0.75vw, 2.75rem);
  height: clamp(2.25rem, 2rem + 0.75vw, 2.75rem);
  background: linear-gradient(135deg, rgba(133, 194, 38, 0.15), rgba(1, 146, 64, 0.15));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
  border: 1px solid rgba(133, 194, 38, 0.25);
  overflow: visible;
}

.sliding-item:hover .sliding-icon {
  background: linear-gradient(135deg, var(--themeColor), var(--secondaryColor));
  border-color: var(--themeColor);
  transform: none;
}

.sliding-icon svg {
  stroke: var(--themeColor);
  transition: stroke 0.3s ease;
}

.sliding-item:hover .sliding-icon svg {
  stroke: var(--whiteColor);
}

.sliding-text {
  color: rgba(255, 255, 255, 0.95);
  font-size: clamp(0.9375rem, 0.875rem + 0.25vw, 1.0625rem);
  font-weight: 600;
  letter-spacing: 0.3px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  transition: color 0.3s ease;
}

.sliding-item:hover .sliding-text {
  color: var(--whiteColor);
}

/* Responsive Adjustments */
@media (max-width: 767px) {
  .sliding-features-bar {
    padding: clamp(1rem, 0.875rem + 0.5vw, 1.5rem) 0;
  }

  .sliding-content {
    gap: clamp(2rem, 1.5rem + 2vw, 3rem);
    animation-duration: 25s;
  }

  .sliding-icon {
    width: clamp(2rem, 1.875rem + 0.5vw, 2.5rem);
    height: clamp(2rem, 1.875rem + 0.5vw, 2.5rem);
  }

  .sliding-icon svg {
    width: 18px;
    height: 18px;
  }

  .sliding-text {
    font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1rem);
  }
}

@media (max-width: 575px) {
  .sliding-features-bar {
    padding: clamp(0.875rem, 0.75rem + 0.5vw, 1.25rem) 0;
  }

  .sliding-content {
    gap: clamp(1.5rem, 1rem + 1.5vw, 2.5rem);
    animation-duration: 20s;
  }

  .sliding-icon {
    width: 2rem;
    height: 2rem;
  }

  .sliding-icon svg {
    width: 16px;
    height: 16px;
  }

  .sliding-text {
    font-size: 0.875rem;
  }
}
