@import url("https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Courgette&display=swap');

:root {
	--nav-h: 56px;
	/* Fixed navbar height — pin + sticky title align below it */
	--navbar-sticky-offset: 100px;
	/* Sticky work title / cards under fixed header */
	--work-sticky-top: calc(var(--navbar-sticky-offset) + 12px);
	/* Thumbs stick below measured title block (JS sets px offset; fallback below) */
	--work-thumb-sticky-top: calc(var(--work-sticky-top) + 9rem);
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: var(--nav-h);
}

/* @media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}
} */

body {
	font-family: "Nunito", sans-serif;
	font-optical-sizing: auto;
	font-weight: 100;
	font-size: 20px;
	color: #000;
	background-color: #FFF;

}

h1,
h2,
h3,
h4,
h5,
h6 {
	/* font-family: "Felipa", serif; */
	font-weight: 600;
	font-style: normal;
	color: #000;
}

h1 {
	/* font-size: 60px; */
	/* font-family: "Courgette", cursive; */
	font-weight: 400;
}

h2 {
	/* font-size: 50px; */
	/* font-weight: 700; */
}

h3 {
	/* font-size: 40px; */
	/* font-weight: 700; */
}

h4 {
	/* font-size: 30px; */
	/* font-weight: 700; */
}

h5 {
	/* font-size: 20px; */
	/* font-weight: 700; */
}

h6 {
	/* font-size: 14px; */
	/* font-weight: 700; */
}

p {
	font-size: 18px;
	font-weight: 300;
}

li {
	font-size: 18px;
	font-weight: 300;
}

p.flow-text {
	position: relative;
	font-size: 40px;
	font-weight: 300;
	line-height: 1.5;
	padding-left: 120px;
	font-family: "Courgette", cursive;
}

p.flow-text::before{
	position: absolute;
    left: 0;
    top: 0;
    content: "\201C";
    font-size: 200px;
    font-weight: 300;
    line-height: 0.7;
    color: #2c228a14;
    text-decoration: none;
    text-align: left;
}

a {
	font-size: 18px;
	font-weight: 300;
	color: #000;
	text-decoration: none;
}



.btn {
	border-radius: 0;
	font-weight: 600;
	font-size: 16px;
	padding: 0px 30px;
	display: inline-flex;
	gap: 10px;
	height: 60px;
	border-radius: 4px;
	align-items: center;
	justify-content: center;
	white-space: nowrap;
	text-transform: capitalize;

}


.btn-lg {
	height: 60px;
	padding: 0px 50px;
	font-size: 16px;
}


.btn-primary {
	background-color: #000;
	border: none;
}

.btn-primary-alt{
	background-color: #FFF;
	color: #000;
}

.btn-outline {
	border: 1px solid #000;
	background-color: transparent;
	color: #000;
}

.btn-outline-alt {
	border: 1px solid #FFF;
	background-color: transparent;
	color: #FFF;
}

.btn-row {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}




align-items-center {
	align-items: center;
}


section {
	padding: 50px 0px;
	/* border-bottom: 1px solid #DDD; */
}

.home-about-section {
	/* background-color: #FFF; */
	background-image: linear-gradient(to bottom, #FFF, #fcfaff);
}

.home-services-section {
	background-image: linear-gradient(to top, #FFF, #fcfaff);;
	/* background-image: linear-gradient(to bottom, #FFF, #fcfaff); */
}

.home-work-section{
	padding-top: 0px;
	/* background-color: #fcfaff; */
}

.work-section-head {
	/* position: sticky; */
	/* top: 80px; */
	/* height: 100px; */
	z-index: 50;
	margin-bottom: 30px;
	/* padding-bottom: 1.25rem; */
	/* background: linear-gradient(
		to bottom,
		#fcfaff 0%,
		#fcfaff 72%,
		rgba(252, 250, 255, 0.96) 88%,
		rgba(252, 250, 255, 0)
	);
	box-shadow: 0 14px 28px -12px rgba(44, 34, 138, 0.12); */
}

.work-section-head h2 {
	margin-bottom: 0.75rem;
}

.work-section-lead {
	max-width: 42rem;
	/* font-size: 1.125rem; */
	font-weight: 300;
	line-height: 1.55;
	color: #333;
	margin-bottom: 0;
}

.work-thumbs-wrap {
	position: relative;
	/* isolation: isolate; */
	display: flex;
	flex-direction: column;
	gap: 0;
	/* padding-bottom: min(28vh, 14rem); */
}

.work-thumb {
	margin: 0;
	/* margin-bottom: clamp(1.75rem, 5vw, 3rem); */
	background: #fcfaff;
	/* border-radius: 12px; */
	overflow: hidden;
	/* box-shadow: 0 8px 32px rgba(44, 34, 138, 0.1); */
	/* border: 1px solid rgba(44, 34, 138, 0.12); */
	transition: box-shadow 0.4s ease;
}

.work-thumb-stack {
	/* position: sticky; */
	/* top: 200px; */
	margin-bottom: 30px;
}

.work-thumb:hover {
	/* box-shadow: 0 16px 48px rgba(44, 34, 138, 0.14); */
}

/* Stacked z-index; fade in / out via opacity (main.js toggles --revealed / --faded) */
.work-thumb-stack .work-thumb-row {
	opacity: 0;

	transition: all 0.5s ease;
}

.work-thumb-stack.work-thumb--revealed:not(.work-thumb--faded) .work-thumb-row {
	opacity: 1;
	transform: translateY(0);
}

.work-thumb-stack.work-thumb--faded .work-thumb-row {
	opacity: 0.12;
	transition: all 0.5s ease;
	transform: translateY(10px);
}

.work-thumb-row {
	min-height: calc(100vh - 300px);
}

.work-thumb-media {
	position: relative;
	height: 100%;
	min-height: 220px;
	background: linear-gradient(145deg, #e8e4f5 0%, #f5f3fb 100%);
}

.work-thumb-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 20px;
	background: rgba(255, 255, 255, 0.5);
	/* backdrop-filter: blur(1px); */
	z-index: 1;
}

@media (min-width: 992px) {
	.work-thumb-media {
		min-height: 100%;
	}
}

.work-thumb-img {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 220px;
	object-fit: cover;
}

@media (min-width: 992px) {
	.work-thumb-img {
		min-height: 320px;
	}
}

.work-thumb-body {
	padding: 1.75rem 1.5rem 2rem;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

@media (min-width: 992px) {
	.work-thumb-body {
		padding: 2.25rem 2.5rem 2.25rem 2rem;
	}
}

.work-thumb-title {
	/* font-size: clamp(1.35rem, 2.5vw, 1.75rem); */
	font-weight: 700;
	color: #000;
	margin-bottom: 1rem;
	line-height: 1.25;
}

.work-thumb-tech {
	margin-bottom: 1.125rem;
	gap: 0.5rem !important;
}

.work-tech-pill {
	display: inline-block;
	/* font-size: 0.75rem; */
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	padding: 0.35rem 0.65rem;
	border-radius: 4px;
	color: #000;
	background: rgba(44, 34, 138, 0.1);
	border: 1px solid rgba(44, 34, 138, 0.15);
}

.work-thumb-desc {
	/* font-size: 1rem; */
	font-weight: 300;
	line-height: 1.6;
	color: #333;
	margin-bottom: 0;
	max-width: 36rem;
}

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

	.work-thumb-stack .work-thumb-row {
		opacity: 1;
		transition: none;
	}
}

.card-img {
	width: calc(100% - 20px);
	position: relative;
	margin: 0px 0px;
	overflow: visible;
	background-color: #FFF;
}

.card-img.serv-img {
	border: 10px solid #FFF;
	border-right: none;
	border-radius: 10px;
	overflow: hidden;
	width: calc(100% + 20px);
	/* box-shadow: 5px 5px 10px #00000036; */
}

.card-img.serv-img::before {
	/* content: ""; */
	position: absolute;
	top: 0px;
	left: 0px;
	bottom: 0px;
	right: 0px;
	background-image: linear-gradient(to right, transparent 0%, transparent 80%, #FAFAFA);
	z-index: 2;
	border-radius: 10px;
	transition: all 0.3s ease;
}

.card-img::after {
	/* content: ""; */
	position: absolute;
	top: -10px;
	left: -10px;
	bottom: -20px;
	right: -20px;
	border-radius: 10px;
	background-color: #558764;
	z-index: 1;
	transition: all 0.3s ease;
}


.card-img img {
	position: relative;
	z-index: 1;
	width: 100%;
	height: auto;
	border-radius: 10px;
	overflow: hidden;
	background-color: #FFF;
}

.card-img.serv-img img {
	height: 450px;
	object-fit: cover;
}

.scroll-progress {
	position: fixed;
	top: 0;
	left: 0;
	height: 3px;
	width: 0%;
	z-index: 2000;
	/* background: linear-gradient(90deg, #0d9488, #6366f1); */
	pointer-events: none;
}

.site-navbar {
	background: transparent;
	height: 100px;
	color: #FFF;
	/* box-shadow: 0px 0px 10px #00000024; */
	z-index: 1030;
	left: 0;
	right: 0;
	will-change: transform;
	transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1), background-color 0.25s ease,
		box-shadow 0.25s ease, color 0.2s ease;
}

.site-navbar.active {
	background: #fff;
	color: #123166;
	box-shadow: 0 1px 0 rgba(18, 49, 102, 0.1);
}

.site-navbar.active .navbar-brand {
	color: #123166;
}

.site-navbar.active .nav-link {
	color: #123166;
}

.site-navbar.active .navbar-toggler {
	border-color: rgba(18, 49, 102, 0.25);
}

.site-navbar.active .navbar-toggler-icon {
	filter: none;
}

.site-navbar.site-navbar--hidden {
	transform: translate3d(0, -100%, 0);
	pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
	.site-navbar {
		transition-duration: 0.01ms;
	}
}

.navbar-brand {
	color: #000;
}

.site-navbar-brand {
	display: inline-flex;
	align-items: center;
	line-height: 1;
	text-decoration: none;
}

.site-navbar-brand__logo {
	height: 2.25rem;
	width: auto;
	max-width: min(200px, 42vw);
	object-fit: contain;
	vertical-align: middle;
}

.site-navbar-brand__logo--on-light {
	display: none;
}

.site-navbar.active .site-navbar-brand__logo--on-dark {
	display: none;
}

.site-navbar.active .site-navbar-brand__logo--on-light {
	display: block;
}

.site-navbar.active .site-navbar-brand__text {
	color: #123166;
}

.site-navbar .navbar-nav {
	align-items: center;
	gap: 20px !important
}

.site-navbar .nav-link {
	color: #FFF;
	font-weight: 600;
	text-transform: uppercase;
	font-size: 14px;
}

.site-navbar.active .nav-link {
	color: #123166;
}

.site-navbar .btn-primary-alt {
	display: inline-flex;
}

.site-navbar.active .btn-primary-alt {
	display: none;
}

.site-navbar .btn-primary {
	display: none;
}

.site-navbar.active .btn-primary {
	display: inline-flex;
}

.hero-section {
	min-height: 100vh;
	min-height: 100dvh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: relative;
	/* padding-top: 200px; */
	/* padding-bottom: 100px; */
}

.hero-section::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
	/* background-image: linear-gradient(to bottom, #fffffff3, #ffffff); */
	background-color: #000000b3;
	/* backdrop-filter: blur(2px); */
	pointer-events: none;
}

.hero-section--home video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 1;
	/* filter: brightness(10); */
}

.hero-section__bg--image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.hero-section__bg--video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	overflow: hidden;
}

