/* Araddhya hero slider — geometry from the Figma "Section / Hero" frame
   (1920×820, content column 820px starting 280px in, 158px from the top,
   trust badges pinned 64px off the bottom). */

.ar-hero {
	--ar-hero-height: 820px;
	--ar-hero-top: 158px;
	--ar-hero-gutter: 280px;

	position: relative;
	width: 100%;
	height: var(--ar-hero-height);
	overflow: hidden;
	background: var(--ar-navy, #0a2740);
}

/* Swiper's stylesheet sets `.swiper { position: relative }` and is enqueued
   after this file, so the slider needs the extra specificity to stay behind
   the copy instead of pushing it below the hero. */
.ar-hero .ar-hero__swiper.swiper {
	position: absolute;
	inset: 0;
	z-index: 1;
}

.ar-hero__swiper,
.ar-hero .swiper-wrapper,
.ar-hero__slide {
	height: 100%;
}

.ar-hero__slide {
	position: relative;
	overflow: hidden;
}

.ar-hero__media {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	transform: scale(1);
	will-change: transform;
}

/* Slow zoom on the active slide. */
.ar-hero--zoom .swiper-slide-active .ar-hero__media {
	animation: ar-hero-zoom 9s ease-out forwards;
}

@keyframes ar-hero-zoom {
	from { transform: scale(1); }
	to   { transform: scale(1.08); }
}

/* Figma: linear gradient, rgba(6,25,43,.94) → .66 → .28, left to right. */
.ar-hero__scrim {
	position: absolute;
	inset: 0;
	z-index: 2;
	background: linear-gradient(
		90deg,
		rgba(6, 25, 43, .94) 0%,
		rgba(6, 25, 43, .66) 50%,
		rgba(6, 25, 43, .28) 100%
	);
	pointer-events: none;
}

.ar-hero__inner {
	position: relative;
	z-index: 3;
	height: 100%;
	max-width: calc(1360px + var(--ar-hero-gutter) * 0);
	width: min(1360px, calc(100% - 40px));
	margin: 0 auto;
	padding-top: var(--ar-hero-top);
}

.ar-hero__content {
	max-width: 820px;
}

/* Eyebrow: 28px rule + 11px uppercase, 1.54px tracking. */
.ar-hero p.ar-hero__eyebrow {
	display: flex;
	align-items: center;
	gap: 14px;
	margin: 0;
	font-family: var(--ar-body, Inter), system-ui, sans-serif;
	font-size: 11px;
	font-weight: 600;
	line-height: 16px;
	letter-spacing: 1.54px;
	text-transform: uppercase;
	color: var(--ar-sky, #4ca2d3);
}

.ar-hero__rule {
	flex: none;
	width: 40px;
	height: 2px;
	background: var(--ar-sky, #4ca2d3);
}

/* Figma: Plus Jakarta Sans ExtraBold 78/82, −2.34px.
   Elementor's kit sets `h1 { color:#0D263E; font-size:64px }` with a
   higher-specificity selector, so match element + class here. */
.ar-hero h1.ar-hero__title {
	margin: 28px 0 0;
	font-family: var(--ar-display, "Plus Jakarta Sans"), system-ui, sans-serif;
	font-size: 78px;
	font-weight: 800;
	line-height: 82px;
	letter-spacing: -2.34px;
	color: #fff;
}

.ar-hero p.ar-hero__copy {
	margin: 24px 0 0;
	max-width: 600px;
	font-family: var(--ar-body, Inter), system-ui, sans-serif;
	font-size: 18px;
	line-height: 31px;
	color: rgba(255, 255, 255, .82);
}

.ar-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 40px;
}

.ar-hero a.ar-hero__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 8px;
	font-family: var(--ar-body, Inter), system-ui, sans-serif;
	font-size: 16px;
	font-weight: 600;
	line-height: 21px;
	text-decoration: none;
	transition: background-color .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}

.ar-hero a.ar-hero__btn--primary {
	padding: 18px 34px;
	background: var(--ar-primary, #0c5ca5);
	color: #fff;
	box-shadow: 0 8px 24px rgba(12, 61, 103, .4);
}

.ar-hero a.ar-hero__btn--primary:hover {
	background: var(--ar-primary-deep, #083e70);
	color: #fff;
	transform: translateY(-2px);
}

.ar-hero a.ar-hero__btn--outline {
	padding: 18px 30px;
	background: rgba(255, 255, 255, .08);
	border: 1px solid rgba(255, 255, 255, .42);
	color: #fff;
}

.ar-hero a.ar-hero__btn--outline:hover {
	background: #fff;
	border-color: #fff;
	color: var(--ar-navy, #0a2740);
	transform: translateY(-2px);
}

.ar-hero p.ar-hero__email {
	display: flex;
	align-items: center;
	gap: 7px;
	margin: 18px 0 0;
	font-family: var(--ar-body, Inter), system-ui, sans-serif;
	font-size: 13px;
	line-height: 19px;
	color: rgba(255, 255, 255, .6);
}

.ar-hero p.ar-hero__email a {
	color: rgba(255, 255, 255, .9);
	font-weight: 600;
	text-decoration: none;
}

.ar-hero p.ar-hero__email a:hover {
	text-decoration: underline;
}

/* Trust badges — static across slides, pinned to the bottom as in Figma. */
.ar-hero__badges {
	/* Centred with left/right + auto margins (not translateX) so the entrance
	   animation's transform cannot push the row off its left edge. */
	position: absolute;
	left: 0;
	right: 0;
	bottom: 64px;
	margin: 0 auto;
	z-index: 3;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	gap: 12px;
	width: min(1360px, calc(100% - 40px));
}

.ar-hero__badge {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	padding: 11px 18px 11px 16px;
	border-radius: 999px;
	background: rgba(255, 255, 255, .1);
	border: 1px solid rgba(255, 255, 255, .28);
	backdrop-filter: blur(2px);
	font-family: var(--ar-body, Inter), system-ui, sans-serif;
	font-size: 13px;
	font-weight: 600;
	line-height: 18px;
	color: #fff;
}

.ar-hero__badge-dot {
	position: relative;
	flex: none;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: var(--ar-sky, #4ca2d3);
}

.ar-hero__badge-dot::after {
	content: "";
	position: absolute;
	top: 5px;
	left: 6px;
	width: 5px;
	height: 8px;
	border: solid #0a2740;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
}

/* Dots + progress ---------------------------------------------------------- */

.ar-hero__dots {
	position: absolute;
	left: 50%;
	bottom: 26px;
	transform: translateX(-50%);
	z-index: 4;
	display: flex;
	align-items: center;
	gap: 8px;
}

.ar-hero__dots .swiper-pagination-bullet {
	width: 26px;
	height: 5px;
	border-radius: 999px;
	background: rgba(255, 255, 255, .38);
	opacity: 1;
	margin: 0;
	transition: width .3s ease, background-color .3s ease;
	cursor: pointer;
}

.ar-hero__dots .swiper-pagination-bullet-active {
	width: 46px;
	background: #fff;
}

.ar-hero__progress {
	position: absolute;
	inset: auto 0 0 0;
	z-index: 4;
	height: 3px;
	background: rgba(255, 255, 255, .16);
}

.ar-hero__progress span {
	display: block;
	height: 100%;
	width: 0;
	background: var(--ar-sky, #4ca2d3);
}

/* Entrance animation ------------------------------------------------------- */

/* The copy is visible by default. The animation only applies once the script
   adds `is-anim`, so a slow or blocked stylesheet can never leave the hero
   text invisible. */
.ar-hero.is-anim [data-ar-anim] {
	opacity: 0;
	transform: translateY(22px);
	animation: ar-hero-in .7s cubic-bezier(.22, .61, .36, 1) forwards;
}

.ar-hero.is-anim [data-ar-anim="1"] { animation-delay: .10s; }
.ar-hero.is-anim [data-ar-anim="2"] { animation-delay: .20s; }
.ar-hero.is-anim [data-ar-anim="3"] { animation-delay: .33s; }
.ar-hero.is-anim [data-ar-anim="4"] { animation-delay: .45s; }
.ar-hero.is-anim [data-ar-anim="5"] { animation-delay: .55s; }
.ar-hero.is-anim [data-ar-anim="6"] { animation-delay: .65s; }

@keyframes ar-hero-in {
	to { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
	.ar-hero.is-anim [data-ar-anim] { opacity: 1; transform: none; animation: none; }
	.ar-hero--zoom .swiper-slide-active .ar-hero__media { animation: none; }
}

/* Responsive --------------------------------------------------------------- */

@media (max-width: 1024px) {
	.ar-hero h1.ar-hero__title {
		font-size: 56px;
		line-height: 62px;
		letter-spacing: -1.6px;
	}

	.ar-hero p.ar-hero__copy {
		font-size: 17px;
		line-height: 28px;
	}
}

@media (max-width: 767px) {
	.ar-hero__inner,
	.ar-hero__badges {
		width: calc(100% - 40px);
	}

	.ar-hero h1.ar-hero__title {
		font-size: 40px;
		line-height: 46px;
		letter-spacing: -1px;
	}

	.ar-hero p.ar-hero__copy {
		font-size: 15px;
		line-height: 26px;
	}

	.ar-hero__actions {
		margin-top: 28px;
		gap: 10px;
	}

	.ar-hero a.ar-hero__btn {
		flex: 1 1 100%;
		font-size: 15px;
	}

	.ar-hero a.ar-hero__btn--primary,
	.ar-hero a.ar-hero__btn--outline {
		padding: 15px 22px;
	}

	.ar-hero__badges {
		bottom: 46px;
		gap: 8px;
	}

	.ar-hero__badge {
		padding: 8px 12px;
		font-size: 11px;
		gap: 7px;
	}

	.ar-hero__badge-dot {
		width: 14px;
		height: 14px;
	}

	.ar-hero__badge-dot::after {
		top: 3px;
		left: 4.5px;
		width: 4px;
		height: 7px;
	}

	.ar-hero__dots {
		bottom: 18px;
	}
}

/* Phones: the hero grows with its content and the trust badges sit in flow
   under the buttons instead of being pinned to the bottom (they overlapped). */
@media (max-width: 767px) {
	.ar-hero {
		height: auto;
		min-height: 0;
	}

	.ar-hero__inner {
		height: auto;
		padding: 56px 0 24px;
	}

	.ar-hero__badges,
	.ar-hero .ar-hero__badges {
		position: relative;
		left: auto;
		right: auto;
		bottom: auto;
		margin: 28px auto 56px;
		width: calc(100% - 40px);
	}

	.ar-hero__dots {
		bottom: 18px;
	}
}
