/* ==========================================================================
   Industries Slider Widget CSS
   ========================================================================== */

.industries-wrapper {
	position: relative;
	width: 100%;
	overflow: hidden;
	padding: 0 0 60px 0;
	background: transparent;
	display: flex;
	flex-direction: column;
	align-items: center;
	font-family: 'Inter', -apple-system, sans-serif;
}

.industries-heading-wrap {
	text-align: center;
	width: 100%;
}

.industries-heading {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 4px;
	text-transform: uppercase;
	color: #4e6ef2;
	margin: 0 0 24px 0;
}

/* ───────────────────────────────────────────
   Marquee CSS Mode
   ─────────────────────────────────────────── */

.industries-marquee-container {
	display: flex;
	width: 100%;
	overflow: hidden;
}

.industries-marquee-track {
	display: flex;
	align-items: center;
	white-space: nowrap;
	animation: industriesMarquee 40s linear infinite;
	gap: var(--marquee-gap, 16px);
	padding-right: var(--marquee-gap, 16px);
}

.industries-marquee-container.dir-right .industries-marquee-track {
	animation-direction: reverse;
}

.industries-marquee-container.pause-on-hover:hover .industries-marquee-track {
	animation-play-state: paused;
}

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

/* ───────────────────────────────────────────
   Industry Card
   ─────────────────────────────────────────── */

.industry-card {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 24px;
	background-color: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255,255,255,0.08);
	border-radius: 100px;
	text-decoration: none;
	transition: all 0.3s ease;
	flex-shrink: 0;
}

a.industry-card {
	cursor: pointer;
}

.industry-card:hover {
	background-color: rgba(255, 255, 255, 0.06);
	border-color: rgba(255,255,255,0.15);
	text-decoration: none;
}

.industry-card-inner {
	display: flex;
	align-items: center;
	gap: 10px;
}

.industry-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #ffffff;
	transition: all 0.3s ease;
}

.industry-icon i,
.industry-icon svg {
	font-size: 16px;
	width: 16px;
	height: 16px;
	fill: currentColor;
}

.industry-name {
	font-size: 14px;
	font-weight: 500;
	color: #ffffff;
	transition: color 0.3s ease;
	margin: 0;
}

/* ───────────────────────────────────────────
   Swiper Slider Mode
   ─────────────────────────────────────────── */

.industries-slider {
	width: 100%;
	overflow: hidden;
	position: relative;
}

.industries-slider .swiper-wrapper {
	display: flex;
	align-items: center;
}

.industries-slider .swiper-slide {
	display: flex;
	justify-content: center;
	padding-right: 16px; /* Space between configured via elementor padding */
}

/* ───────────────────────────────────────────
   Scroll Indicator
   ─────────────────────────────────────────── */

.industries-scroll-wrap {
	margin-top: 40px;
	display: flex;
	justify-content: center;
}

.industries-scroll-indicator {
	display: flex;
	align-items: center;
	justify-content: center;
	color: rgba(255, 255, 255, 0.45);
	animation: industriesScrollBounce 2.5s ease-in-out infinite;
	transition: all 0.25s ease;
}

.industries-scroll-indicator:hover {
	color: #ffffff;
	animation-play-state: paused;
}

@keyframes industriesScrollBounce {
	0%, 100% { transform: translateY(0); }
	50%      { transform: translateY(8px); }
}

/* ───────────────────────────────────────────
   Accessibility
   ─────────────────────────────────────────── */

@media (prefers-reduced-motion: reduce) {
	.industries-marquee-track {
		animation: none !important;
		overflow-x: auto;
	}
	.industries-scroll-indicator {
		animation: none !important;
	}
}
