.shadow-title {
  box-shadow: 0 4px 25px -5px rgba(59, 130, 246, 0.25);
  border: 1px solid rgba(219, 234, 254, 1);
}

.shadow-btn {
  box-shadow: 0 4px 15px -3px rgba(59, 130, 246, 0.2);
  border: 1px solid rgba(219, 234, 254, 1);
  transition: all 0.3s ease;
}
.shadow-btn:hover {
  background-color: rgba(239, 246, 255, 0.5);
}

/* Pill Styling */
.industry-pill {
  padding: 0.75rem 1.5rem;
  border-radius: 50rem;
  font-size: 15px;
  font-weight: 500;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.industry-pill.active {
  background-color: #141d90;
  color: #ffffff;
  border: 1px solid var(--navy-blue);
}

.industry-pill.inactive {
  background-color: #ffffff;
  color: var(--navy-blue);
  border: 1px solid rgba(191, 219, 254, 0.6);
  box-shadow: 0 4px 6px -1px rgba(219, 234, 254, 0.5);
}


.marquee-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.fade-left, .fade-right {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 10;
  pointer-events: none;
  display:none;
}
.fade-left {
  left: 0;
  background: linear-gradient(to right, #ffffff, transparent);
}
.fade-right {
  right: 0;
  background: linear-gradient(to left, #ffffff, transparent);
}
@media (min-width: 768px) {
  .fade-left, .fade-right { width: 192px; }
}

.marquee-wrapper {
  overflow: hidden;
  width: 100%;
  padding: 0.25rem 0;
}

.marquee-track {
  display: flex;
  width: max-content;
}


@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes scroll-right {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.animate-left { animation: scroll-left 45s linear infinite; }
.animate-right { animation: scroll-right 45s linear infinite; }


.marquee-wrapper:hover .marquee-track {
  animation-play-state: paused;
}



.industry-pill.inactive {
  position: relative;
  background-color: #ffffff;
  color: #0d2085; 
  padding: 10px 24px;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 6px -1px rgba(219, 234, 254, 0.5);
  border: 1.5px solid transparent;
  background-clip: padding-box; 
}

.industry-pill.inactive::before {
  content: "";
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  z-index: -1;
  margin: -1.5px;
  border-radius: 9999px;
  background: linear-gradient(to right, #1d4ed8, #0b1d75); 
}