/**
 * Landing Page Template styles.
 * Mobile-first. Section-specific rules are appended below as each
 * template part is implemented.
 */

/*
 * Gilroy itself is loaded site-wide by the "Custom Fonts" plugin
 * (registered font family "Gilroy", weights 300/400/500/700 from the
 * uploaded TTFs) — no @font-face needed here.
 */

.landing-page {
	width: 100%;
	font-family: 'Gilroy', Arial, Helvetica, sans-serif;
}

/* ==========================================================================
   Hero section
   ========================================================================== */

.hero {
	position: relative;
	overflow: hidden;
	padding-top: 2.5rem;
	background-color: #0b1b33;
	color: #ffffff;
}

.container {
	width: 100%;
	padding-left: 6%;
	padding-right: 6%;
}

.hero__background {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.hero__background-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero__overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	/* background: linear-gradient(180deg, rgba(4, 15, 34, 0.55) 0%, rgba(4, 15, 34, 0.35) 45%, rgba(4, 15, 34, 0.75) 100%); */
}

.hero__content {
	position: relative;
	z-index: 2;
}

.hero__eyebrow {
	margin: 0 0 1rem;
	font-size: 18px;
	font-weight: 400;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.85);
}

.hero__divider {
	height: 1px;
	margin-bottom: 1.5rem;
	background: rgba(255, 255, 255, 0.25);
}

.hero__title {
	margin: 0 0 1.25rem;
	font-size: 2rem;
	line-height: 1.2;
	font-weight: 500;
	max-width: 1000px;
}

.hero__description {
	margin: 0 0 2rem;
	max-width: 673px;
	font-size: 20px;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.85);
}

.hero__button {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.5rem 1.5rem 0.5rem 0.5rem;
	border: 1px solid rgba(255, 255, 255, 0.4);
	border-radius: 999px;
	text-decoration: none;
	color: #ffffff;
	font-size: 18px;
	font-weight: 500;
}

.hero__button:hover {
	background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.6);
	color: #fff;
}

.hero__button-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2rem;
	height: 2rem;
	border-radius: 50%;
	background: linear-gradient(135deg, #4facfe 0%, #2b6cb0 100%);
	flex-shrink: 0;
}

.hero__trust-bar {
	max-width: 100%;
	margin: 2.5rem auto 0;
	margin-bottom: 100px;
	padding: 1.25rem 1.5rem;
    border-top: 0.909px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(7px);
}

