/**
 * Hero
 */

.hero {
	position: relative;
	overflow: hidden;
	background-color: #175844;
	color: #ffffff;
	padding-top: 80px;
	padding-bottom: 0;
}

.has-hero-header .hero {
	padding-top: 156px;
}

.hero__map {
	position: absolute;
	inset: 0;
	z-index: 0;
	overflow: hidden;
	pointer-events: none;
}

.hero__map-image {
	position: absolute;
	left: 50%;
	top: 64%;
	width: 100%;
	max-width: none;
	height: auto;
	opacity: 0.5;
	transform: translate(-50%, -50%);
}

.hero__container {
	position: relative;
	z-index: 1;
	width: 100%;
}

.hero__content {
	display: flex;
	flex-direction: column;
	gap: 160px;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	padding-left: 16px;
	padding-right: 16px;
}

.hero__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	margin: 0 0 16px;
	background-color: #15654E;
}

.hero__eyebrow-marker {
	width: 10px;
	height: 10px;
	background-color: #9DE7C9;
	flex-shrink: 0;
}

.hero__eyebrow-text {
	font-family: var(--font-family-body);
	font-size: 14px;
	font-weight: 400;
	line-height: 1.4;
	color: #9DE7C9;
}

.hero__heading {
	margin: 0 0 16px;
	font-family: var(--font-family-display);
	font-size: 34px;
	font-weight: 400;
	line-height: 1.2;
	letter-spacing: -0.64px;
	color: var(--color-blue-50);
}

.hero__description {
	margin: 0 0 40px;
	font-family: var(--font-family-body);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.4;
	letter-spacing: 0px;
	color: var(--color-blue-50);
}

.hero__cta {
	margin: 0;
}

.hero__benefits {
	opacity: 0;
	transform: translateY(24px);
	transition:
		opacity 0.65s ease,
		transform 0.65s ease;
}

.hero__benefits.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.hero__benefits-grid {
	display: flex;
	flex-direction: column;
	gap: 16px;
	width: 100%;
}

.hero__benefit {
	flex: 1;
	padding: 5px 0;
	background-color: #10533f;
}

.hero__benefit-title {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	margin: 0 0 4px;
	font-family: var(--font-family-body);
	font-size: 16px;
	font-weight: 500;
	line-height: 1.4;
	color: #cfe6fa;
}

.hero__benefit-marker {
	width: 8px;
	height: 8px;
	margin-top: 6px;
	background-color: #82d3b2;
	flex-shrink: 0;
}

.hero__benefit-text {
	margin: 0;
	padding-left: 20px;
	font-family: var(--font-family-body);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.4;
	color: #cfe6fa;
}

.hero__logos {
	position: relative;
	z-index: 1;
	margin: 0;
	padding: 30px 0;
	background: linear-gradient(0deg, rgba(16, 83, 63, 0.82) 0%, rgba(23, 88, 68, 0.25) 100%);
	overflow: hidden;
}



.hero__marquee-viewport {
	position: relative;
	z-index: 1;
	padding-block: 8px;
	overflow: hidden;
}

.hero__marquee-track {
	display: flex;
	width: max-content;
	will-change: transform;
	animation: hero-marquee 35s linear infinite;
}

.hero__marquee-group {
	display: flex;
	align-items: center;
	gap: 64px;
	margin: 0;
	padding-right: 64px;
	list-style: none;
	flex-shrink: 0;
}

.hero__marquee-item {
	flex-shrink: 0;
	line-height: 0;
}

.logo-bluevin .hero__marquee-img{
	max-width: 140px;
}
.logo-drip .hero__marquee-img, .logo-paytm .hero__marquee-img, .logo-hero-fincop .hero__marquee-img{
	max-width: 100px;
}
.logo-bajaj-capital .hero__marquee-img{
	max-width:200px;
}

.hero__marquee-img {
	display: block;
	width: auto;
	max-height: 42px;
 	max-width: 140px;
	object-fit: contain;
	filter: brightness(0) invert(1);
}

