#tg-sponsors .slider-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  margin: 30px auto;
}
#tg-sponsors .slider-track {
  display: flex;
  width: max-content;
  animation: sponsorsScrollLeft 30s linear infinite;
}
@keyframes sponsorsScrollLeft {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
#tg-sponsors {
  background: linear-gradient(180deg, #f4faff 0%, #ffffff 100%);
}
#tg-sponsors .category-group {
  padding: 0 20px;
  border-right: 2px solid rgba(13, 27, 104, 0.15);
}
#tg-sponsors .category-name-container {
  width: 100%;
  text-align: left;
}
#tg-sponsors .category-name-container .category-name {
  width: auto !important;
  white-space: nowrap;
  color: #ffffff !important;
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  padding: 5px 16px;
  border-radius: 20px;
  background: linear-gradient(90deg, #0D1B68 0%, #00A8CC 100%);
}
#tg-sponsors .group-slides {
  display: flex;
  flex-direction: row;
}
#tg-sponsors .slide {
  min-width: 150px;
  padding: 14px;
  text-align: center;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 14px rgba(13, 27, 104, 0.08);
  margin: 8px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
#tg-sponsors .slide:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(13, 27, 104, 0.15);
}
#tg-sponsors .slide img {
  width: 100%;
  height: 75px;
  object-fit: contain;
}
@media (max-width: 768px) {
  #tg-sponsors .slide { min-width: 120px; }
}
@media (max-width: 480px) {
  #tg-sponsors .slider-track {
    align-items: flex-start;
  }

  #tg-sponsors .category-group {
    flex-direction: column;
    align-items: flex-start;
  }

  #tg-sponsors .group-slides {
    display: flex;
    flex-direction: column; /* Stack logos vertically */
    padding: 0;
    margin: 0;
    width: 100%;
  }

  #tg-sponsors .slide {
    width: 100%;
    padding: 3px 0;
    box-sizing: border-box;
    text-align: left;
    display: flex;
    align-items: center;
  }

  #tg-sponsors .slide img {
    width: 200px;      /* Fixed width */
    height: 120px;      /* Fixed height */
    object-fit: contain;
  }
}