.hero__trust-list {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.hero__trust-item {
	display: flex;
	align-items: center;
	gap: 0.625rem;
	font-size: 16px;
	color: rgba(255, 255, 255, 0.9);
}

.hero__trust-icon {
	width: 1.25rem;
	height: 1.25rem;
	flex-shrink: 0;
}

.hero-cards-section {
	position: relative;
	z-index: 1;
	display: flow-root;
	background: #ffffff;
}

.hero__cards {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
	margin-top: -60px;
	padding-bottom: 2.5rem;
}

.hero__card {
	position: relative;
	overflow: hidden;
	padding: 2.5rem 1.75rem 1.75rem;
	border-radius: 1rem;
	box-shadow: 0 1.5rem 2.5rem rgba(8, 20, 45, 0.16);
	background: linear-gradient(145deg, #eaf0f6 20%, #d6eaf8 60%, #e8f8f7 100%);
	color: #0b1b33;
}

.hero__card:hover{
	background: #fff;
}

.hero__card-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 75px;
	height: 75px;
	margin-bottom: 1.5rem;
	border-radius: 50%;
	background: rgba(123, 126, 140, 0.2);
	/* box-shadow: 0 0.5rem 1rem rgba(8, 20, 45, 0.12); */
}

.hero__card-icon img {
	width: 1.75rem;
	height: 1.75rem;
}

.hero__card-title {
	margin: 0 0 0.5rem;
	font-size: 24px;
	font-weight: 400;
}

.hero__card-description {
	margin: 0;
	font-size: 18px;
	line-height: 1.5;
	color: #4a5568;
}

@media (min-width: 48rem) {
	.hero {
		padding-top: 3.5rem;
	}

	.hero__title {
		font-size: 2.75rem;
	}

	.hero__trust-list {
		flex-direction: row;
		flex-wrap: wrap;
		align-items: center;
		justify-content: center;
		gap: 2.5rem;
	}

	.hero__cards {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (min-width: 64rem) {
	.hero__title {
		font-size: 64px;
	}
}

/* ==========================================================================
   About section
   ========================================================================== */

.about {
	position: relative;
	overflow: hidden;
	padding: 6rem 0 4rem;
	background: #ffffff;
}

.about .container {
	padding-left: 0;
	padding-right: 0;
}

.about__watermark {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 0;
	width: 100%;
	height: auto;
	display: block;
	pointer-events: none;
	user-select: none;
}

.about__glow {
	position: absolute;
	top: 38%;
	left: 1%;
	z-index: 0;
	width: 100%;
	height: 700px;
	background: radial-gradient(55% 100% at 50% 0%, rgb(3 73 199 / 60%) 0%, rgb(4 83 235 / 35%) 45%, rgba(94, 196, 210, 0) 75%);
	filter: blur(50px);
	pointer-events: none;
}

.about__intro {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	padding-top: 6rem;
}

.about__small-heading {
	margin: 0;
	max-width: 20rem;
	font-size: 18px;
	font-weight: 400;
	line-height: 1.6;
	color: #0b1b33;
}

.about__description {
	margin: 0;
	max-width: 42rem;
	font-size: 32px;
	font-weight: 400;
	line-height: 1.20;
	color: #0b1b33;
}

.about__intro,
.about__cards {
	max-width: 1280px;
	margin-inline: auto;
}

.about__cards {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
	margin-top: 3rem;
}

.about__card {
	position: relative;
	display: flex;
	flex-direction: column;
	padding: 2rem;
	border-radius: 1.25rem;
	background: #fff;
	border: 1px solid #ffffffe6;
	box-shadow: 0 2px 20px rgba(0, 10, 45, 0.06);
}

.about__card-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2.5rem;
	height: 2.5rem;
	margin-bottom: 1.5rem;
}

.about__card-icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	border: 2px solid #fff;
    border-radius: 50px;
    padding: 5px;
}

.about__card-title {
	margin: 0 0 0.5rem;
	font-size: 24px;
	font-weight: 400;
	color: #0b1b33;
}

.about__card-description {
	margin: 0;
	max-width: 20rem;
	font-size: 18px;
	line-height: 1.5;
	color: #64748b;
}

.about__card--has-bg-image {
	background-repeat: no-repeat;
	background-position: bottom right;
	background-size: contain;
	background-size: min(150px, 100%) min(150px, 100%);
}

@media (min-width: 64rem) {
	.about__intro {
		flex-direction: row;
		align-items: flex-start;
		justify-content: space-between;
		gap: 3rem;
	}

	.about__cards {
		grid-template-columns: repeat(3, 1fr);
		grid-template-rows: auto auto;
	}

	.about__card:nth-child(1) {
		grid-column: 1;
		grid-row: 1 / span 2;
	}

	.about__card:nth-child(2) {
		grid-column: 2;
		grid-row: 1;
	}

	.about__card:nth-child(3) {
		grid-column: 3;
		grid-row: 1 / span 2;
	}

	.about__card:nth-child(4) {
		grid-column: 2;
		grid-row: 2;
	}
}

/* ==========================================================================
   Services section
   ========================================================================== */

.services {
	width: 100%;
	min-height: 100vh;
	position: relative;
	overflow: clip;
	background-color: #000a2d;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
	background-size: 80px 80px;
	color: #ffffff;
	padding-block: 5rem;
}

.services .container {
	max-width: 1280px;
	margin-inline: auto;
	padding-left: 100px;
	padding-right: 100px;
}

.services__glow {
	position: absolute;
	z-index: 0;
	border-radius: 50%;
	opacity: 0.35;
	filter: blur(70px);
	pointer-events: none;
}

.services__glow--top-left {
	top: -220px;
	left: -220px;
	width: 700px;
	height: 700px;
	background: radial-gradient(ellipse at center, #00cabd 0%, #0037a6 50%, transparent 75%);
}

.services__glow--bottom-left {
	bottom: -220px;
	left: -180px;
	width: 700px;
	height: 700px;
	background: radial-gradient(ellipse at center, #00cabd 0%, #0037a6 50%, transparent 75%);
}

.services__glow--right-center {
	top: 50%;
	right: -260px;
	transform: translateY(-50%);
	width: 750px;
	height: 900px;
	background: radial-gradient(ellipse at center, #00cabd 0%, #0037a6 45%, transparent 72%);
}

.services__block {
	position: relative;
	z-index: 1;
}

.services__block + .services__block {
	margin-top: 6rem;
}

.services__intro {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.services__eyebrow {
	margin: 0;
	flex-shrink: 0;
	font-size: 18px;
	font-weight: 400;
	line-height: 1.4;
	color: #fff;
	max-width: 134px;
}

.services__heading {
	margin: 0;
	max-width: 42rem;
	font-size: 1.5rem;
	font-weight: 400;
	line-height: 1.4;
}

.services__heading-strong {
	color: #ffffff;
}

.services__heading-muted {
	color: #7c88a8;
}

.services__cards {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
	margin-top: 3rem;
}

.services__card {
	position: relative;
	display: flex;
	flex-direction: column;
	padding: 2rem;
	border-radius: 1.25rem;
	background-color: rgba(248, 250, 252, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.08);
}

.services__card-image {
	overflow: hidden;
	margin-bottom: 1.5rem;
	border-radius: 0.75rem;
}

.services__card-image img {
	display: block;
	width: 100%;
	height: auto;
}

.services__card-head {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 1rem;
	margin-bottom: 0.75rem;
}

.services__card-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 3rem;
	height: 3rem;
	border-radius: 0.75rem;
	background: rgba(255, 255, 255, 0.06);
}

.services__card-icon img {
	width: 1.5rem;
	height: 1.5rem;
}

.services__card-title {
	margin: 0 0 0.75rem;
	font-size: 24px;
	font-weight: 400;
	color: #ffffff;
}

.services__card-head .services__card-title {
	margin-bottom: 0;
}

.services__card-description {
	margin: 0;
	font-size: 17px;
	line-height: 1.55;
	color: #9aa5c0;
}

.services__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 0.625rem;
	margin: 1.5rem 0 0;
	padding: 0;
	list-style: none;
}

.services__tag {
	padding: 0.4rem 0.875rem;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 999px;
	font-size: 0.8rem;
	color: #d3d9ea;
	white-space: nowrap;
}

.services__cards--alliance .services__card--tall:not(.services__card--featured) {
	justify-content: flex-start;
}

.services__cards--alliance .services__card--tall:not(.services__card--featured) .services__card-image {
	margin-top: 120px;
	margin-bottom: 0;
}

.services__cards--alliance .services__card:nth-child(2) .services__card-description,
.services__cards--alliance .services__card:nth-child(3) .services__card-description {
	margin-top: auto;
}

.services__card--featured {
	justify-content: space-between;
	background: linear-gradient(160deg, #1a56c4 0%, #1fa7d9 100%);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	border-color: transparent;
}

.services__card--featured .services__card-title {
	color: #ffffff;
}

.services__card--featured .services__card-description {
	color: rgba(255, 255, 255, 0.85);
}

@media (min-width: 64rem) {
	.services__intro {
		flex-direction: row;
		align-items: flex-start;
		justify-content: space-between;
		gap: 3rem;
	}

	.services__heading {
		font-size: 2rem;
	}

	.services__cards--partners {
		grid-template-columns: 1fr 1.45fr;
		grid-template-rows: auto auto;
	}

	.services__cards--partners .services__card--tall {
		grid-row: 1 / span 2;
	}

	.services__cards--alliance {
		grid-template-columns: repeat(3, 1fr);
		grid-template-rows: auto auto;
	}

	.services__cards--alliance .services__card:nth-child(1) {
		grid-column: 1;
		grid-row: 1 / span 2;
	}

	.services__cards--alliance .services__card:nth-child(2) {
		grid-column: 2;
		grid-row: 1;
	}

	.services__cards--alliance .services__card:nth-child(3) {
		grid-column: 2;
		grid-row: 2;
	}

	.services__cards--alliance .services__card:nth-child(4) {
		grid-column: 3;
		grid-row: 1 / span 2;
	}
}

/* ==========================================================================
   Credibility section
   ========================================================================== */

.section-credibility {
	background: #ffffff;
	padding: 3rem 0 4rem;
}

.section-credibility .container {
	max-width: 1280px;
	margin-inline: auto;
	padding-left: 0;
	padding-right: 0;
}

.credibility__banner {
	position: relative;
	overflow: hidden;
	border-radius: 1.5rem;
	background-color: #050b1f;
}

.section-credibility .credibility__banner {
	max-width: 1200px;
	margin-bottom: 40px;
}

.credibility__banner-background {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.credibility__banner-background-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.credibility__banner-content {
	position: relative;
	z-index: 1;
	max-width: 48rem;
	padding: 3rem 2rem;
}

.credibility__banner-heading {
	margin: 0 0 1.5rem;
	font-size: 1.25rem;
	line-height: 1.5;
	color: #ffffff;
	font-weight: 400;
}

.credibility__body {
	position: relative;
	overflow: hidden;
	padding-top: 4rem;
}

.credibility__watermark-container {
	position: absolute;
	top: 0px;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	z-index: 0;
	pointer-events: none;
	user-select: none;
}

.credibility__watermark {
	display: block;
	width: 100%;
	height: auto;
}

.credibility__intro {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	margin-top: 8rem;
	padding-top: 90px;
	padding-bottom: 90px;
}

.credibility__small-heading {
	margin: 0;
	flex-shrink: 0;
	font-size: 18px;
	font-weight: 400;
	line-height: 1.2;
	color: #0b1b33;
}

.credibility__description {
	margin: 0;
	max-width: 35rem;
	font-size: 32px;
	font-weight: 400;
	line-height: 1.2;
	color: #0b1b33;
}

.credibility__logos {
	position: relative;
	z-index: 1;
	margin-top: 4rem;
	overflow: hidden;
	mask-image: linear-gradient(to right, transparent 0, #000 5%, #000 95%, transparent 100%);
	-webkit-mask-image: linear-gradient(to right, transparent 0, #000 5%, #000 95%, transparent 100%);
}

.credibility__logos-track {
	display: flex;
	align-items: center;
	width: max-content;
	animation: credibility-marquee 10s linear infinite;
}

.credibility__logos:hover .credibility__logos-track {
	animation-play-state: paused;
}

.credibility__logo {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	padding-inline: 3px;
}

.credibility__logo img {
	height: 65px;
	width: auto;
	filter: grayscale(1);
	opacity: 0.55;
}

@keyframes credibility-marquee {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(-50%);
	}
}

@media (prefers-reduced-motion: reduce) {
	.credibility__logos-track {
		animation: none;
	}
}

@media (min-width: 64rem) {
	.credibility__banner-heading {
		font-size: 32px;
	}

	.credibility__intro {
		flex-direction: row;
		align-items: flex-start;
		justify-content: space-between;
		gap: 3rem;
	}
}

/* ==========================================================================
   Image Carousel section
   ========================================================================== */

.section-image-carousel {
	background: #ffffff;
	padding: 3rem 0 4rem;
}

.section-image-carousel .container {
	max-width: 1280px;
	margin-inline: auto;
	padding-left: 0;
	padding-right: 0;
}

.image-carousel__intro {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.image-carousel__small-heading {
	margin: 0;
	flex-shrink: 0;
	font-size: 18px;
	font-weight: 400;
	line-height: 1.5;
	color: #000a2d;
}

.image-carousel__description {
	margin: 0;
	max-width: 38rem;
	font-size: 32px;
	font-weight: 400;
	line-height: 1.35;
	color: #0b1b33;
}

.image-carousel__wrapper {
	margin-top: 2.5rem;
}

.image-carousel__viewport {
	overflow: hidden;
	clip-path: inset(0 1px 0 0);
}

.image-carousel__track {
	display: flex;
	flex-wrap: nowrap;
	align-items: stretch;
	transition: transform 0.45s ease;
}

.image-carousel__slide {
	flex: 0 0 100%;
	max-width: 100%;
	padding-right: 1.25rem;
	box-sizing: border-box;
}

.image-carousel__card {
	position: relative;
	overflow: hidden;
	border-radius: 1rem;
	aspect-ratio: 320 / 400;
	background-color: #050b1f;
	border: 1.5px solid transparent;
	transition: border-color 0.25s ease, background 0.25s ease;
}

.image-carousel__image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: opacity 0.25s ease;
}

.image-carousel__card::after {
	content: '';
	position: absolute;
	inset: 0;
	opacity: 1;
	background: linear-gradient(to top, rgba(2, 8, 22, 0.92) 0%, rgba(2, 8, 22, 0.35) 45%, transparent 70%);
	transition: opacity 0.25s ease;
}

.image-carousel__card-content {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
	padding: 1.5rem;
}

.image-carousel__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 0.75rem;
}

.image-carousel__icon-image {
	width: 52px;
	height: 52px;
	transition: filter 0.25s ease;
}

.image-carousel__category {
	margin: 0 0 0.375rem;
	font-size: 16px;
	font-weight: 500;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.75);
	transition: color 0.25s ease;
}

.image-carousel__title {
	margin: 0;
	font-size: 24px;
	font-weight: 500;
	line-height: 1.3;
	color: #ffffff;
	transition: color 0.25s ease;
}

.image-carousel__card-description {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
	margin: 0;
	padding: 1.5rem;
	font-size: 18px;
	line-height: 1.5;
	color: #4a5568;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.25s ease;
}

.image-carousel__card:hover {
	border-color: #0ca79c;
	background: linear-gradient(145deg, #ffffff 0%, #ffffff 42%, #c8e8f2 65%, #8ec8dc 100%);
}

.image-carousel__card:hover .image-carousel__image,
.image-carousel__card:hover::after {
	opacity: 0;
}

.image-carousel__card:hover .image-carousel__card-content {
	top: 0;
	bottom: auto;
}

.image-carousel__card:hover .image-carousel__icon-image {
	filter: brightness(0) saturate(100%) invert(47%) sepia(80%) saturate(600%) hue-rotate(131deg) brightness(90%) contrast(100%);
}

.image-carousel__card:hover .image-carousel__category {
	color: #64748b;
}

.image-carousel__card:hover .image-carousel__title {
	color: #0b1b33;
}

.image-carousel__card:hover .image-carousel__card-description {
	opacity: 1;
	visibility: visible;
}

.image-carousel__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 2.5rem;
}

.image-carousel__counter {
	display: flex;
	align-items: baseline;
	gap: 0.375rem;
	margin: 0;
}

.image-carousel__count-current {
	font-size: 100px;
	font-weight: 700;
	line-height: 1;
	background: linear-gradient(180deg, #2a44b0 0%, #13c5b8 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.image-carousel__count-total {
	font-size: 32px;
	font-weight: 500;
	color: #9aa5c0;
}

.image-carousel__nav {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.image-carousel__arrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.75rem;
	height: 2.75rem;
	padding: 0;
	appearance: none;
	font: inherit;
	line-height: 1;
	border: 1px solid #cbd5e0;
	border-radius: 50%;
	background: transparent;
	color: #0b1b33;
	cursor: pointer;
	transition: background-color 0.2s ease, border-color 0.2s ease;
}

.image-carousel__arrow:hover {
	background-color: #0b1b33;
	border-color: #0b1b33;
	color: #ffffff;
}

.image-carousel__arrow:focus-visible {
	outline: 2px solid #2b6cb0;
	outline-offset: 2px;
}

@media (min-width: 48rem) {
	.image-carousel__slide {
		flex-basis: 50%;
		max-width: 50%;
	}
}

@media (min-width: 64rem) {
	.image-carousel__intro {
		flex-direction: row;
		align-items: flex-start;
		justify-content: space-between;
		gap: 3rem;
	}

	.image-carousel__description {
		font-size: 1.75rem;
	}

	.image-carousel__slide {
		flex-basis: calc(100% / 3);
		max-width: calc(100% / 3);
	}
}

@media (prefers-reduced-motion: reduce) {
	.image-carousel__track {
		transition: none;
	}
}

/* ==========================================================================
   Case Study section
   ========================================================================== */

.section-case-study {
	position: relative;
	overflow: hidden;
	background: #ffffff;
	padding-block: 4rem;
}

.case-study__watermark {
	position: absolute;
	inset: 0;
	z-index: 0;
	overflow: hidden;
	pointer-events: none;
	user-select: none;
}

.case-study__watermark-line {
	margin: 0;
	white-space: nowrap;
	overflow: hidden;
	font-size: clamp(3rem, 10vw, 10rem);
	font-weight: 700;
	line-height: 0.88;
}

.case-study__watermark-line--1 {
	color: #e3e5e9;
	font-size: 251px;
}

.case-study__watermark-line--2 {
	color: #ecedf0;
	font-size: 251px;
}

.case-study__watermark-line--3 {
	color: #f4f5f6;
	font-size: 251px;
}

.case-study__grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1fr;
	gap: 3rem;
	padding-top: 200px;
}

.case-study__content-list {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 2rem;
	padding-inline: 6%;
}

.case-study__eyebrow {
	margin: 0 0 1rem;
	font-size: 18px;
	color: #64748b;
}

.case-study__heading {
	margin: 0;
	max-width: 34rem;
	font-size: 1.5rem;
	line-height: 1.2;
	font-weight: 400;
	color: #64748b;
}

.case-study__heading-highlight {
	font-weight: 400;
	color: #0b1b33;
}

.case-study__all-button {
	color: #0b1b33;
	border-color: rgba(11, 27, 51, 0.25);
}

.case-study__slide-button {
	background: rgba(5, 11, 31, 0.55);
	border-color: rgba(255, 255, 255, 0.3);
}

.case-study__slide-list {
	position: relative;
	padding-inline: 6%;
}

.case-study__slide-pane {
	position: relative;
	overflow: hidden;
	aspect-ratio: 1.3 / 1;
	background-color: #050b1f;
}

.case-study__slide-image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.case-study__slide-pane::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(2, 8, 22, 0.88) 0%, rgba(2, 8, 22, 0.25) 45%, transparent 70%);
}

.case-study__slide-content {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
	padding: 2rem;
}

.case-study__slide-eyebrow {
	margin: 0 0 0.75rem;
	font-size: 18px;
	color: rgba(255, 255, 255, 0.75);
}

.case-study__slide-heading {
	margin: 0 0 1.5rem;
	max-width: 30rem;
	font-size: 32px;
	line-height: 1.2;
	font-weight: 400;
	color: #ffffff;
}

.case-study__footer {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 2.5rem;
	padding-inline: 6%;
}

.case-study__counter {
	display: flex;
	align-items: baseline;
	gap: 0.375rem;
	margin: 0;
}

.case-study__count-current {
	font-size: 100px;
	font-weight: 600;
	line-height: 1;
	background: linear-gradient(135deg, #1a56db, #06b6d4);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.case-study__count-total {
	font-size: 32px;
	font-weight: 500;
	color: #9aa5c0;
}

.case-study__nav {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.case-study__arrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.75rem;
	height: 2.75rem;
	padding: 0;
	appearance: none;
	font: inherit;
	line-height: 1;
	border: 1px solid #cbd5e0;
	border-radius: 50%;
	background: transparent;
	color: #0b1b33;
	cursor: pointer;
	transition: background-color 0.2s ease, border-color 0.2s ease;
}

.case-study__arrow:hover {
	background-color: #0b1b33;
	border-color: #0b1b33;
	color: #ffffff;
}

.case-study__arrow:focus-visible {
	outline: 2px solid #2b6cb0;
	outline-offset: 2px;
}

@media (min-width: 64rem) {
	.case-study__grid {
		grid-template-columns: 1fr 1fr;
		align-items: flex-end;
		gap: 0;
	}

	.case-study__content-list {
		padding-right: 3rem;
		padding-bottom: 2rem;
	}

	.case-study__heading {
		font-size: 32px;
	}

	.case-study__slide-list {
		padding-inline: 0;
	}

	.case-study__slide-heading {
		font-size: 32px;
	}

	.case-study__slide-content {
		padding: 2.5rem;
	}

	.case-study__footer {
		padding-right: 4%;
	}
}

/* ==========================================================================
   Solution section
   ========================================================================== */

.section-solution {
	position: relative;
	overflow: hidden;
	padding: 6rem 0 4rem;
	background: #ffffff;
}

.section-solution .container {
	padding-left: 0;
	padding-right: 0;
}

.solution__watermark {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 0;
	width: 100%;
	height: auto;
	display: block;
	pointer-events: none;
	user-select: none;
}

.solution__glow {
	position: absolute;
	top: 36%;
	left: 1%;
	z-index: 0;
	width: 100%;
	height: 700px;
	background: radial-gradient(55% 100% at 50% 0%, rgb(3 73 199 / 60%) 0%, rgb(4 83 235 / 35%) 45%, rgba(94, 196, 210, 0) 75%);
	filter: blur(50px);
	pointer-events: none;
}

.solution__intro {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	padding-top: 6rem;
}

.solution__small-heading {
	margin: 0;
	max-width: 20rem;
	font-size: 18px;
	font-weight: 400;
	line-height: 1.2;
	color: #0b1b33;
}

.solution__description {
	margin: 0;
	max-width: 42rem;
	font-size: 32px;
	font-weight: 400;
	line-height: 1.45;
	color: #0b1b33;
}

.solution__intro,
.solution__cards {
	max-width: 1280px;
	margin-inline: auto;
}

.solution__cards {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
	margin-top: 3rem;
}

.solution__card {
	position: relative;
	display: flex;
	flex-direction: column;
	padding: 2rem;
	border-radius: 1.25rem;
	background: #ffffffd9;
	backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 10, 45, 0.06);
	border: 1px solid #ffffffe6;
}

.solution__card-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2.75rem;
	height: 2.75rem;
	margin-bottom: 1.5rem;
	border: 1.5px solid #cbd5e0;
	border-radius: 0.75rem;
}

.solution__card-icon img {
	width: 1.25rem;
	height: 1.25rem;
	object-fit: contain;
}

.solution__card-title {
	margin: 0 0 0.5rem;
	font-size: 24px;
	font-weight: 400;
	color: #0b1b33;
}

.solution__card-description {
	margin: 0;
	max-width: 20rem;
	font-size: 18px;
	line-height: 1.2;
	color: #64748b;
}

.solution__card--has-bg-image {
	background-repeat: no-repeat;
	background-position: bottom right;
	background-size: contain;
	background-size: min(190px, 100%) min(190px, 100%);
}

@media (min-width: 64rem) {
	.solution__intro {
		flex-direction: row;
		align-items: flex-end;
		justify-content: space-between;
		gap: 3rem;
	}

	.solution__cards {
		grid-template-columns: repeat(3, 1fr);
		grid-template-rows: auto auto;
	}

	.solution__card:nth-child(1) {
		grid-column: 1;
		grid-row: 1 / span 2;
	}

	.solution__card:nth-child(2) {
		grid-column: 2;
		grid-row: 1;
	}

	.solution__card:nth-child(3) {
		grid-column: 3;
		grid-row: 1 / span 2;
	}

	.solution__card:nth-child(4) {
		grid-column: 2;
		grid-row: 2;
	}
}

/* ==========================================================================
   Why Choose Us section
   ========================================================================== */

.section-why-choose-us {
	position: relative;
	overflow: hidden;
	background: #ffffff;
	padding-block: 6rem;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
}

.section-why-choose-us .container {
	max-width: 1280px;
	margin-inline: auto;
}

.why-choose-us__watermark {
	position: absolute;
	top: 50%;
	left: 0;
	z-index: 0;
	width: 100%;
	height: auto;
	transform: translateY(-50%);
	pointer-events: none;
	user-select: none;
}

.why-choose-us__intro {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1.5rem;
	text-align: center;
}

.why-choose-us__eyebrow {
	margin: 0;
	font-size: 18px;
	color: #000a2d;
}

.why-choose-us__heading {
	margin: 0;
	max-width: 61rem;
	font-size: 32px;
	line-height: 1.2;
	font-weight: 400;
	color: #0b1b33;
}

.why-choose-us__badges {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
	margin: 0.5rem 0 0;
	padding: 0;
	list-style: none;
}

.why-choose-us__badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.625rem 1.25rem;
	border: 1px solid rgba(11, 27, 51, 0.1);
	border-radius: 999px;
	background: rgba(11, 27, 51, 0.04);
	font-size: 18px;
	color: #0b1b33;
	white-space: nowrap;
}