.hero-section__bg--video video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero-section-content {
	position: relative;
	z-index: 3;
}

.hero-scroll-down {
	position: absolute;
	bottom: 1.5rem;
	left: 50%;
	transform: translateX(-50%);
	z-index: 4;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.4rem;
	color: rgba(255, 255, 255, 0.88);
	text-decoration: none;
	font-size: 0.6875rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.16em;
}

.hero-scroll-down:hover {
	color: #fff;
}

.hero-scroll-down:focus-visible {
	outline: 2px solid rgba(255, 255, 255, 0.85);
	outline-offset: 4px;
}

.hero-scroll-down-icon {
	display: flex;
	width: 2.35rem;
	height: 2.35rem;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.45);
	align-items: center;
	justify-content: center;
	font-size: 0.85rem;
	animation: hero-scroll-nudge 1.75s ease-in-out infinite;
}

@keyframes hero-scroll-nudge {
	0%,
	100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(6px);
	}
}

@media (prefers-reduced-motion: reduce) {
	.hero-scroll-down-icon {
		animation: none;
	}
}

.hero-section--page {
	min-height: 100vh;
	min-height: 100dvh;
	justify-content: flex-start;
	padding-top: clamp(5rem, 12vw, 7rem);
	padding-bottom: 2.5rem;
}

