.logo-ticker-section {
  padding: 36px 0;
  /* border-top: 1px solid #efefef;
  border-bottom: 1px solid #efefef; */
  overflow: hidden;
  margin-top: -10px;
}

.ticker-inner-wrap {
  display: flex;
  align-items: center;
  gap: 0;
}

/* Left text — fixed width, doesn't scroll */
.ticker-left-text {
  flex-shrink: 0;
  width: 240px;
  min-width: 340px;
  padding-left: 30px;  /* adjust to match your page's left margin */
  padding-right: 24px;
  border-right: 1px solid #e8e8e8;
  margin-left: 20px;
}

.ticker-left-text p {
  font-size: 16px;
  line-height: 1.55;
  color: #000;
  margin: 0;
}

.ticker-left-text p strong {
  font-size: 16px;
  line-height: 1.55;
  background:linear-gradient(135deg,#2E5E7A,#4782A2,#6FBAD9);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;
  margin: 0;
}

.ticker-left-text strong {
  font-weight: 700;
  color: #111;
}

/* Right scrolling logos */
.ticker-right {
  flex: 1;
  overflow: hidden;
  position: relative;
}

/* Fade right edge only */
.ticker-right::after {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 80px;
  background: linear-gradient(to left, #fff 0%, transparent 100%);
  z-index: 2;
  pointer-events: none;
}

.ticker-outer {
  overflow: hidden;
  width: 100%;
}

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

.ticker-track:hover {
  animation-play-state: paused;
}

.ticker-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 32px;
  height: 52px;
  flex-shrink: 0;
}

.ticker-logo img {
  height: 52px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  /* filter: grayscale(100%); */
  /* transition: filter 0.25s ease, opacity 0.25s ease; */
}

/* .ticker-logo img:hover {
  filter: grayscale(0%);
  opacity: 1;
} */

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

/* Mobile: stack vertically */
@media (max-width: 768px) {
  .ticker-inner-wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .ticker-left-text {
    width: auto;
    min-width: unset;
    border-right: none;
    border-bottom: 1px solid #e8e8e8;
    padding-bottom: 16px;
    padding-left: 20px;
  }
  .ticker-right {
    width: 100%;
  }
}