/* Fibe wordmark sits low in its asset — nudge up for optical alignment */
.hero__marquee-item.logo-fibe img {
	transform: translateY(-11px);
}

@keyframes hero-marquee {
	from {
		transform: translate3d(0, 0, 0);
	}

	to {
		transform: translate3d(-50%, 0, 0);
	}
}

@media (min-width: 768px) {
	.hero__content {
		padding-left: 32px;
		padding-right: 32px;
	}

	.hero__benefits-grid {
		flex-direction: row;
		gap: 0;
	}

	.hero__heading {
		font-size: 48px;
	}
}

@media (min-width: 992px) {
	.hero__content {
		max-width: 874px;
		padding:0 0 130px 0;
	}

	.hero__heading {
		font-size: 60px;
	}
}

@media (max-width: 992px) {
	.hero__content {
		gap:var(--space-48);
		padding-bottom:115px;	
	}

	.hero__heading {
		font-size: 60px;
	}
	.hero__map-image{
		top:75%;
	}
	.hero__benefit-title-text,.hero__benefit-text{
		font-size:14px;
	}
	.hero__heading{
		font-size:32px;
	}
}

@media (max-width: 768px) {
	.has-hero-header .hero{
		padding-top: 128px;
	}
	.hero__content {
		gap:48px;
		padding-bottom:64px;
	}

	.hero__heading {
		font-size: 32px;
	}
	.hero__logos {
		background: linear-gradient(0deg, rgba(16, 83, 63, 0.3) 0%, rgba(23, 88, 68, 0.25) 100%);
	}
	.hero__map-image{
		top:72%;
		height:545px;
		object-fit:cover;
		opacity:0.7;
	}
	.hero__marquee-group{
		gap:44px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.hero__marquee-track {
		animation: none;
	}
	.hero__benefits {
		opacity: 1;
		transform: none;
		transition: none;
	}
}

/* ═══════════════════════════════════════════════
   MOUNTAIN BACKGROUND
   Runs on compositor thread — zero JS per frame
═══════════════════════════════════════════════ */

/* Clip container — sits inside hero__map which already has inset:0 overflow:hidden */
.hero__mountain-wrap {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 564px;            /* exact SVG height — flush to hero bottom */
	display: flex;
	align-items: flex-end;
	pointer-events: none;
	z-index: 0;
	opacity: 0;                   /* JS fades this in on load */
	will-change: opacity;
}

/* Track holds static SVG — anchored to bottom-left */
.hero__mountain-track {
	position: relative;
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: flex-end;
	width: max-content;
}

/* Each SVG image */
.hero__mountain-img {
	display: block;
	width: 2562px;
	height: 564px;
	max-width: none;
	flex-shrink: 0;
	opacity: 0.7;
	object-fit: fill;
	user-select: none;
	pointer-events: none;
}

/* Glow — simple, no mask, mix-blend-mode only */
.hero__mountain-glow {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 2562px;
	height: 564px;
	z-index: 2;
	pointer-events: none;
	opacity: 0;
	will-change: opacity;
	contain: paint;
	isolation: isolate;
	transform: translateZ( 0 );

	/* Radial gradient: the visible glow light */
	background: radial-gradient(
		circle 150px at var(--mgx, -9999px) var(--mgy, -9999px),
		rgba(255, 255, 255, .95)   0%,
		rgba(220, 255, 235, 0.95)  25%,
		rgba(157, 231, 201, 0.75)  50%,
		rgba(157, 231, 201, 0.35)  75%,
		transparent 85%
	);

	/* SVG mask — mask-image URL applied via JS from data-svg-url */
	-webkit-mask-size: 2562px 564px;
	-webkit-mask-position: 0 0;
	-webkit-mask-repeat: no-repeat;

	mask-size: 2562px 564px;
	mask-position: 0 0;
	mask-repeat: no-repeat;
}

/* ── Responsive ── */
@media (max-width: 768px) {
	.hero__mountain-wrap {
		height: 420px;
	}
	.hero__mountain-img {
		width: 1800px;
		height: auto;
		opacity: 0.18;
	}
	.hero__mountain-glow {
		display: none;
	}
}