.hero-section--page .hero-section-content {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	/* width: 100%; */
	/* max-width: 100%; */
}

.hero-section--page .works-breadcrumb,
.hero-section--page .works-breadcrumb a {
	color: rgba(255, 255, 255, 0.78);
}

.hero-section--page .works-breadcrumb a:hover {
	color: #fff;
}

.hero-section--page .works-breadcrumb-current {
	color: rgba(255, 255, 255, 0.5);
}

.hero-section--page .works-archive-title,
.hero-section--page .works-archive-count {
	color: #fff;
}

.hero-section--page .works-archive-lead {
	color: rgba(255, 255, 255, 0.9);
}

.hero-section--page .works-archive-count {
	opacity: 0.85;
}

.hero-section--page .work-case-meta-line,
.hero-section--page .work-case-title,
.hero-section--page .work-case-lead {
	color: rgba(255, 255, 255, 0.92);
}

.hero-section--page .work-case-meta-line {
	opacity: 0.85;
}

.hero-section--page .work-case-title {
	color: #fff;
}

.hero-section--page .work-case-lead {
	color: rgba(255, 255, 255, 0.88);
}

.hero-section--page .work-case-hero-media {
	border-color: rgba(255, 255, 255, 0.18);
	box-shadow: 0 18px 50px rgba(0, 0, 0, 0.4);
	margin-top: 0.75rem;
}

