.rekhi-hero-slider {
	--rekhi-hero-primary: var(--primary-color, var(--rekhi-primary-color, #FF6600));
	--rekhi-hero-secondary: var(--secondary-color, var(--rekhi-hero-primary));
	--rekhi-hero-surface: var(--bg-dark-surface, #101010);
	--rekhi-hero-text: var(--text-light-main, #f7f4ef);
	position: relative;
	min-height: min(790px, calc(100vh - 70px));
	overflow: hidden;
	color: var(--rekhi-hero-text);
	background: var(--rekhi-hero-surface);
}

.rekhi-hero-track,
.rekhi-hero-slide {
	position: absolute;
	inset: 0;
}

.rekhi-hero-slide {
	display: flex;
	align-items: center;
	opacity: 0;
	visibility: hidden;
	transform: scale(1.012);
	transition: opacity .55s ease, transform .75s ease, visibility .55s ease;
}

.rekhi-hero-slide.is-active {
	opacity: 1;
	visibility: visible;
	transform: scale(1);
}

.rekhi-hero-slide img,
.rekhi-hero-slide video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.rekhi-hero-overlay {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 78% 20%, color-mix(in srgb, var(--rekhi-hero-primary) 20%, transparent), transparent 30%),
		linear-gradient(90deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.52) 48%, rgba(0, 0, 0, 0.22));
}

.rekhi-hero-content {
	position: relative;
	z-index: 2;
	width: min(780px, calc(100% - 36px));
	margin-left: max(18px, calc((100vw - 1180px) / 2));
	padding: clamp(28px, 4vw, 44px);
	border: 1px solid rgba(255, 255, 255, 0.10);
	border-radius: 22px;
	background: rgba(18, 18, 18, 0.50);
	box-shadow: 0 28px 90px rgba(0, 0, 0, 0.36);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
}

.rekhi-hero-content p {
	margin: 0 0 12px;
	color: var(--rekhi-hero-primary);
	font-size: 13px;
	font-weight: 900;
	letter-spacing: .14em;
	text-transform: uppercase;
}

.rekhi-hero-content h1 {
	margin: 0 0 16px;
	color: var(--rekhi-hero-text);
	font-size: clamp(42px, 7vw, 86px);
	line-height: .98;
	letter-spacing: 0;
}

.rekhi-hero-content > span {
	display: block;
	max-width: 680px;
	color: color-mix(in srgb, var(--rekhi-hero-text) 76%, transparent);
	font-size: clamp(17px, 2vw, 22px);
	line-height: 1.55;
}

.rekhi-hero-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 9px;
	margin-top: 22px;
}

.rekhi-hero-tags em {
	padding: 8px 11px;
	border: 1px solid color-mix(in srgb, var(--rekhi-hero-primary) 30%, transparent);
	border-radius: 999px;
	color: var(--rekhi-hero-text);
	background: color-mix(in srgb, var(--rekhi-hero-primary) 13%, transparent);
	font-size: 12px;
	font-style: normal;
	font-weight: 850;
}

.rekhi-hero-content a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 50px;
	margin-top: 28px;
	padding: 0 22px;
	border-radius: 999px;
	color: var(--rekhi-hero-surface);
	background: linear-gradient(135deg, var(--rekhi-hero-primary), var(--rekhi-hero-secondary));
	font-weight: 900;
	text-decoration: none;
	box-shadow: 0 18px 46px color-mix(in srgb, var(--rekhi-hero-primary) 36%, transparent);
	transition: transform .2s ease, box-shadow .2s ease;
}

.rekhi-hero-content a:hover {
	transform: translateY(-2px);
	box-shadow: 0 22px 58px color-mix(in srgb, var(--rekhi-hero-primary) 48%, transparent);
}

.rekhi-hero-count {
	position: absolute;
	right: 24px;
	bottom: 22px;
	color: var(--rekhi-hero-primary);
	font-size: 13px;
	font-weight: 900;
	letter-spacing: .12em;
}

.rekhi-hero-dots {
	position: absolute;
	z-index: 3;
	right: max(18px, calc((100vw - 1180px) / 2));
	bottom: 34px;
	display: flex;
	gap: 9px;
}

.rekhi-hero-dots button {
	width: 12px;
	height: 12px;
	padding: 0;
	border: 1px solid var(--rekhi-hero-primary);
	border-radius: 999px;
	background: transparent;
	cursor: pointer;
	transition: width .2s ease, background .2s ease;
}

.rekhi-hero-dots button.is-active {
	width: 34px;
	background: var(--rekhi-hero-primary);
}

.rekhi-hero-arrows {
	position: absolute;
	z-index: 3;
	right: max(18px, calc((100vw - 1180px) / 2));
	top: 50%;
	display: grid;
	gap: 10px;
	transform: translateY(-50%);
}

.rekhi-hero-arrows button {
	display: grid;
	width: 46px;
	height: 46px;
	place-items: center;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 999px;
	color: var(--rekhi-hero-text);
	background: rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	cursor: pointer;
	font-size: 30px;
	line-height: 1;
	transition: transform .2s ease, background .2s ease, color .2s ease;
}

.rekhi-hero-arrows button:hover {
	transform: scale(1.06);
	color: var(--rekhi-hero-surface);
	background: var(--rekhi-hero-primary);
}

@media (max-width: 760px) {
	.rekhi-hero-slider {
		min-height: 700px;
	}

	.rekhi-hero-content {
		margin-inline: 14px;
		width: auto;
	}

	.rekhi-hero-content h1 {
		font-size: clamp(38px, 12vw, 62px);
	}

	.rekhi-hero-dots {
		left: 18px;
		right: auto;
	}

	.rekhi-hero-arrows {
		right: 18px;
		top: auto;
		bottom: 74px;
		grid-auto-flow: column;
		transform: none;
	}
}