.why-choose-us__badge-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.25rem;
	height: 1.25rem;
	flex-shrink: 0;
	border-radius: 50%;
	background: #0b1b33;
}

@media (min-width: 48rem) {
	.why-choose-us__heading {
		font-size: 32px;
		
	}
}

/* ==========================================================================
   Boxed Layout section
   ========================================================================== */

.section-boxed-layout {
	background: #ffffff;
	padding: 0rem 0 4rem;
}

.section-boxed-layout .container {
	max-width: 1280px;
	margin-inline: auto;
	padding-left: 0;
	padding-right: 0;
}

.boxed-layout__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
}

@media (min-width: 48rem) {
	.boxed-layout__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 64rem) {
	.boxed-layout__grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

/* ==========================================================================
   Contact CTA section
   ========================================================================== */

.section-contact-cta {
	background: #ffffff;
	padding: 4rem 0;
}

.section-contact-cta .container {
	max-width: 1280px;
	margin-inline: auto;
}

.contact-cta__top {
	display: grid;
	grid-template-columns: 1fr;
	gap: 3rem;
}

.contact-cta__eyebrow {
	margin: 0 0 0.75rem;
	font-size: 18px;
	color: rgba(255, 255, 255, 0.85);
}

/* Card (left visual) */

.contact-cta__card {
	position: relative;
	overflow: hidden;
	border-radius: 1.25rem;
	aspect-ratio: 4 / 5;
	background-color: #050b1f;
}

.contact-cta__card-image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.contact-cta__card-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(2, 8, 22, 0.9) 0%, rgba(2, 8, 22, 0.25) 45%, transparent 70%);
}

