.student-carousel-section {
  background-size: cover;
  padding: 20px 0px;
  position: relative;
  color: #fff;
  background-color: #003057;
}
.text-gradient {
  background: linear-gradient(to right, #3ca9f0, #004eff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.slider-row {
  overflow: hidden;
  white-space: nowrap; 
  padding: 15px 0;
}

.slider-track {
  display: inline-flex;
  gap: 25px;
  animation: slide-left 45s linear infinite;
}

.slider-track.backward {
  animation: slide-right 50s linear infinite;
}

.student-card {
flex: 0 0 auto;
width: 100px;
text-align: center;
color: #fff;
background-color: #fff;
padding: 10px;
border-radius: 15px;
}

.student-card img {
  width: auto;
  height: 90px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.1);
  margin-bottom: 8px;
}

.student-card span {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: #b0c7ff;
}

@keyframes slide-left {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes slide-right {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0%);
  }
}

@media (max-width: 768px) {
  .student-card {
    width: 100px;
  }
  .student-card img {
    width: 70px;
    height: 80px;
  }
}


.g-4 {
    --bs-gutter-x: 0;
}

.p-graph{
    color: #003057;
}

    .platform-wrapper {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.platform-item {
  padding: 1rem 0.5rem;
  transition: transform 0.3s ease;
  position: relative;
}

.platform-item:hover {
  transform: translateY(-5px);
}

.icon-wrap {
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 0.5rem;
}

.icon-wrap svg{
  max-height: 60px;
  max-width: 45px;
  object-fit: contain;
}

.name_tag {
  font-size: 13px;
  font-weight: 500;
  color: #333;
  margin: 0;
}

.icon-wrap {
  position: relative;
}

.count-badge {
  font-size: 11px;
  background-color: #e6f4ea;
  color: #28a745;
  padding: 2px 8px;
  border-radius: 999px;
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
}

.link_hover:hover .name_tag {
  color: #ea351c;
}