.hero-section--page .work-tech-pill {
	background: rgba(255, 255, 255, 0.14);
	border: 1px solid rgba(255, 255, 255, 0.28);
	color: #fff;
}

.site-navbar:not(.active) .nav-link.active {
	color: rgba(255, 255, 255, 0.95);
}

.site-navbar:not(.active) .navbar-brand {
	color: rgba(255, 255, 255, 0.95);
}

.hero-social-icon {
	color: #AAA;
	height: 50px;
	width: 50px;
	border-radius: 50%;
	border: 1px solid #AAA;
	display: flex;
	justify-content: center;
	align-items: center;
}

.hero-social-icon:hover {
	background-color: #ffffff15;
	color: #FFF;
	border: 1px solid #FFF;
}

.hero-social-icon svg {
	height: 25px;
	width: 25px;
}


.hero-social-icon-wrap {
	display: flex;
	gap: 20px;
	align-items: center;
	flex-wrap: wrap;
	padding: 20px 0;
}


.hero-icon-cont {
	height: 400px;
	width: 400px;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}


.hero-tech-orbit {
	position: absolute;
	width: 400px;
	height: 150px;
	border: 2px dotted #aaaaaa6b;
	border-radius: 35% / 50%;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%) rotate(15deg);
	transform-origin: center center;
	overflow: visible;
}

.hero-tech-orbit.t2 {
	top: 50%;
	transform: translate(-50%, -50%) rotate(-60deg) scale(1.2);
}