.contact-cta__card-content {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
	padding: 2rem;
}

.contact-cta__card-heading {
	margin: 0 0 0.75rem;
	font-size: 32px;
	line-height: 1.3;
	font-weight: 400;
	color: #ffffff;
}

.contact-cta__card-description {
	margin: 0;
	max-width: 26rem;
	font-size: 16px;
	line-height: 1.55;
	color: rgba(255, 255, 255, 0.75);
}

/* Form (right column) */

.contact-cta__form-heading {
	margin: 0 0 1.75rem;
	font-size: 2rem;
	font-weight: 500;
	color: #0b1b33;
}

.contact-cta__form {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.contact-cta__row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.25rem;
}

.contact-cta__field {
	display: flex;
	flex-direction: column;
}

.contact-cta__field label {
	margin-bottom: 0.5rem;
	font-size: 0.875rem;
	font-weight: 600;
	color: #0b1b33;
}

.contact-cta__field input[type='text'],
.contact-cta__field input[type='email'],
.contact-cta__field input[type='tel'],
.contact-cta__field select,
.contact-cta__field textarea {
	width: 100%;
	padding: 7px 1rem;
	border: 1px solid #cbd5e0;
	border-radius: 0.75rem;
	background: #ffffff;
	font-family: inherit;
	font-size: 0.9375rem;
	color: #0b1b33;
	appearance: none;
}

