/* Marquee Container */
.frost-container {
  width: 100%;
  overflow: hidden;
  background: #f8f9fa;
  padding: 15px 0;
  position: relative;
  display: flex;
  align-items: center;
}

/* Marquee Wrapper */
.frost-wrapper {
  display: flex;
  width: 200%;
  animation: frostScroll 10s linear infinite;
}

/* Individual Items */
.frost-item {
  flex: 0 0 auto;
  min-width: 200px;
  padding: 10px 20px;
  font-size: 16px;
  color: #333;
  background: #000;
  border: 1px solid #ddd;
  border-radius: 5px;
  text-align: center;
  margin: 0 10px;
  white-space: normal;
}

/* Pause animation on hover */
.frost-container:hover .frost-wrapper {
  animation-play-state: paused;
}

/* Scroll animation */
@keyframes frostScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Responsive Tweaks */
@media (max-width: 768px) {
  .frost-item {
    font-size: 14px;
    min-width: 150px;
    padding: 8px 15px;
  }
}

/* Optional: Fixed team section height */
.nini-team {
  height: 297px;
}

.outline-text {
  font-size: 48px;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1.2px #ffffff;
  text-transform: uppercase;
  display: inline-block;
}