.hero-tech-orbit-item {
	position: absolute;
	height: 60px;
	width: 60px;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #ffffffe3;
	border-radius: 50%;
	/* border: 1px solid #000; */
	filter: drop-shadow(0 1px 6px #00000019);
	transition: all 0.3s ease;
	z-index: 1;
	/* transform: rotate(-45deg); */
	transform-origin: center center;
	animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
	0% {
		height: 60px;
		width: 60px;
	}

	50% {
		height: 55px;
		width: 55px;
	}

	100% {
		height: 60px;
		width: 60px;
	}
}

.hero-tech-orbit-item img {
	width: 35px;
	height: 35px;
	object-fit: contain;
	filter: none !important;
}

.hero-tech-orbit-item.i1 {
	left: -20px;
	top: 50%;
	transform: translateY(-50%) rotate(-15deg);
	transform-origin: center center;
	animation-delay: 0.1s;
}

.hero-tech-orbit-item.i2 {
	right: -20px;
	top: 50%;
	transform: translateY(-50%) rotate(-15deg);
	transform-origin: center center;
	animation-delay: 0.2s;
}

.hero-tech-orbit-item.i3 {
	left: 150px;
	top: 0;
	transform: translateY(-50%) rotate(-15deg);
	transform-origin: center center;
	animation-delay: 0.3s;
}

.hero-tech-orbit-item.i4 {
	left: 280px;
	bottom: 0;
	transform: translate(-50%, 50%) rotate(-15deg);
	transform-origin: center center;
	animation-delay: 0.4s;
}


.hero-tech-orbit-item.i5 {
	left: -20px;
	top: 50%;
	transform: translateY(-50%) rotate(60deg);
	transform-origin: center center;
	animation-delay: 0.5s;
}

.hero-tech-orbit-item.i6 {
	right: -20px;
	top: 50%;
	transform: translateY(-50%) rotate(60deg);
	transform-origin: center center;
	animation-delay: 0.6s;
}

.hero-tech-orbit-item.i7 {
	left: 150px;
	top: 0;
	transform: translate(-50%, -50%) rotate(60deg);
	transform-origin: center center;
	animation-delay: 0.7s;
}

.hero-tech-orbit-item.i8 {
	left: 280px;
	bottom: 0;
	transform: translate(-50%, 50%) rotate(60deg);
	transform-origin: center center;
	animation-delay: 0.8s;
}




/* —— Pinned horizontal scrub (vertical scroll → translateX) —— */

.services-bg-wrap {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.horizontal-pin-section {
	position: relative;
	/* background: #e8e8e8; */
}

.horizontal-pin-track {
	position: relative;
}

.horizontal-pin-sticky {
	position: sticky;
	top: var(--navbar-sticky-offset);
	z-index: 2;
	min-height: calc(100vh - var(--navbar-sticky-offset));
	min-height: calc(100dvh - var(--navbar-sticky-offset));
	display: flex;
	flex-direction: column;
	align-items: stretch;
	box-sizing: border-box;
}

.horizontal-pin-services-title {
	flex-shrink: 0;
	/* padding: 0.35rem 0 0.65rem; */
	z-index: 3;
}


.horizontal-pin-viewport {
	flex: 1 1 auto;
	min-height: 0;
	/* width: 100%; */
	max-width: 100%;
	overflow: hidden;
	/* border-radius: 0.75rem; */
	/* margin: 0 0.75rem; */
	/* box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.06); */
	/* background: #f5f5f5; */
	display: flex;
	flex-direction: column;
}

.horizontal-pin-row {
	flex: 1 1 auto;
	min-height: 0;
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: stretch;
	/* gap: 1rem; */
	/* padding: 1rem; */
	will-change: transform;
	/* transition: all 0.5s linear; */
}

.horizontal-pin-panel.horizontal-section-in {
	flex: 0 0 auto;
	align-self: stretch;
	min-height: calc(100dvh - var(--navbar-sticky-offset) - 5.5rem);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	/* text-align: center; */
	padding: 2rem;
	/* border-right: 1px solid #ffffff16; */
	/* background-color: #c4f2de; */
	/* border-radius: 0.5rem; */
	box-sizing: border-box;
}

/* Reduced motion: no pin scrub — stack vertically */
.horizontal-pin-section.is-static .horizontal-pin-track {
	height: auto !important;
}

.horizontal-pin-section.is-static .horizontal-pin-sticky {
	position: relative;
	top: auto;
	min-height: 0;
	padding: 1rem 0;
	flex-direction: column;
}

.horizontal-pin-section.is-static .horizontal-pin-services-title {
	padding-top: 0;
}

.horizontal-pin-section.is-static .horizontal-pin-viewport {
	overflow: visible;
	margin: 0;
	box-shadow: none;
	background: transparent;
}

.horizontal-pin-section.is-static .horizontal-pin-row {
	flex-direction: column;
	transform: none !important;
	will-change: auto;
}

.horizontal-pin-section.is-static .horizontal-pin-panel.horizontal-section-in {
	width: 100% !important;
	max-width: 40rem;
	margin-left: auto;
	margin-right: auto;
	min-height: auto;
}


.services-container {
	display: flex;
	height: 100%;
	align-items: center;
	/* padding-top: 20px; */
	padding: 40px;
	margin-right: 40px;
	padding-right: 0px;
	background: #2c228a14;
	border-radius: 0px;
	/* box-shadow: 0px 10px 20px #00000014; */
	transition: all 0.3s ease;
}

.services-container:hover {
	transform: translateY(-10px);
	/* box-shadow: 0px 20px 40px #00000014; */
}

/* —— In-viewport reveal (main.js adds .reveal-item + .is-visible) —— */
.reveal-item {
	opacity: 0;
	transform: translate3d(0, 50px, 0);
	transition:
		opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0s),
		transform 0.75s cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0s);
}