.contact-cta__field textarea {
	resize: vertical;
	min-height: 6.5rem;
}

.contact-cta__field input::placeholder,
.contact-cta__field textarea::placeholder {
	color: #9aa5c0;
}

.contact-cta__field input:focus,
.contact-cta__field select:focus,
.contact-cta__field textarea:focus {
	outline: none;
	border-color: #2b6cb0;
	box-shadow: 0 0 0 3px rgba(43, 108, 176, 0.15);
}

.contact-cta__field input.has-error,
.contact-cta__field select.has-error,
.contact-cta__field textarea.has-error {
	border-color: #dc2626;
}

.contact-cta__field-error {
	display: block;
	min-height: 1.1em;
	margin-top: 0.375rem;
	font-size: 0.8125rem;
	color: #dc2626;
}

.contact-cta__phone-row {
	display: flex;
	gap: 0.75rem;
}

.contact-cta__field select.contact-cta__phone-code {
	flex: 0 0 auto;
	width: auto;
	min-width: 5.5rem;
}

.contact-cta__phone-row input {
	flex: 1;
	min-width: 0;
}

.contact-cta__char-count {
	/* margin-top: 0.375rem; */
	font-size: 0.8125rem;
	color: #9aa5c0;
	text-align: right;
}

.contact-cta__honeypot {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
}

.contact-cta__submit {
	align-self: flex-start;
	color: #0b1b33;
	border-color: rgba(11, 27, 51, 0.25);
	cursor: pointer;
}

.contact-cta__submit.is-submitting {
	opacity: 0.65;
	cursor: not-allowed;
}

.contact-cta__form-message {
	margin: -0.5rem 0 0;
	font-size: 0.9375rem;
	min-height: 1.3em;
}

.contact-cta__form-message.is-success {
	color: #0ca79c;
}

.contact-cta__form-message.is-error {
	color: #dc2626;
}

/* Bottom banner */

.contact-cta__banner-wrap {
	margin-top: 4rem;
}

.contact-cta__banner {
	position: relative;
	overflow: hidden;
	border-radius: 1.5rem;
	min-height: 22rem;
	background-color: #050b1f;
}

.contact-cta__banner-image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.contact-cta__banner-content {
	position: relative;
	z-index: 1;
	max-width: 34rem;
	padding: 3rem 2rem;
}

.contact-cta__banner-heading {
	margin: 0 0 1rem;
	font-size: 32px;
	line-height: 1.25;
	font-weight: 400;
	color: #ffffff;
}

.contact-cta__banner-description {
	margin: 0 0 1.75rem;
	font-size: 1rem;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.8);
}