.reveal-item.is-visible {
	opacity: 1;
	transform: translate3d(0, 0, 0);
}

@media (prefers-reduced-motion: reduce) {
	.reveal-item {
		opacity: 1;
		transform: none;
		transition: none;
	}
}




.choose-thumb-wrap {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 20px;
}

.choose-thumb {
	display: flex;
	flex-direction: row;
	gap: 10px;
	background-color: #FAFAFA;
	/* color: #000; */
	padding: 20px 20px;
	padding-top: 40px;
	width: calc(50% - 10px);
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0px 10px 10px #00000018;
}

.choose-thumb-icon {
	width: 30px;
	height: 30px;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	/* background-color: #FFF; */
	color: #000;
}

.choose-thumb-icon i {
	font-size: 24px;
	color: #000;
}

.choose-thumb-content {
	display: flex;
	flex-direction: column;
	gap: 10px;
	flex: 1;
}

.choose-thumb-content h3 {
	font-size: 24px;
	font-weight: 600;
	/* color: #FFF; */
}

.choose-thumb-content p {
	font-size: 16px;
	font-weight: 300;
	/* color: #FFF; */
}


.prefooter{
	background-image: url('../assets/images/prefooter.jpg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	padding: 0px;
}

.prefooter-inner {
	display: flex;
    justify-content: center;
    align-items: center;
    padding: 100px 50px;
    background-image: linear-gradient(to bottom, #00000073, #000);
}


.prefooter h3, .prefooter p{
	/* text-shadow: 0px 5px 5px #000000; */
}

.prefooter h2{
	color: #FFF;
	font-weight: 300;
}

.prefooter h2 b{
	font-weight: 600;
}


.prefooter p{
	color: #FFF;
	font-size: 24px;
	font-weight: 400;
	line-height: 1.5;
}


footer{
	min-height: 400px;
	background-color: #000;
	border-top: 1px solid #ffffff0b;
	padding: 40px 0px;
}

footer h3{
	color: #FFF;
	font-size: 40px;
	font-weight: 600;
	line-height: 1.5;
	margin-bottom: 20px;
}

footer p{
	color: #FFF;
	font-size: 16px;
	font-weight: 300;
	line-height: 1.5;
}

footer h4{
	color: #FFF;
	font-size: 24px;
	font-weight: 600;
	line-height: 1.5;
	margin-bottom: 20px;
}

footer ul{
	list-style: none;
	padding: 0;
	margin: 0;
	margin-bottom: 20px;
}

footer ul li{
	margin-bottom: 10px;
}

footer ul li a{
	color: #FFF;
	font-size: 16px;
	font-weight: 300;
	line-height: 1.5;
	text-decoration: none;
}

footer ul li a:hover{
	color: #FFF;
	text-decoration: underline;
}

/* —— Works archive page (works.html) —— */
.page-works {
	background-color: #fafbfd;
}

.page-works-main {
	padding-top: 0;
}

.works-archive-hero {
	padding-bottom: 2rem;
	margin-bottom: 0.5rem;
	background: linear-gradient(180deg, #ffffff 0%, #f4f6fb 55%, #fafbfd 100%);
	border-bottom: 1px solid rgba(18, 49, 102, 0.08);
}

.works-breadcrumb {
	/* font-size: 0.8125rem; */
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: #000;
	margin-bottom: 1.25rem;
}

.works-breadcrumb a {
	/* font-size: inherit; */
	font-weight: inherit;
	color: #000;
	opacity: 0.65;
	text-decoration: none;
}

.works-breadcrumb a:hover {
	opacity: 1;
	text-decoration: underline;
}

.works-breadcrumb-sep {
	margin: 0 0.5rem;
	opacity: 0.35;
}

.works-breadcrumb-current {
	opacity: 0.45;
}

.works-archive-title {
	/* font-size: clamp(2.25rem, 5vw, 3.5rem); */
	font-weight: 600;
	color: #000;
	line-height: 1.12;
	margin-bottom: 1rem;
	max-width: 18ch;
}

.works-archive-lead {
	/* font-size: 1.05rem; */
	font-weight: 300;
	line-height: 1.65;
	color: #333;
	max-width: 42rem;
	margin-bottom: 1rem;
}

.works-archive-count {
	/* font-size: 0.875rem; */
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #000;
	opacity: 0.55;
	margin-bottom: 0;
}

.works-archive-toolbar {
	margin-bottom: 2rem;
}

.works-filter-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	align-items: center;
}

.works-filter-btn {
	border: 1px solid rgba(18, 49, 102, 0.2);
	background: #fff;
	color: #000;
	/* font-size: 0.8125rem; */
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	padding: 0.5rem 1rem;
	border-radius: 999px;
	cursor: pointer;
	transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.works-filter-btn:hover {
	border-color: #000;
	background: rgba(18, 49, 102, 0.04);
}

.works-filter-btn:focus-visible {
	outline: 2px solid #000;
	outline-offset: 2px;
}

.works-filter-btn.is-active {
	background: #000;
	color: #fff;
	border-color: #000;
	box-shadow: 0 4px 14px rgba(18, 49, 102, 0.25);
}

.works-archive-grid-wrap {
	padding-bottom: 4rem !important;
}

.works-archive-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.75rem;
	margin: 0;
	padding: 0;
}

@media (min-width: 768px) {
	.works-archive-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 2rem;
	}
}

@media (min-width: 1200px) {
	.works-archive-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.works-archive-card {
	position: relative;
	height: 100%;
	background: #fff;
	border-radius: 14px;
	overflow: hidden;
	margin-top: 30px;
	border: 1px solid rgba(18, 49, 102, 0.1);
	box-shadow: 0 6px 28px rgba(18, 49, 102, 0.07);
	transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.works-archive-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 18px 48px rgba(18, 49, 102, 0.12);
}

.works-archive-card-link {
	display: block;
	height: 100%;
	color: inherit;
	text-decoration: none;
}

.works-archive-card-link:hover {
	color: inherit;
}

.works-archive-card-media {
	position: relative;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: linear-gradient(145deg, #e8ecf5 0%, #f5f7fb 100%);
}

.works-archive-card-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.55s ease;
}

.works-archive-card:hover .works-archive-card-media img {
	transform: scale(1.04);
}

.works-archive-card-tag {
	position: absolute;
	top: 1rem;
	left: 1rem;
	z-index: 1;
	/* font-size: 0.6875rem; */
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.07em;
	padding: 0.35rem 0.65rem;
	border-radius: 4px;
	color: #000;
	background: rgba(255, 255, 255, 0.95);
	border: 1px solid rgba(18, 49, 102, 0.12);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.works-archive-card-body {
	padding: 1.35rem 1.35rem 1.5rem;
}

.works-archive-card-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.35rem;
	/* font-size: 0.8125rem; */
	font-weight: 600;
	color: #000;
	opacity: 0.55;
	margin-bottom: 0.65rem;
}

.works-archive-card-meta time {
	font-weight: 600;
}

.works-archive-card-dot {
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: currentColor;
	opacity: 0.5;
}

.works-archive-card-title {
	/* font-size: 1.25rem; */
	font-weight: 600;
	color: #000;
	line-height: 1.3;
	margin-bottom: 0.5rem;
	transition: color 0.2s ease;
}

.works-archive-card:hover .works-archive-card-title {
	color: #0d244f;
}

.works-archive-card-desc {
	/* font-size: 0.9375rem; */
	font-weight: 300;
	line-height: 1.55;
	color: #333;
	margin-bottom: 0;
}

.works-archive-grid > li[hidden] {
	display: none !important;
}

.site-navbar .nav-link.active {
	color: #000;
	opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
	.works-archive-card,
	.works-archive-card-media img {
		transition: none;
	}

	.works-archive-card:hover {
		transform: none;
	}

	.works-archive-card:hover .works-archive-card-media img {
		transform: none;
	}
}

/* —— Single work / case study (work/*.html) —— */
.page-work-case {
	background-color: #fafbfd;
}

.page-work-case-main {
	padding-top: 0;
}

.work-case-hero {
	padding-bottom: 2.5rem;
	background: linear-gradient(180deg, #ffffff 0%, #f4f6fb 70%, #fafbfd 100%);
	border-bottom: 1px solid rgba(18, 49, 102, 0.08);
}

.work-case-meta-line {
	/* font-size: 0.875rem; */
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: #000;
	opacity: 0.65;
	margin-bottom: 0.75rem;
}

.work-case-title {
	/* font-size: clamp(2rem, 4.5vw, 3.25rem); */
	font-weight: 600;
	color: #000;
	line-height: 1.12;
	margin-bottom: 1rem;
	max-width: 24ch;
}

.work-case-lead {
	/* font-size: 1.1rem; */
	font-weight: 300;
	line-height: 1.65;
	color: #333;
	max-width: 40rem;
	margin-bottom: 2rem;
}

.work-case-hero-media {
	border-radius: 14px;
	overflow: hidden;
	border: 1px solid rgba(18, 49, 102, 0.1);
	box-shadow: 0 12px 40px rgba(18, 49, 102, 0.1);
}

.work-case-hero-media img {
	width: 100%;
	height: auto;
	display: block;
	aspect-ratio: 21 / 9;
	object-fit: cover;
}

@media (max-width: 767.98px) {
	.work-case-hero-media img {
		aspect-ratio: 16 / 10;
	}
}

.work-case-article {
	padding: 3rem 0 4rem;
}

.work-case-inner {
	/* max-width: 720px; */
}

.work-case-block {
	padding: 0px 0px;
	margin-bottom: 30px;
}

.work-case-label {
	font-size: 24px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: #000;
	opacity: 0.55;
	margin-bottom: 0.85rem;
}

.work-case-prose {
	/* font-size: 1rem; */
	font-weight: 300;
	line-height: 1.75;
	color: #222;
	margin-bottom: 0;
}

.work-case-features {
	/* font-size: 1rem; */
	font-weight: 300;
	line-height: 1.65;
	color: #222;
	padding-left: 1.2rem;
	margin-bottom: 0;
}

.work-case-features li {
	margin-bottom: 0.5rem;
}

.work-case-stack {
	margin-bottom: 0;
}

.work-case-stack .work-tech-pill {
	/* font-size: 0.75rem; */
}

.work-case-block--impact {
	background: linear-gradient(135deg, rgba(18, 49, 102, 0.07) 0%, rgba(18, 49, 102, 0.02) 100%);
	border: 1px solid rgba(18, 49, 102, 0.12);
	border-radius: 12px;
	padding: 1.5rem 1.5rem 1.35rem;
	margin-top: 0.25rem;
}

.work-case-block--impact .work-case-prose {
	/* font-size: 1.0625rem; */
}

.work-case-footer-cta {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	align-items: center;
	padding-top: 1.25rem;
	margin-top: 2.5rem !important;
	margin-bottom: 0 !important;
	border-top: 1px solid rgba(18, 49, 102, 0.1);
}

.work-case-breadcrumb .works-breadcrumb-current {
	max-width: 100%;
	display: inline-block;
	vertical-align: bottom;
}