.contact-new:hover{
	background: #000a2d;
}
.case-new:hover{
	background: #000a2d;
}

@media (min-width: 48rem) {
	.contact-cta__row {
		gap: 1.5rem;
	}
}

@media (min-width: 64rem) {
	.contact-cta__top {
		grid-template-columns: 1fr 1fr;
		gap: 4rem;
	}

	.contact-cta__card {
		aspect-ratio: auto;
		height: 100%;
		max-height: 640px;
	}
}

/* ==========================================================================
   Footer section
   ========================================================================== */

.section-footer {
	position: relative;
	background-color: #071a3e;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	color: #ffffff;
	padding: 4rem 0 0rem;
}

.section-footer .container {
	max-width: 100%;
	margin-inline: auto;
	padding-left: 8%;
	padding-right: 8%;
}

.footer__top {
	display: flex;
	flex-direction: column;
	gap: 2.5rem;
}

.footer__brand {
	max-width: 28rem;
}

.footer__logo {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.footer__logo-image {
	max-height: 2.75rem;
	width: auto;
}

.footer__logo-mark {
	width: 2.5rem;
	height: 2.5rem;
	flex-shrink: 0;
}

.footer__logo-text {
	display: flex;
	flex-direction: column;
}

.footer__logo-word {
	font-size: 1.5rem;
	font-weight: 700;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	color: #ffffff;
	line-height: 1.1;
}

.footer__logo-tagline {
	font-size: 0.625rem;
	font-weight: 500;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.55);
}

.footer__description {
	margin: 1.25rem 0 0;
	font-size: 16px;
	line-height: 1.3;
	color: rgba(255, 255, 255, 0.65);
}

.footer__locate-button {
	margin-top: 1.5rem;
}

.footer__social {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin: 1.75rem 0 0;
	padding: 0;
	list-style: none;
}

.footer__social-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.75rem;
	height: 2.75rem;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.08);
	transition: background-color 0.2s ease;
}

.footer__social-link:hover {
	background: rgba(255, 255, 255, 0.18);
}

.footer__social-icon {
	width: 1.125rem;
	height: 1.125rem;
	object-fit: contain;
}

.footer__contact {
	display: flex;
	flex-direction: column;
	gap: 1.75rem;
}

.footer__contact-label {
	margin: 0 0 0.625rem;
	font-size: 0.8125rem;
	color: rgba(255, 255, 255, 0.55);
}

.footer__contact-email {
	font-size: 1.125rem;
	font-weight: 500;
	color: #ffffff;
	text-decoration: underline;
	text-underline-offset: 0.25rem;
}

.footer__phone-list {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.footer__phone-item {
	display: flex;
	align-items: baseline;
	gap: 1rem;
	font-size: 1rem;
}

.footer__phone-item a {
	color: #ffffff;
	font-weight: 500;
}

.footer__phone-country {
	flex: 0 0 2.75rem;
	color: rgba(255, 255, 255, 0.55);
	font-size: 0.875rem;
}

.footer__watermark {
	margin: 1rem 0;
	text-align: center;
	font-size: clamp(2.5rem, 18vw, 16rem);
	font-weight: 700;
	line-height: 1;
	color: rgba(255, 255, 255, 0.06);
	pointer-events: none;
	user-select: none;
}

.footer__columns {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2.5rem;
	padding-top: 2.5rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__column-heading {
	margin: 0 0 1.25rem;
	font-size: 1.0625rem;
	font-weight: 700;
	color: #ffffff;
}

.footer__column-links {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 1.1rem;
}

.footer__column-links a {
	font-size: 18px;
	color: rgba(255, 255, 255, 0.6);
	transition: color 0.2s ease;
}

.footer__column-links a:hover {
	color: #ffffff;
}

.footer__bottom {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 1rem;
	margin-top: 3rem;
	padding: 18px 120px;
	border-top: 1px solid #ffffff1a;
	background: #081e40;
}

.footer__copyright {
	margin: 0;
	font-size: 0.75rem;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.5);
}

.footer__bottom-links {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 1.5rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.container.footer__top, .container.footer__columns{
	padding-left: 13%;
	padding-right: 13%;
}

.footer__bottom-links a {
	font-size: 0.75rem;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.5);
	transition: color 0.2s ease;
}

.footer__bottom-links a:hover {
	color: #ffffff;
}



@media (min-width: 48rem) {
	.footer__columns {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 64rem) {
	.footer__top {
		flex-direction: row;
		align-items: flex-start;
		justify-content: space-between;
		gap: 3rem;
	}

	.footer__columns {
		grid-template-columns: repeat(4, 1fr);
	}

	.footer__bottom {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
	}
}
