* {
	box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6 {
	font-weight: 400;
}

.about-intro-section {
	padding: 40px 0;
	background: #f4f6f8;
	color: #1a2332;
}

.about-intro-shell {
	width: min(1120px, calc(100% - 48px));
	margin: 0 auto;
	display: flex;
	align-items: center;
	gap: 32px;
}

.about-intro-shell .about-gallery {
	flex: 0 0 48%;
	width: 48%;
}

.about-intro-media img {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 360px;
	object-fit: cover;
	border-radius: 20px;
	/* filter: grayscale(100%); */
	box-shadow: 0 18px 40px rgba(16, 36, 61, 0.14);
}

.about-intro-content {
	flex: 0 0 52%;
	width: 52%;
}

.about-intro-kicker {
	margin: 0 0 10px;
	font-size: 0.92rem;
	font-weight: 400;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: #2f8de6;
}

.about-intro-content h2 {
	margin: 0 0 18px;
	font-size: clamp(2rem, 3vw, 3rem);
	line-height: 1.15;
	color: #333;
	font-weight: 400;
}

.about-intro-content p {
	margin: 0;
	text-align: justify;
	line-height: 1.85;
	color: #4b596a;
}

.counter-section {
	padding: 24px 0 40px;
	background: #f4f6f8;
	color: #1a2332;
}

.about-values-section {
	width: 100%;
	padding: 60px 0 80px;
	background: #ffffff;
	position: relative;
}

.values-dark-shell {
	width: min(1200px, calc(100% - 48px));
	margin: 0 auto;
	padding: 80px 48px;
	background: radial-gradient(circle at 80% 50%, rgba(212, 153, 48, 0.12) 0%, transparent 60%), #002352;
	color: #ffffff;
	border-radius: 24px;
	position: relative;
	overflow: hidden;
	box-shadow: 0 20px 50px rgba(0, 35, 82, 0.15);
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	gap: 60px 80px;
	align-items: center;
}

.values-dark-shell::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(212, 153, 48, 0.2), transparent);
}

.values-dark-left {
	display: flex;
	flex-direction: column;
}

.values-kicker {
	font-size: 0.88rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: #d49930;
	margin-bottom: 12px;
}

.values-dark-title {
	font-size: clamp(2.2rem, 3.8vw, 3.2rem);
	color: #ffffff;
	margin: 0 0 20px 0;
	line-height: 1.15;
}

.values-dark-lead {
	font-size: 1.05rem;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.7);
	margin: 0;
}

.values-dark-right {
	display: flex;
	flex-direction: column;
	gap: 48px;
}

.value-dark-item {
	display: flex;
	gap: 28px;
	align-items: flex-start;
	transition: transform 0.3s ease;
}

.value-dark-item:hover {
	transform: translateX(8px);
}

.value-number {
	font-size: 3.5rem;
	line-height: 1;
	background: linear-gradient(135deg, #d49930 0%, #f5cb78 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	opacity: 0.8;
	transition: opacity 0.3s ease, filter 0.3s ease;
	font-family: 'Poppins', sans-serif;
}

.value-dark-item:hover .value-number {
	opacity: 1;
	filter: drop-shadow(0 0 8px rgba(212, 153, 48, 0.6));
}

.value-info {
	flex: 1;
}

.value-info h3 {
	margin: 0 0 12px 0;
	font-size: 1.4rem;
	color: #ffffff;
	transition: color 0.3s ease;
}

.value-dark-item:hover .value-info h3 {
	color: #d49930;
}

.value-info p {
	margin: 0;
	font-size: 1rem;
	line-height: 1.8;
	color: rgba(255, 255, 255, 0.75);
	text-align: justify;
	transition: color 0.3s ease;
}

.value-dark-item:hover .value-info p {
	color: rgba(255, 255, 255, 0.85);
}

.about-page-collage {
	width: min(100%, 580px) !important;
}

.highlight-blue {
	color: #2f8de6;
}

/* Custom About Page Collage positioning (flipped to match screenshot) */
.about-page-collage .about-collage__frame--main {
	inset: 0 0 12% 16%;
	z-index: 1;
}
.about-page-collage .about-collage__frame--top {
	top: 8%;
	left: 0;
	right: auto;
	width: 44%;
	height: 38%;
	z-index: 3;
	border: 6px solid rgba(255, 255, 255, 0.96);
	transform: rotate(-3deg);
}
.about-page-collage .about-collage__frame--bottom {
	left: 4%;
	bottom: 0;
	width: 40%;
	height: 34%;
	z-index: 2;
	border: 6px solid rgba(255, 255, 255, 0.96);
	transform: rotate(3deg);
}
.about-page-collage::before {
	content: '';
	position: absolute;
	inset: 6% 12% 6% 4%;
	border: 6px solid #0c2d4e;
	z-index: 0;
	pointer-events: none;
	border-radius: 4px;
}

/* Features Grid in About page */
.about-features-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
	margin-top: 28px;
	padding-top: 24px;
	border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.about-feature-item {
	display: flex;
	gap: 16px;
	align-items: flex-start;
}
.about-feature-icon {
	width: 44px;
	height: 44px;
	flex: 0 0 44px;
	border-radius: 50%;
	background: rgba(47, 141, 230, 0.1);
	color: #2f8de6;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.15rem;
	transition: transform 0.3s ease, background-color 0.3s ease;
}
.about-feature-item:hover .about-feature-icon {
	transform: scale(1.08);
	background-color: #2f8de6;
	color: #ffffff;
}
.about-feature-text h4 {
	margin: 0 0 6px;
	font-size: 1rem;
	font-weight: 400;
	color: #0c2d4e;
}
.about-feature-text p {
	margin: 0;
	font-size: 0.88rem;
	line-height: 1.5;
	color: #556677;
}
.golden {
	color : #d49930
}
@media (max-width: 768px) {
	.about-features-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}
}

.counter-shell {
	width: min(1120px, calc(100% - 48px));
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
}

.counter-item {
	padding: 28px 20px;
	text-align: center;
	background: #ffffff;
	border-radius: 18px;
	box-shadow: 0 16px 34px rgba(16, 36, 61, 0.08);
	border: 1px solid rgba(47, 141, 230, 0.08);
}

.counter-item h3 {
	margin: 0 0 10px;
	font-size: clamp(2rem, 4vw, 3rem);
	line-height: 1;
	color: #2f8de6;
}

.counter-item p {
	margin: 0;
	font-size: 0.98rem;
	line-height: 1.6;
	color: #4b596a;
}

@media (max-width: 900px) {
	.about-intro-section {
		padding: 24px 0;
	}

	.about-intro-shell {
		flex-direction: column;
	}

	.about-values-shell {
		flex-direction: column;
		gap: 40px;
	}

	.about-intro-media,
	.about-intro-shell .about-gallery,
	.about-intro-content {
		flex: 1 1 100%;
		width: 100%;
	}

	.about-intro-media img {
		min-height: 300px;
	}

	.counter-shell {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 600px) {
	.counter-shell {
		grid-template-columns: 1fr;
	}

	.counter-item {
		padding: 24px 18px;
	}
}

html {
	scroll-behavior: smooth;
}

/* FAQ section styles */
.faq-section {
	background: #ffffff;
	color: #17324f;
	padding-top: 60px;
	padding-bottom: 60px;
}

.faq-shell {
	width: min(900px, calc(100% - 48px)); /* centered and moderately narrow for optimal reading */
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 32px;
}

.faq-section-title {
	text-align: center;
	font-size: clamp(1.8rem, 3.2vw, 2.4rem);
	font-weight: 400;
	color: #0c2d4e;
	margin: 0 0 10px 0;
	letter-spacing: 0.05em;
}

.faq-list {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.faq-item {
	border-radius: 8px;
	background: #002352; /* Premium corporate deep blue */
	border: 1px solid rgba(255, 255, 255, 0.08);
	overflow: hidden;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
	transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.faq-item:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(15, 66, 117, 0.15);
}

.faq-question {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	text-align: left;
	padding: 20px 24px;
	font-weight: 600;
	border: 0;
	background: transparent;
	cursor: pointer;
	color: #ffffff;
	font-size: 1.05rem;
	line-height: 1.4;
}

.faq-question__text {
	flex: 1 1 auto;
}

.faq-question__toggle {
	width: 30px;
	height: 30px;
	flex: 0 0 30px;
	border-radius: 50%;
	border: 1.5px solid rgba(255, 255, 255, 0.6);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #ffffff;
	font-size: 0.8rem;
	transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.3s ease, background-color 0.3s ease;
}

.faq-question:hover .faq-question__toggle {
	border-color: #d49930;
	background-color: rgba(212, 153, 48, 0.15);
	color: #d49930;
}

.faq-answer {
	padding: 0 24px;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), padding 0.35s cubic-bezier(0.4, 0, 0.2, 1);
	color: #e2e8f0; /* Soft light text color for high legibility */
	font-size: 0.96rem;
	line-height: 1.6;
}

.faq-answer p {
	margin: 0;
	padding-bottom: 20px;
	text-align: justify;
}

.faq-item.open {
	background-color: #0c3660; /* Darker blue when open */
}

.faq-item.open .faq-answer {
	max-height: 300px;
	padding: 0 24px 20px 24px;
}

.faq-item.open .faq-question__toggle {
	transform: rotate(180deg);
	border-color: #ffffff;
	background-color: rgba(255, 255, 255, 0.15);
}

@media (max-width: 600px) {
	.faq-question {
		padding: 16px 18px;
		font-size: 0.98rem;
	}
	.faq-answer {
		padding: 0 18px;
		font-size: 0.92rem;
	}
	.faq-item.open .faq-answer {
		padding: 0 18px 16px 18px;
	}
	.faq-question__toggle {
		width: 26px;
		height: 26px;
		flex: 0 0 26px;
		font-size: 0.75rem;
	}
}

body {
	margin: 0;
	font-family: 'Poppins', sans-serif;
	color: #f4f7fb;
	background: #07111d;
}

a {
	color: inherit;
	text-decoration: none;
}

button {
	font: inherit;
}

.site-header {
	position: fixed;
	top: 24px;
	left: 0;
	right: 0;
	z-index: 50;
	transition: top 0.25s ease, transform 0.25s ease;
}

.header-shell {
	width: min(1220px, calc(100% - 48px));
	margin: 0 auto;
	min-height: 76px;
	padding: 14px 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	background: rgba(7, 17, 29, 0.10);
	color: #ffffff;
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	border: 1px solid rgba(255, 255, 255, 0.14);
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
	transition: padding 0.25s ease, border-radius 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
	border-radius: 999px;
	overflow: hidden;
}

.site-header.is-sticky {
	top: 0;
	background: #10426E;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
}

.site-header.is-sticky .header-shell {
	padding: 1px 0px;
	border-radius: 0;
	background: transparent;
	color: #ffffff;
	border-color: transparent;
	box-shadow: none;
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	flex: 0 0 auto;
	min-width: 0;
}

/* Header logo image */
.brand-logo {
	width: 170px;
	height: auto;
	display: block;
	object-fit: contain;
	background-color: #fff;
	padding: 0;
	border-radius: 10px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.brand-logo:hover {
	transform: translateY(-4px) scale(1.02);
	box-shadow: 0 8px 30px rgba(47, 141, 230, 0.2);
}

.site-header.is-sticky .brand-logo {
	width: 140px;
	height: auto;
	padding: 0;
}

.brand-mark {
	width: 52px;
	height: 52px;
	flex: 0 0 auto;
	display: grid;
	place-items: center;
}

.brand-mark svg {
	width: 100%;
	height: 100%;
	display: block;
}

.brand-text {
	display: flex;
	flex-direction: column;
	line-height: 1.05;
	white-space: nowrap;
}

.brand-text strong {
	font-size: 30px;
	font-weight: 600;
	letter-spacing: 0.03em;
	color: currentColor;
}

.brand-text span {
	margin-top: 4px;
	font-size: 0.62rem;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	color: currentColor;
	opacity: 0.8;
}

.main-nav {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 28px;
	flex: 1 1 auto;
	font-size: 16px;
	font-weight: 600;
}

.main-nav a {
	position: relative;
	padding: 6px 0;
	color: currentColor;
	white-space: nowrap;
}

.main-nav a::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 2px;
	background: currentColor;
	opacity: 0.85;
	transform: scaleX(0);
	transform-origin: center;
	transition: transform 0.2s ease;
}

.main-nav a:hover::after {
	transform: scaleX(1);
}

.header-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 18px;
	border-radius: 8px;
	background: #d49930;
	border: 1px solid #d49930;
	color: #ffffff;
	font-size: 0.86rem;
	font-weight: 700;
	letter-spacing: 0.02em;
	white-space: nowrap;
	transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.3s ease;
	flex: 0 0 auto;
	box-shadow: 0 0 15px rgba(212, 153, 48, 0.75), 0 0 30px rgba(212, 153, 48, 0.4);
}

.header-cta:hover {
	transform: translateY(-2px);
	background: #c58c27;
	border-color: #c58c27;
	color: #fff;
	box-shadow: 0 0 25px rgba(212, 153, 48, 0.95), 0 0 45px rgba(212, 153, 48, 0.6);
}

.mobile-menu-btn {
	display: none;
	flex-direction: column;
	gap: 5px;
	border: none;
	background: none;
	cursor: pointer;
	padding: 6px;
}

.mobile-menu-btn span {
	width: 26px;
	height: 3px;
	background: currentColor;
	border-radius: 2px;
	transition: all 0.3s ease;
}

.nav-caret {
	font-size: 0.78em;
	margin-left: 2px;
	vertical-align: middle;
}

.mobile-menu-btn.is-active span:nth-child(1) {
	transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-btn.is-active span:nth-child(2) {
	opacity: 0;
}

.mobile-menu-btn.is-active span:nth-child(3) {
	transform: rotate(-45deg) translate(8px, -8px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
	.header-shell {
		min-height: 60px;
		width: calc(100% - 24px);
		padding: 8px 16px;
		gap: 12px;
		border-radius: 20px;
	}

	/* allow dropdown to escape rounded header shell on small screens */
	.header-shell {
		overflow: visible;
	}

	.site-header.is-sticky .header-shell {
		padding: 8px 0px;
	}

	.brand-logo {
		width: 130px;
		height: auto;
		padding: 0;
	}

	.site-header.is-sticky .brand-logo {
		width: 110px;
		height: auto;
		padding: 0;
	}

	.main-nav {
		display: none;
	}

	.header-cta {
		display: none;
	}

	.mobile-menu-btn {
		display: flex;
		flex-direction: column;
		gap: 5px;
		border: none;
		background: none;
		cursor: pointer;
		padding: 6px;
	}

	.mobile-menu-btn span {
		width: 26px;
		height: 3px;
		background: currentColor;
		border-radius: 2px;
		transition: all 0.3s ease;
	}

	/* Show mobile nav when toggled */
	.main-nav.is-open {
		display: flex;
		flex-direction: column;
		gap: 12px;
		position: absolute;
		left: 16px;
		right: 16px;
		top: calc(100% + 8px);
		background: rgba(7, 17, 29, 0.95);
		padding: 14px;
		border-radius: 12px;
		box-shadow: 0 12px 34px rgba(0,0,0,0.35);
		z-index: 60;
	}

	.main-nav.is-open a {
		padding: 8px 6px;
		text-align: left;
		border-radius: 8px;
		background: transparent;
	}

	.slide {
		padding: 110px 24px 60px;
	}

	.slide-inner {
		width: 100%;
	}

	.eyebrow {
		font-size: 0.7rem;
		letter-spacing: 0.2em;
	}

	.slide h1 {
		font-size: clamp(1.8rem, 5vw, 2.8rem);
	}

	.hero-copy {
		font-size: clamp(0.9rem, 1.2vw, 1rem);
	}

	.slider-prev,
	.slider-next {
		width: 44px;
		height: 44px;
	}
}

@media (max-width: 480px) {
	.header-shell {
		min-height: 56px;
		width: calc(100% - 16px);
		padding: 6px 12px;
	}

	.brand-mark {
		width: 40px;
		height: 40px;
	}

	.mobile-menu-btn {
		gap: 4px;
		padding: 4px;
	}

	.mobile-menu-btn span {
		width: 24px;
		height: 2.5px;
	}

	.slide {
		padding: 100px 16px 50px;
	}

	.eyebrow {
		font-size: 0.65rem;
		margin-bottom: 12px;
	}

	.slide h1 {
		font-size: clamp(1.6rem, 4vw, 2.4rem);
	}

	.hero-copy {
		font-size: clamp(0.85rem, 1vw, 0.95rem);
	}

	.hero-actions {
		gap: 10px;
		margin-top: 20px;
	}

	.button {
		min-width: 140px;
		padding: 12px 18px;
		font-size: 0.9rem;
	}

	.slider-prev,
	.slider-next {
		width: 40px;
		height: 40px;
	}
}

.hero-slider {
	position: relative;
	min-height: 90vh;
	overflow: hidden;
	background: #09111b;
}

.slides {
	position: relative;
	min-height: 90vh;
}

.slide {
	position: absolute;
	inset: 0;
	display: grid;
	align-items: center;
	padding: 140px 24px 72px;
	background: var(--slide-bg);
	background-size: cover;
	background-position: center;
	opacity: 0;
	transform: scale(1.03);
	transition: opacity 0.7s ease, transform 0.7s ease;
}

.slide.is-active {
	opacity: 1;
	transform: scale(1);
	z-index: 1;
}

.slide::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.28));
}

.slide-inner {
	position: relative;
	z-index: 1;
	width: min(920px, 100%);
	margin: 0 auto;
	text-align: center;
}

.eyebrow {
	margin: 0 0 18px;
	font-size: 0.82rem;
	font-weight: 400;
	letter-spacing: 0.3em;
	color: rgba(255, 255, 255, 0.85);
}

.slide h1 {
	margin: 0;
	font-size: clamp(2.6rem, 5vw, 55px);
	line-height: 1.05;
	font-weight: 400;
	text-wrap: balance;
}

.hero-copy {
	max-width: 760px;
	margin: 18px auto 0;
	font-size: clamp(1rem, 1.4vw, 1.12rem);
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.84);
}

.hero-actions {
	display: flex;
	gap: 14px;
	justify-content: center;
	flex-wrap: wrap;
	margin-top: 30px;
}

.button {
	min-width: 170px;
	padding: 14px 22px;
	border-radius: 8px;
	font-weight: 700;
	letter-spacing: 0.02em;
	transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
	transform: translateY(-2px);
}

.button-primary {
	background: #2f8de6;
	color: #fff;
}

.button-primary:hover {
	background: linear-gradient(135deg, #d49930 0%, #f5cb78 100%);
	color: #fff;
	box-shadow: 0 6px 20px rgba(212, 153, 48, 0.4);
}

.button-secondary {
	border: 1px solid rgba(255, 255, 255, 0.38);
	color: #fff;
	background: rgba(255, 255, 255, 0.06);
	backdrop-filter: blur(8px);
}

.button-secondary:hover {
	border-color: #d49930;
	background: rgba(212, 153, 48, 0.15);
	color: #f5cb78;
	box-shadow: 0 6px 20px rgba(212, 153, 48, 0.2);
}

.slider-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 2;
	border: 0;
	background: rgba(255, 255, 255, 0.08);
	color: #fff;
	width: 54px;
	height: 54px;
	border-radius: 50%;
	backdrop-filter: blur(8px);
	cursor: pointer;
	transition: background 0.2s ease, transform 0.2s ease;
}

.slider-nav:hover {
	background: #d49930;
	box-shadow: 0 4px 14px rgba(212, 153, 48, 0.4);
}

.slider-prev {
	left: 24px;
}

.slider-next {
	right: 24px;
}

.slider-dots {
	position: absolute;
	left: 50%;
	bottom: 34px;
	transform: translateX(-50%);
	z-index: 2;
	display: flex;
	gap: 10px;
}

.dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	border: 0;
	background: rgba(255, 255, 255, 0.42);
	cursor: pointer;
	transition: transform 0.2s ease, background 0.2s ease;
}

.dot:hover {
	background: #d49930;
	transform: scale(1.1);
}

.dot.is-active {
	background: #fff;
	transform: scale(1.15);
}

.content-section {
	padding: 30px 24px;
	background: linear-gradient(180deg, #ffffff 0%, #ffffff 100%);
}

#about {
	background: #ffffff;
	padding: 60px 0;
}

#about .about-description {
	color: #4a5f7f;
}

#about .section-label {
	color: #2f8de6;
}

#about h2 {
	color: #333;
	font-weight: 400;
}

.services-section {
	background: linear-gradient(180deg, #e1effd 0%, #dde8f7 100%);
	color: #17324f;
}

.services-shell {
	width: min(1120px, calc(100% - 48px));
	margin: 0 auto;
}
.about-heading {
	font-size: clamp(2rem, 3.8vw, 2.6rem) !important;
	color: #002352;
	font-weight: 400;
	line-height: 1.25;
	margin: 0 0 16px 0 !important;
	text-align: left;
	padding: 0 !important;
	font-family: 'Poppins', sans-serif;
}

.about-heading span {
	font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
	font-style: italic;
	color: #164373;
	font-weight: 400;
	display: inline-block;
	margin-top: 4px;
}

.about-heading::after {
	content: '';
	display: block;
	width: 48px;
	height: 3.5px;
	background-color: #0c2d4e;
	margin-top: 18px;
	margin-bottom: 24px;
	border-radius: 2px;
}
.services-heading {
	max-width: 760px;
	margin: 0 auto 30px;
	text-align: center;
}

.services-heading h2 {
	margin: 0;
	font-size: clamp(1.8rem, 3vw, 2.8rem);
	line-height: 1.12;
	color: #333;
}

.services-intro {
	margin: 14px auto 0;
	max-width: 620px;
	font-size: 1rem;
	line-height: 1.8;
	color: #55708d;
}

.service-carousel {
	position: relative;
	margin-top: 18px;
}

.service-viewport {
	overflow: hidden;
	border-radius: 30px;
}

.service-track {
	display: flex;
	gap: 24px;
	will-change: transform;
	transition: transform 0.55s ease;
	padding: 8px 2px 6px;
}

.service-card {
	position: relative;
	flex: 0 0 calc((100% - 48px) / 3);
	min-height: 340px;
	padding: 30px 28px 26px;
	border-radius: 26px;
	background: #ffffff;
	border: 1px solid rgba(47, 141, 230, 0.1);
	box-shadow: 0 16px 38px rgba(16, 36, 61, 0.09);
	color: #17324f;
	overflow: hidden;
	transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.service-card::after {
	content: '';
	position: absolute;
	inset: auto -60px -60px auto;
	width: 180px;
	height: 180px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(47, 141, 230, 0.12), rgba(47, 141, 230, 0));
	pointer-events: none;
}

.service-card:hover,
.service-card:focus-within {
	transform: translateY(-8px);
	box-shadow: 0 24px 48px rgba(16, 36, 61, 0.14);
	border-color: rgba(47, 141, 230, 0.28);
}

/* .service-card--featured {
	background: linear-gradient(135deg, #2f8de6, #1c5fbf);
	color: #ffffff;
	border-color: rgba(255, 255, 255, 0.14);
} */

/* .service-card--featured::after {
	background: radial-gradient(circle, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0));
} */

.service-arrow {
	position: absolute;
	top: 20px;
	right: 20px;
	width: 40px;
	height: 40px;
	display: grid;
	place-items: center;
	border-radius: 50%;
	background: #2f8de6;
	color: #ffffff;
	box-shadow: 0 12px 20px rgba(47, 141, 230, 0.22);
	opacity: 0;
	transform: translateY(-6px) scale(0.9);
	transition: opacity 0.22s ease, transform 0.22s ease;
	pointer-events: none;
	z-index: 2;
}

.service-arrow span {
	font-size: 1rem;
	line-height: 1;
	font-weight: 700;
}

.service-card:hover .service-arrow,
.service-card:focus-within .service-arrow {
	opacity: 1;
	transform: translateY(0) scale(1);
}

.service-icon {
	width: 68px;
	height: 68px;
	display: grid;
	place-items: center;
	border-radius: 50%;
	background: #e8f2ff;
	color: #2f8de6;
	margin-bottom: 30px;
}

.service-card--featured .service-icon {
	background: rgba(255, 255, 255, 0.16);
	color: #ffffff;
}

.service-icon svg {
	width: 32px;
	height: 32px;
}

.service-card h3 {
	margin: 0 0 14px;
	font-size: 1.35rem;
	line-height: 1.22;
	font-weight: 400;
	text-wrap: balance;
	color:#333;
}

.service-card p {
	margin: 0;
	font-size: 0.98rem;
	line-height: 1.75;
	color: inherit;
	opacity: 0.9;
}

.service-index {
	position: absolute;
	left: 28px;
	right: 28px;
	bottom: 24px;
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	color: inherit;
}

.service-index span {
	flex: 1;
	/* height: 1px;
	background: currentColor;
	opacity: 0.45; */
}

.service-controls {
	display: flex;
	justify-content: flex-end;
	gap: 12px;
	margin-top: 20px;
}

.service-control {
	width: 56px;
	height: 56px;
	border: 0;
	border-radius: 50%;
	background: #2f8de6;
	color: #ffffff;
	font-size: 1.7rem;
	line-height: 1;
	box-shadow: 0 14px 26px rgba(47, 141, 230, 0.25);
	cursor: pointer;
	transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.service-control:hover {
	background: #d49930;
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 18px 30px rgba(212, 153, 48, 0.4);
}

.service-control:focus-visible {
	outline: 3px solid rgba(47, 141, 230, 0.28);
	outline-offset: 3px;
}

.blog-section {
	background: linear-gradient(180deg, #eef5fb 0%, #e1ebf7 100%);
	color: #17324f;
	padding-top: 40px 24px;
	padding-bottom: 72px;
}

.cta-section {
	padding: 0px;
	background: #ffffff;
}

.cta-panel {
	position: relative;
	width: 100%;
	margin: 0;
	min-height: 380px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 80px 24px;
	border-radius: 0;
	overflow: hidden;
	background-image: url('assets/img/office_interior.jpg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-attachment: fixed;
	box-shadow: none;
}

.cta-panel::before {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(10, 37, 64, 0.82); /* Semi-transparent corporate blue overlay */
	pointer-events: none;
	z-index: 1;
}

.cta-panel__content {
	position: relative;
	z-index: 2;
	width: min(1120px, calc(100% - 48px));
	margin: 0 auto;
	color: #ffffff;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 28px;
}

.cta-label {
	color: rgba(255, 255, 255, 0.86);
	margin-bottom: 14px;
}

.cta-panel h2 {
	margin: 0;
	font-size: clamp(1.8rem, 3.2vw, 2.5rem);
	line-height: 1.25;
	font-weight: 400;
	text-wrap: balance;
	max-width: 850px;
}

.cta-panel__copy {
	max-width: 620px;
	margin: 16px 0 0;
	font-size: 1.02rem;
	line-height: 1.75;
	color: rgba(255, 255, 255, 0.88);
}

.cta-panel__actions {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 14px;
	margin-top: 10px;
	z-index: 2;
}

.cta-panel__content h2 {
	flex: 1 1 auto;
	margin: 0;
}

@media (max-width: 900px) {
	.cta-panel__content {
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	.cta-panel__content h2 {
		margin-bottom: 0px;
	}

	.cta-panel__actions {
		width: auto;
		justify-content: center;
		margin-top: 0px;
	}
}

.cta-panel__button {
	background-color: #2f8de6;
	color: #ffffff;
	font-weight: 600;
	padding: 12px 28px;
	border-radius: 6px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	font-size: 0.95rem;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	box-shadow: 0 4px 14px rgba(47, 141, 230, 0.3);
	transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
	text-decoration: none;
	min-width: 160px;
	justify-content: center;
}

.cta-panel__button:hover {
	background: linear-gradient(135deg, #d49930 0%, #f5cb78 100%);
	border-color: #d49930;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(212, 153, 48, 0.4);
}

.blog-shell {
	width: min(1120px, calc(100% - 48px));
	margin: 0 auto;
}

.blog-heading {
	max-width: 760px;
	margin: 0 auto 34px;
	text-align: center;
}

.blog-heading h2 {
	margin: 0;
	font-size: clamp(2rem, 3.2vw, 3rem);
	line-height: 1.06;
	color: #333;
	font-weight: 400;
}

.blog-heading p {
	margin: 12px 0 0;
	font-size: 1rem;
	line-height: 1.7;
	color: #5d6e83;
}

.blog-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
	align-items: stretch;
}

.blog-card {
	display: flex;
	flex-direction: column;
	background: #ffffff;
	border: 1px solid #e6ebf2;
	box-shadow: 0 16px 34px rgba(20, 39, 64, 0.09);
	overflow: hidden;
	border-radius: 20px;
	transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.blog-card:hover,
.blog-card:focus-within {
	transform: translateY(-6px);
	box-shadow: 0 22px 46px rgba(20, 39, 64, 0.14);
	border-color: rgba(47, 94, 162, 0.18);
}

.blog-card__media {
	position: relative;
	aspect-ratio: 1.28;
	overflow: hidden;
	background: #d9e4ef;
}

.blog-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.blog-card__date {
	position: absolute;
	top: 10px;
	left: 10px;
	min-width: 40px;
	padding: 6px 5px 5px;
	background: #ffffff;
	color: #4c596c;
	text-align: center;
	font-weight: 700;
	line-height: 1;
	box-shadow: 0 8px 18px rgba(10, 22, 36, 0.14);
	z-index: 2;
}

.blog-card__date strong {
	display: block;
	font-size: 1.05rem;
	font-weight: 700;
}

.blog-card__date span {
	display: block;
	margin-top: 4px;
	font-size: 0.68rem;
	letter-spacing: 0.1em;
}

.blog-card__badge {
	position: absolute;
	left: 50%;
	bottom: 0;
	transform: translateX(-50%);
	padding: 5px 14px 4px;
	background: #102b57;
	color: #ffffff;
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	z-index: 2;
}

.blog-card__body {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 12px;
	padding: 18px 22px 22px;
	flex: 1;
}

.blog-card__body h3 {
	margin: 0;
	font-size: 1.12rem;
	line-height: 1.38;
	font-weight: 400;
	color: #333;
	text-wrap: balance;
}

.blog-card__meta {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	flex-wrap: wrap;
	font-size: 0.92rem;
	color: #8a97a8;
}

.blog-card__author {
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.blog-card__author svg,
.blog-card__share svg {
	width: 16px;
	height: 16px;
	flex: 0 0 auto;
	color: #b0bcc9;
}

.blog-card__share {
	display: inline-grid;
	place-items: center;
	width: 18px;
	height: 18px;
	color: #b0bcc9;
}

.blog-card__body p {
	margin: 0;
	font-size: 0.96rem;
	line-height: 1.75;
	color: #4f627a;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.blog-card__link {
	margin-top: auto;
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.03em;
	color: #17324f;
	text-decoration: none;
}

.blog-card__link:hover,
.blog-card__link:focus-visible {
	color: #2f8de6;
}

.showcase-section {
	background: linear-gradient(180deg, #eef5fb 0%, #e1ebf7 100%);
}

.showcase-shell {
	width: min(1120px, calc(100% - 48px));
	margin: 0 auto;
}

.showcase-heading {
	max-width: 760px;
	margin: 0 auto 34px;
	text-align: center;
}

.showcase-heading h2 {
	margin: 0;
	font-size: clamp(2rem, 3.2vw, 3rem);
	line-height: 1.08;
	color: #333;
	font-weight: 400;
}

.showcase-heading p {
	margin: 12px 0 0;
	font-size: 1rem;
	line-height: 1.75;
	color: #2F8DE6;
}

.showcase-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
	align-items: stretch;
}

.showcase-card {
	position: relative;
	min-height: 420px;
	overflow: hidden;
	border-radius: 28px;
	background: #10253f;
	box-shadow: 0 18px 42px rgba(17, 38, 63, 0.16);
	transform: translateY(0) scale(1);
	transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.showcase-card::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(7, 15, 26, 0.1), rgba(7, 15, 26, 0.72));
	z-index: 1;
	opacity: 0.9;
	transition: opacity 0.35s ease;
}

.showcase-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transform: scale(1);
	transition: transform 0.45s ease;
}

.showcase-card__overlay {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 2;
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding: 24px;
	color: #ffffff;
	transform: translateY(calc(100% - 96px));
	transition: transform 0.45s ease;
}

.showcase-card__label {
	display: inline-flex;
	align-self: flex-start;
	padding: 6px 10px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.16);
	backdrop-filter: blur(10px);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.showcase-card h3 {
	margin: 0;
	font-size: 1.35rem;
	line-height: 1.15;
	text-wrap: balance;
}

.showcase-card p {
	margin: 0;
	font-size: 0.95rem;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.84);
	opacity: 0;
	transform: translateY(10px);
	transition: opacity 0.35s ease, transform 0.35s ease;
}

.showcase-card a {
	align-self: flex-start;
	margin-top: 4px;
	color: #ffffff;
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-decoration: none;
	text-transform: uppercase;
	opacity: 0;
	transform: translateY(10px);
	transition: opacity 0.35s ease, transform 0.35s ease, color 0.2s ease;
}

.showcase-card:hover,
.showcase-card:focus-within {
	transform: translateY(-10px);
	box-shadow: 0 26px 54px rgba(17, 38, 63, 0.22);
}

.showcase-card:hover::before,
.showcase-card:focus-within::before {
	opacity: 1;
}

.showcase-card:hover img,
.showcase-card:focus-within img {
	transform: scale(1.08);
}

.showcase-card:hover .showcase-card__overlay,
.showcase-card:focus-within .showcase-card__overlay {
	transform: translateY(0);
}

.showcase-card:hover p,
.showcase-card:focus-within p,
.showcase-card:hover a,
.showcase-card:focus-within a {
	opacity: 1;
	transform: translateY(0);
}

.showcase-card a:hover,
.showcase-card a:focus-visible {
	color: #9fd0ff;
}

.review-section {
	background: linear-gradient(180deg, #eef5fb 0%, #e1ebf7 100%);
	color: #17324f;
	overflow: hidden;
}

.review-shell {
	width: min(1120px, calc(100% - 48px));
	margin: 0 auto;
}

.review-heading {
	max-width: 760px;
	margin: 0 auto 28px;
	text-align: center;
}

.review-heading h2 {
	margin: 0;
	font-size: clamp(2rem, 3.3vw, 3rem);
	line-height: 1.08;
	color: #333;
	font-weight: 400;
}

.review-heading p {
	margin: 12px 0 0;
	font-size: 1rem;
	line-height: 1.75;
	color: #2F8DE6;
}

.review-controls {
	display: flex;
	gap: 10px;
	justify-content: center;
	flex: 0 0 auto;
}

.review-controls--left {
	justify-content: flex-start;
}

.review-controls--right {
	justify-content: flex-end;
}

.review-control {
	width: 46px;
	height: 46px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	appearance: none;
	-webkit-appearance: none;
	box-sizing: border-box;
	border: 1px solid rgba(47, 94, 162, 0.16);
	border-radius: 50%;
	background: #ffffff;
	color: #17324f;
	font-size: 35px;
	line-height: 1;
	box-shadow: 0 12px 24px rgba(20, 39, 64, 0.08);
	cursor: pointer;
	transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, color 0.22s ease;
}

.review-control span {
	display: block;
	line-height: 1;
	transform: translateY(-1px);
}

.review-control:hover,
.review-control:focus-visible {
	transform: translateY(-2px);
	box-shadow: 0 16px 30px rgba(212, 153, 48, 0.25);
	border-color: rgba(212, 153, 48, 0.5);
	color: #d49930;
	outline: none;
}

.review-marquee {
	position: relative;
	overflow: hidden;
	min-width: 0;
}

.review-carousel-row {
	display: grid;
	grid-template-columns: 52px minmax(0, 1fr) 52px;
	gap: 14px;
	align-items: center;
}

.review-track {
	display: flex;
	width: max-content;
	will-change: transform;
	transition: transform 520ms ease;
}

.review-group {
	display: flex;
	gap: 24px;
	padding-right: 24px;
}

.review-card {
	flex: 0 0 var(--review-card-width, 312px);
	max-width: var(--review-card-width, 312px);
	display: flex;
	flex-direction: column;
	gap: 16px;
	padding: 24px;
	border-radius: 26px;
	background: #ffffff;
	border: 1px solid rgba(47, 94, 162, 0.1);
	transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
}

.review-card:hover,
.review-card:focus-within {
	transform: translateY(-6px);
	border-color: rgba(47, 94, 162, 0.22);
	background: #ffffff;
	box-shadow: none;
}

.review-card__top {
	display: flex;
	align-items: center;
	gap: 14px;
}

.review-card__top img {
	width: 54px;
	height: 54px;
	border-radius: 50%;
	object-fit: cover;
	flex: 0 0 auto;
	box-shadow: 0 10px 22px rgba(0, 0, 0, 0.2);
}

.review-card__top h3 {
	margin: 0;
	font-size: 1rem;
	line-height: 1.2;
	color: #333;
}

.review-card__top p {
	margin: 4px 0 0;
	font-size: 0.82rem;
	color: #6e7f94;
}

.review-card__stars {
	font-size: 25px;
	letter-spacing: 0.16em;
	color: #d69a22;
}

.review-card__quote {
	margin: 0;
	font-size: 0.96rem;
	line-height: 1.75;
	color: #4f627a;
	text-align: justify;
}

@media (max-width: 1080px) {
	.blog-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.showcase-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.review-shell {
		width: min(1120px, calc(100% - 32px));
	}

	.review-heading {
		text-align: center;
	}

	.review-carousel-row {
		grid-template-columns: 46px minmax(0, 1fr) 46px;
		gap: 12px;
	}

	.review-card {
		max-width: var(--review-card-width, 300px);
	}
}

@media (max-width: 720px) {
	.blog-section {
		padding-top: 44px;
		padding-bottom: 58px;
	}

	.blog-shell {
		width: min(1120px, calc(100% - 32px));
	}

	.blog-grid {
		grid-template-columns: 1fr;
	}

	.showcase-shell {
		width: min(1120px, calc(100% - 32px));
	}

	.showcase-grid {
		grid-template-columns: 1fr;
	}

	.showcase-card {
		min-height: 360px;
	}

	.showcase-card__overlay {
		transform: translateY(0);
	}

	.showcase-card p,
	.showcase-card a {
		opacity: 1;
		transform: translateY(0);
	}

	.review-shell {
		width: min(1120px, calc(100% - 32px));
	}

	.review-heading {
		text-align: center;
	}

	.review-carousel-row {
		display: block;
		position: relative;
		padding-bottom: 72px;
		gap: 0;
	}

	.review-marquee {
		width: 100%;
	}

	.review-controls {
		position: absolute;
		left: 50%;
		bottom: 0;
		transform: translateX(-50%);
		width: max-content;
	}

	.review-controls--left {
		transform: translateX(calc(-100% - 10px));
	}

	.review-controls--right {
		transform: translateX(10px);
	}

	.review-card {
		max-width: var(--review-card-width, 280px);
	}

	.review-card__quote {
		font-size: 0.94rem;
	}

	.blog-card__body {
		padding-left: 18px;
		padding-right: 18px;
	}
}

.content-section.alt {
	background: linear-gradient(180deg, #081624, #0c1724);
}

.section-card {
	width: min(980px, 100%);
	margin: 0 auto;
	padding: 42px 36px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 28px;
	background: rgba(255, 255, 255, 0.03);
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.section-label {
	/* margin: 0 0 14px; */
	font-size: 0.78rem;
	font-weight: 400;
	letter-spacing: 0.28em;
	color: #6fb2ff;
	text-transform: uppercase;
}

.section-card h2 {
	margin: 0;
	font-size: clamp(1.8rem, 3vw, 2.6rem);
	line-height: 1.15;
}

.section-card p:last-child {
	margin-bottom: 0;
}

.section-card p {
	max-width: 720px;
	margin-top: 16px;
	line-height: 1.8;
	color: rgba(244, 247, 251, 0.78);
}

.about-container {
	width: min(1120px, calc(100% - 48px));
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: 60px;
	align-items: center;
}

.about-gallery {
	position: relative;
	height: 100%;
	display: flex;
	align-items: center; /* vertical center */
	/* justify-content: center; */
}

.about-collage {
	position: relative;
	width: min(100%, 520px);
	aspect-ratio: 0.92;
	/* margin: 0 auto; */
	isolation: isolate;
}

.about-collage__frame {
	position: absolute;
	overflow: hidden;
	border-radius: 22px;
	box-shadow: 0 16px 36px rgba(16, 36, 61, 0.12);
	background: #d8e4ef;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-collage__frame:hover {
	transform: translateY(-2px);
	box-shadow: 0 20px 42px rgba(16, 36, 61, 0.16);
}

.about-collage__frame img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.about-collage__frame--main {
	inset: 0 20% 8% 0;
	z-index: 1;
}

.about-collage__frame--top {
	top: 6%;
	right: 2%;
	width: 40%;
	height: 38%;
	z-index: 3;
	border: 6px solid rgba(255, 255, 255, 0.96);
	transform: rotate(3deg);
}

.about-collage__frame--bottom {
	left: 6%;
	bottom: 0;
	width: 36%;
	height: 31%;
	z-index: 2;
	border: 6px solid rgba(255, 255, 255, 0.96);
	transform: rotate(-3deg);
}

/* .about-collage__line {
	position: absolute;
	left: 0;
	bottom: 4%;
	z-index: 4;
	width: 42%;
	height: 4px;
	border-radius: 999px;
	background: linear-gradient(90deg, rgba(47, 141, 230, 0.95), rgba(47, 141, 230, 0.15));
} */

.gallery-masonry {
	display: flex;
	gap: 24px;
	align-items: stretch;
	height: 100%;
}

.gallery-left {
	flex: 1;
	height: 100%;
	display: flex;
	align-items: stretch;
}

.gallery-item-main {
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	height: 100%;
}

.gallery-item-main {
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.gallery-item-main:hover {
	transform: translateY(-6px);
	box-shadow: 0 18px 42px rgba(47, 141, 230, 0.22);
}

.gallery-item-main img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
}
}

.gallery-item {
	border-radius: 14px;
	overflow: hidden;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	flex: 1;
}

.gallery-item:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 28px rgba(47, 141, 230, 0.2);
}

.gallery-item img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
}

.gallery-item-top {
	margin-bottom: -12px;
	z-index: 3;
	position: relative;
}

.gallery-item-middle {
	margin-bottom: -12px;
	z-index: 2;
	position: relative;
}

.gallery-item-bottom {
	z-index: 1;
	position: relative;
}

.about-content {
	display: flex;
	flex-direction: column;
	/* gap: 16px; */
}

.about-description {
	font-size: 1rem;
	line-height: 1.8;
	color: rgba(244, 247, 251, 0.82);
	margin: 0 0 8px;
	text-align: justify;
}

#about .about-description {
	color: #4a5f7f;
}

.about-description:first-of-type {
	margin-top: 12px;
}

.cta-button {
	display: inline-flex;
	align-items: center;
	width: fit-content;
	padding: 14px 28px;
	background: #002352;
	color: #fff;
	border-radius: 8px;
	font-weight: 700;
	font-size: 0.95rem;
	letter-spacing: 0.02em;
	transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
	margin-top: 12px;
	gap: 8px;
}

.cta-button:hover {
	background: #d49930;
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(212, 153, 48, 0.4);
}

/* Footer */
.site-footer {
	background: radial-gradient(circle at 80% 20%, rgba(47, 141, 230, 0.08) 0%, transparent 60%),
	            radial-gradient(circle at 10% 80%, rgba(16, 66, 110, 0.08) 0%, transparent 60%),
	            #07111d;
	color: #cbd5e1;
	padding: 48px 24px 24px;
	position: relative;
	overflow: hidden;
	font-family: 'Poppins', sans-serif;
}

.site-footer::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, #2f8de6, #10426E, #2f8de6);
	box-shadow: 0 1px 15px rgba(47, 141, 230, 0.4);
}

.footer-content {
	width: min(1200px, calc(100% - 48px));
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1.4fr 0.8fr 1.2fr;
	gap: 32px 60px;
	padding-bottom: 32px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-section h3 {
	margin: 0 0 16px 0;
	font-size: 1.2rem;
	font-weight: 400;
	letter-spacing: 0.03em;
	position: relative;
	padding-bottom: 8px;
	display: flex;
	align-items: center;
	gap: 12px;
	color: #ffffff;
	text-transform: capitalize;
}

.footer-section h3 i {
	font-size: 1.15rem;
	color: #2f8de6;
}

.footer-section h3::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 45px;
	height: 3px;
	border-radius: 99px;
	background: linear-gradient(90deg, #2f8de6, #10426E);
	transition: width 0.3s ease;
}

.footer-section:hover h3::after {
	width: 75px;
}

.footer-about {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.footer-logo-link {
	display: inline-block;
	background-color: #ffffff;
	padding: 0;
	border-radius: 10px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
	transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
	margin-bottom: 18px; /* Compact space below logo container */
	width: fit-content;
}

.footer-logo-link:hover {
	transform: translateY(-4px) scale(1.02);
	box-shadow: 0 8px 30px rgba(47, 141, 230, 0.2);
	background-color: #ffffff;
}

.footer-logo {
	width: 170px;
	height: auto;
	display: block;
	border-radius: 20px;
}

.footer-description {
	font-size: 0.92rem;
	line-height: 1.75;
	color: #94a3b8;
	margin: 0;
	text-align: justify;
}

.social-icons {
	display: flex;
	gap: 14px;
	margin-top: 8px;
}

.social-icon {
	width: 42px;
	height: 42px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.04);
	color: #94a3b8;
	font-size: 1.1rem;
	transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
	text-decoration: none;
	border: 1px solid rgba(255, 255, 255, 0.06);
}

.social-icon i {
	display: flex;
	align-items: center;
	justify-content: center;
}

/* Brand colors on hover */
.social-icon[aria-label="Facebook"]:hover {
	background: #1877F2;
	color: #ffffff;
	border-color: #1877F2;
	transform: translateY(-4px);
	box-shadow: 0 6px 15px rgba(24, 119, 242, 0.4);
}

.social-icon[aria-label="YouTube"]:hover {
	background: #FF0000;
	color: #ffffff;
	border-color: #FF0000;
	transform: translateY(-4px);
	box-shadow: 0 6px 15px rgba(255, 0, 0, 0.4);
}

.social-icon[aria-label="LinkedIn"]:hover {
	background: #0A66C2;
	color: #ffffff;
	border-color: #0A66C2;
	transform: translateY(-4px);
	box-shadow: 0 6px 15px rgba(10, 102, 194, 0.4);
}

.social-icon[aria-label="Instagram"]:hover {
	background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
	color: #ffffff;
	border-color: transparent;
	transform: translateY(-4px);
	box-shadow: 0 6px 15px rgba(214, 36, 159, 0.4);
}

.footer-links-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.footer-links-list li {
	display: block;
}

.footer-links-list a {
	font-size: 0.95rem;
	color: #94a3b8;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	transition: all 0.25s ease;
}

.footer-links-list a i {
	font-size: 0.75rem;
	opacity: 0.6;
	transition: transform 0.25s ease, opacity 0.25s ease;
}

.footer-links-list a:hover {
	color: #ffffff;
	transform: translateX(5px);
}

.footer-links-list a:hover i {
	color: #2f8de6;
	transform: translateX(2px);
	opacity: 1;
}

.contact-items-wrapper {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.footer-contact .contact-item {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding: 8px 12px;
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.015);
	border: 1px solid rgba(255, 255, 255, 0.04);
	transition: all 0.3s ease;
}

.footer-contact .contact-link {
	text-decoration: none;
	color: inherit;
}

.footer-contact .contact-link:hover .contact-item {
	background: rgba(47, 141, 230, 0.05);
	border-color: rgba(47, 141, 230, 0.2);
	transform: translateY(-2px);
}

.footer-contact .contact-item i {
	font-size: 1.15rem;
	color: #2f8de6;
	background: rgba(47, 141, 230, 0.08);
	padding: 10px;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 38px;
	height: 38px;
	transition: all 0.3s ease;
}

.footer-contact .contact-link:hover .contact-item i {
	background: #2f8de6;
	color: #ffffff;
	box-shadow: 0 0 10px rgba(47, 141, 230, 0.3);
}

.footer-contact .contact-item > div {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.footer-contact strong {
	font-size: 0.8rem;
	letter-spacing: 0.05em;
	color: #64748b;
	text-transform: uppercase;
	font-weight: 500;
}

.footer-contact p {
	margin: 0;
	font-size: 0.92rem;
	color: #cbd5e1;
	line-height: 1.5;
	white-space: normal;
}

.footer-bottom {
	width: min(1200px, calc(100% - 48px));
	margin: 18px auto 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 0.88rem;
	color: #64748b;
	padding-top: 18px;
}

.footer-bottom p {
	margin: 0;
}

.footer-bottom p strong {
	color: #cbd5e1;
	font-weight: 500;
}

.footer-links-bottom {
	display: flex;
	gap: 16px;
	align-items: center;
}

.footer-links-bottom a {
	color: #64748b;
	text-decoration: none;
	transition: color 0.25s ease;
}

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

.footer-links-bottom span {
	color: rgba(255, 255, 255, 0.08);
}

/* Mobile Responsive Footer */
@media (max-width: 992px) {
	.footer-content {
		grid-template-columns: 1.2fr 1fr;
		gap: 40px;
	}
	.footer-section.footer-contact {
		grid-column: span 2;
	}
}

@media (max-width: 768px) {
	.site-footer {
		padding: 60px 20px 30px;
	}
	.footer-content {
		grid-template-columns: 1fr;
		gap: 40px;
		padding-bottom: 40px;
	}
	.footer-section.footer-contact {
		grid-column: span 1;
	}
	.footer-section h3 {
		margin-bottom: 20px;
	}
	.footer-bottom {
		flex-direction: column;
		gap: 16px;
		text-align: center;
		padding-top: 20px;
	}
	.footer-links-bottom {
		justify-content: center;
	}
}

@media (max-width: 480px) {
	.site-footer {
		padding: 50px 16px 24px;
	}
	.footer-logo-link {
		padding: 0;
		margin-bottom: 20px;
	}
	.footer-logo {
		width: 140px;
	}
	.footer-description {
		font-size: 0.88rem;
	}
	.social-icons {
		margin-top: 18px;
		gap: 10px;
	}
	.social-icon {
		width: 38px;
		height: 38px;
		font-size: 1rem;
	}
	.footer-links-list {
		gap: 12px;
	}
	.footer-links-list a {
		font-size: 0.9rem;
	}
	.contact-items-wrapper {
		gap: 12px;
	}
	.footer-contact .contact-item {
		padding: 10px 12px;
		gap: 12px;
	}
	.footer-contact .contact-item i {
		min-width: 32px;
		height: 32px;
		font-size: 1rem;
		padding: 0;
	}
	.footer-bottom {
		font-size: 0.82rem;
	}
}

/* Content Section Mobile Responsive */
@media (max-width: 768px) {
	.content-section {
		padding: 30px 16px;
	}

	.cta-section {
		padding-bottom: 40px;
	}

	.cta-panel {
		width: 100%;
		min-height: 300px;
		padding: 60px 20px;
		border-radius: 0;
		margin-left: 0;
		background-attachment: scroll;
	}

	.cta-panel__copy {
		font-size: 0.96rem;
	}

	.cta-panel__actions {
		gap: 10px;
		margin-top: 22px;
	}

	.cta-panel__button {
		min-width: 140px;
		padding-left: 20px;
		padding-right: 20px;
	}

	.section-card {
		width: calc(100% - 24px);
		padding: 32px 20px;
		border-radius: 16px;
	}

	.section-card h2 {
		font-size: clamp(1.4rem, 2.5vw, 2rem);
	}

	.section-card p {
		font-size: 0.95rem;
	}

	.about-container {
		grid-template-columns: 1fr;
		gap: 40px;
		width: calc(100% - 24px);
		padding: 0 12px;
	}

	.about-collage {
		width: min(100%, 540px);
		aspect-ratio: 1;
	}

	.about-collage__frame--main {
		inset: 0 18% 10% 0;
	}

	.about-collage__frame--top {
		width: 38%;
		height: 36%;
	}

	.about-collage__frame--bottom {
		width: 34%;
		height: 29%;
	}

	.gallery-masonry {
		flex-wrap: wrap;
		min-height: auto;
	}

	.gallery-left,
	.gallery-right {
		flex: 1;
	}

	.gallery-item-main {
		height: 280px;
	}

	.gallery-item-top,
	.gallery-item-middle,
	.gallery-item-bottom {
		height: 200px;
	}

	.about-content h2 {
		font-size: clamp(1.6rem, 4vw, 2.2rem) !important;
	}

	.about-description {
		font-size: 0.95rem;
	}

	.showcase-heading {
		margin-bottom: 26px;
	}

	.showcase-card {
		min-height: 330px;
		border-radius: 22px;
	}

	.showcase-card__overlay {
		padding: 20px;
	}

	.cta-button {
		padding: 12px 24px;
		font-size: 0.9rem;
	}
}

@media (max-width: 480px) {
	.content-section {
		padding: 24px 12px;
	}

	.cta-section {
		padding-bottom: 30px;
	}

	.cta-panel {
		width: 100%;
		min-height: 280px;
		padding: 48px 16px;
		border-radius: 0;
		margin-left: 0;
	}

	.cta-panel h2 {
		font-size: clamp(1.7rem, 6vw, 2.4rem);
	}

	.cta-panel__copy {
		font-size: 0.92rem;
		line-height: 1.65;
	}

	.cta-panel__actions {
		flex-direction: column;
		align-items: stretch;
	}

	.cta-panel__button {
		width: 100%;
	}

	.section-card {
		width: calc(100% - 16px);
		padding: 24px 16px;
		margin: 0 8px;
		border-radius: 12px;
	}

	.section-card h2 {
		font-size: clamp(1.2rem, 2vw, 1.6rem);
	}

	.section-card p {
		font-size: 0.9rem;
		line-height: 1.6;
	}

	.about-container {
		gap: 30px;
		width: calc(100% - 16px);
		padding: 0 8px;
	}

	.about-collage {
		width: 100%;
		aspect-ratio: 0.98;
	}

	.about-collage__frame {
		border-radius: 18px;
	}

	.about-collage__frame--top {
		border-width: 5px;
		right: 0;
	}

	.about-collage__frame--bottom {
		border-width: 5px;
		left: 5%;
	}

	.about-collage__line {
		width: 38%;
		bottom: 5%;
	}

	.gallery-item-main {
		height: 240px;
	}

	.gallery-item-top,
	.gallery-item-middle,
	.gallery-item-bottom {
		height: 160px;
	}

	.about-content h2 {
		font-size: clamp(1.4rem, 5vw, 1.8rem) !important;
	}

	.about-description {
		font-size: 0.9rem;
	}

	.showcase-shell {
		width: calc(100% - 16px);
	}

	.showcase-heading h2 {
		font-size: clamp(1.4rem, 5vw, 2rem);
	}

	.showcase-heading p {
		font-size: 0.92rem;
	}

	.showcase-card {
		min-height: 300px;
	}

	.showcase-card__overlay {
		padding: 18px;
		transform: translateY(0);
	}

	.showcase-card h3 {
		font-size: 1.1rem;
	}

	.showcase-card p {
		font-size: 0.9rem;
	}

	.review-shell {
		width: calc(100% - 16px);
	}

	.review-heading h2 {
		font-size: clamp(1.5rem, 5vw, 2.1rem);
	}

	.review-heading p {
		font-size: 0.92rem;
	}

	.review-controls {
		align-self: center;
	}

	.review-carousel-row {
		display: block;
		position: relative;
		padding-bottom: 68px;
		gap: 0;
	}

	.review-marquee {
		width: 100%;
	}

	.review-controls {
		position: absolute;
		left: 50%;
		bottom: 0;
		transform: translateX(-50%);
		width: max-content;
	}

	.review-controls--left {
		transform: translateX(calc(-100% - 8px));
	}

	.review-controls--right {
		transform: translateX(8px);
	}

	.review-group {
		gap: 16px;
		padding-right: 16px;
	}

	.review-card {
		padding: 20px;
		border-radius: 22px;
		max-width: var(--review-card-width, 260px);
	}

	.review-card__top img {
		width: 48px;
		height: 48px;
	}

	.review-card__quote {
		font-size: 0.9rem;
		line-height: 1.65;
	}

	.cta-button {
		padding: 10px 20px;
		font-size: 0.85rem;
	}
}

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

	.review-card,
	.review-control {
		transition: none;
	}
}

@media (hover: none) {
	.showcase-card {
		transform: none;
	}

	.showcase-card::before {
		opacity: 1;
	}

	.showcase-card img {
		transform: none;
	}

	.showcase-card__overlay {
		transform: translateY(0);
	}

	.showcase-card p,
	.showcase-card a {
		opacity: 1;
		transform: none;
	}

	.showcase-card:hover,
	.showcase-card:focus-within {
		transform: none;
	}
}

body.modal-open {
	overflow: hidden;
}

.lead-modal {
	position: fixed;
	inset: 0;
	z-index: 1200;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.28s ease, visibility 0.28s ease;
}

.lead-modal.is-open {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.lead-modal__overlay {
	position: absolute;
	inset: 0;
	background: rgba(4, 12, 24, 0.75);
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
}

.lead-modal__dialog {
	position: relative;
	width: min(1000px, 100%);
	max-height: calc(100vh - 40px);
	background: #ffffff;
	overflow: auto;
	border-radius: 20px;
	box-shadow: 0 32px 80px rgba(4, 14, 30, 0.55);
	transform: translateY(20px) scale(0.97);
	transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.lead-modal.is-open .lead-modal__dialog {
	transform: translateY(0) scale(1);
}

.lead-modal__close {
	position: absolute;
	top: 14px;
	right: 14px;
	z-index: 10;
	width: 36px;
	height: 36px;
	border: none;
	border-radius: 50%;
	background: #A11715;
	color: #fff;
	font-size: 1.4rem;
	line-height: 1;
	cursor: pointer;
	display: grid;
	place-items: center;
	transition: background 0.2s, transform 0.2s;
}
.lead-modal__close:hover {
	background: #c71f1c;
	transform: scale(1.1) rotate(90deg);
}

/* ---- Layout ---- */
.lead-modal__layout {
	display: grid;
	grid-template-columns: minmax(0, 42%) minmax(0, 58%);
	min-height: 580px;
}

/* ---- Visual (left) panel ---- */
.lead-modal__visual {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 36px 30px;
	color: #ffffff;
	background: #071525;
	overflow: hidden;
	border-radius: 20px 0 0 20px;
}

.lead-modal__vector-wrap {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.lead-modal__vector {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	opacity: 0.45;
}

.lead-modal__visual-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		160deg,
		rgba(4, 18, 40, 0.55) 0%,
		rgba(10, 42, 80, 0.85) 60%,
		rgba(2, 10, 22, 0.96) 100%
	);
	z-index: 1;
}

.lead-modal__visual-copy {
	position: relative;
	z-index: 2;
}

.lead-modal__visual-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: rgba(212, 160, 23, 0.18);
	border: 1px solid rgba(212, 160, 23, 0.45);
	color: #f0c040;
	font-size: 0.72rem;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	font-weight: 700;
	padding: 5px 12px;
	border-radius: 50px;
	margin-bottom: 16px;
}

.lead-modal__visual-copy h3 {
	margin: 0 0 12px;
	font-size: 1.65rem;
	line-height: 1.25;
	color: #ffffff;
	font-weight: 400;
}

.lead-modal__visual-copy > p {
	margin: 0 0 20px;
	font-size: 0.9rem;
	line-height: 1.7;
	color: rgba(210, 232, 255, 0.82);
}

.lead-modal__perks {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.lead-modal__perks li {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 0.88rem;
	color: rgba(220, 240, 255, 0.88);
}

.lead-modal__perks li i {
	color: #f0c040;
	flex-shrink: 0;
	font-size: 0.95rem;
}

/* ---- Form (right) panel ---- */
.lead-modal__form-panel {
	background: #ffffff;
	padding: 40px 36px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	border-radius: 0 20px 20px 0;
}

.lead-modal__form-header {
	margin-bottom: 22px;
}

.lead-modal__form-panel h2 {
	margin: 0 0 6px;
	font-size: 1.75rem;
	line-height: 1.2;
	color: #0d2d52;
	font-weight: 400;
	letter-spacing: -0.01em;
}

.lead-modal__form-subtitle {
	margin: 0;
	font-size: 0.88rem;
	color: #6b8299;
}

/* ---- Form ---- */
.lead-form {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

/* Field wrapper */
.lf-field {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

/* Input row */
.lf-input-wrap {
	position: relative;
	display: flex;
	align-items: center;
	background: #f4f7fb;
	border: 1.5px solid #d8e3ee;
	border-radius: 10px;
	transition: border-color 0.22s, box-shadow 0.22s, background 0.22s;
	overflow: hidden;
}

.lf-input-wrap:focus-within {
	border-color: #1a73e8;
	box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.12);
	background: #ffffff;
}

/* Field icon */
.lf-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	flex-shrink: 0;
	color: #8fafc8;
	font-size: 0.9rem;
}

.lf-icon--top {
	align-self: flex-start;
	padding-top: 14px;
}

/* Inputs */
.lf-input-wrap input,
.lf-input-wrap textarea {
	flex: 1;
	width: 100%;
	background: transparent;
	border: none;
	outline: none;
	color: #1a2e44;
	font-size: 0.96rem;
	font-family: 'Poppins', sans-serif;
	padding: 13px 14px 13px 0;
}

.lf-input-wrap textarea {
	resize: none;
	min-height: 80px;
	padding: 13px 14px 13px 0;
}

.lf-input-wrap input::placeholder,
.lf-input-wrap textarea::placeholder {
	color: #a0b8cc;
}

/* ---- India phone prefix ---- */
.lf-phone-wrap {
	gap: 0;
}

.lf-country-code {
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 0 10px 0 12px;
	border-right: 1.5px solid #d8e3ee;
	flex-shrink: 0;
	height: 100%;
	min-height: 48px;
}

.lf-flag {
	display: block;
	border-radius: 3px;
	box-shadow: 0 1px 3px rgba(0,0,0,0.15);
	width: 24px;
	height: 16px;
	object-fit: cover;
}

.lf-dial {
	color: #2a4a6b;
	font-size: 0.88rem;
	font-weight: 600;
	white-space: nowrap;
	letter-spacing: 0.02em;
}

.lf-phone-wrap input {
	padding-left: 10px;
}

/* ---- Textarea wrap ---- */
.lf-textarea-wrap {
	align-items: flex-start;
}

/* ---- Validation states ---- */
.lf-error {
	font-size: 0.76rem;
	color: #d93025;
	padding-left: 4px;
	min-height: 1em;
	transition: opacity 0.2s;
}

.lf-has-error .lf-input-wrap {
	border-color: #e57373;
	box-shadow: 0 0 0 3px rgba(211, 47, 47, 0.1);
	background: #fff5f5;
}

.lf-has-error .lf-icon {
	color: #e57373;
}

.lf-is-valid .lf-input-wrap {
	border-color: #4caf7d;
	box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
	background: #f5fdf7;
}

.lf-is-valid .lf-icon {
	color: #4caf7d;
}

/* ---- Submit button ---- */
.lead-form__submit {
	margin-top: 6px;
	padding: 13px 20px;
	border: none;
	border-radius: 8px;
	background: linear-gradient(135deg, #1a73e8 0%, #0d4fba 100%);
	color: #fff;
	font-size: 0.97rem;
	font-weight: 700;
	font-family: 'Poppins', sans-serif;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
	letter-spacing: 0.02em;
	box-shadow: 0 4px 16px rgba(13, 79, 186, 0.4);
}

.lead-form__submit:hover:not(:disabled) {
	transform: translateY(-2px);
	box-shadow: 0 8px 28px rgba(212, 153, 48, 0.55);
	background: linear-gradient(135deg, #d49930 0%, #f5cb78 100%);
}

.lead-form__submit:disabled {
	opacity: 0.7;
	cursor: not-allowed;
}

/* ---- Success message ---- */
.lf-success {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 20px;
	border-radius: 12px;
	background: #f0fbf4;
	border: 1.5px solid #a8dbb8;
	color: #1e6b3a;
	font-size: 1rem;
	font-weight: 600;
	margin-top: 8px;
}

.lf-success i {
	font-size: 1.4rem;
	color: #4caf7d;
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
	.lead-modal {
		padding: 14px;
	}

	.lead-modal__layout {
		grid-template-columns: 1fr;
		min-height: 0;
	}

	.lead-modal__visual {
		display: none;
	}

	.lead-modal__form-panel {
		padding: 30px 22px;
		border-radius: 20px;
		background: #ffffff;
	}
}

.dkuywW{
	display: none;
}/* About Us Page Banner with Image */
.banner-about-section {
position: relative;
width: 100%;
margin-top: 120px;
}

.banner-image-wrapper {
position: relative;
width: 100%;
height: 500px;
background-size: cover;
background-position: center;
background-attachment: fixed;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
}

.banner-image-overlay {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: linear-gradient(135deg, rgba(10, 20, 32, 0.75) 0%, rgba(10, 20, 32, 0.6) 50%, rgba(10, 20, 32, 0.5) 100%);
z-index: 1;
}

.banner-image-content {
position: relative;
z-index: 2;
text-align: center;
display: flex;
flex-direction: column;
gap: 16px;
align-items: center;
justify-content: center;
animation: fadeInUp 0.9s ease-out;
}

.banner-main-title {
margin: 0;
font-size: clamp(2.5rem, 7vw, 5rem);
font-weight: 400;
line-height: 1.1;
letter-spacing: -0.03em;
color: #ffffff;
text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.highlight-text {
color: #ffb86b;
font-style: italic;
display: inline-block;
animation: slideInRight 0.8s ease-out 0.2s backwards;
}

.banner-subtitle-text {
margin: 0;
font-size: clamp(1rem, 2vw, 1.3rem);
font-weight: 400;
color: #b0c4de;
text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
letter-spacing: 0.05em;
animation: slideInUp 0.8s ease-out 0.3s backwards;
}

@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(40px);
}
to {
opacity: 1;
transform: translateY(0);
}
}

@keyframes slideInUp {
from {
opacity: 0;
transform: translateY(20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}

@keyframes slideInRight {
from {
opacity: 0;
transform: translateX(30px);
}
to {
opacity: 1;
transform: translateX(0);
}
}

/* Responsive Design */
@media (max-width: 768px) {
.banner-about-section {
margin-top: 100px;
}

.banner-image-wrapper {
height: 400px;
background-attachment: scroll;
}

.banner-main-title {
font-size: 2.5rem;
}

.banner-subtitle-text {
font-size: 1rem;
}
}

@media (max-width: 480px) {
.banner-about-section {
margin-top: 90px;
}

.banner-image-wrapper {
height: 300px;
}

.banner-main-title {
font-size: 1.8rem;

/* Contact Form Section Styles */

.contact-section {
	padding: 40px 0;
	background: #ffffff;
	color: #1a2332;
}

.contact-shell {
	width: min(1200px, calc(100% - 48px));
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: start;
}

.contact-info-container {
	padding: 40px;
	background: #f4f6f8;
	border-radius: 12px;
}

.contact-info-content {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.contact-info-title {
	margin: 0;
	font-size: clamp(2rem, 3vw, 2.5rem);	font-weight: 400;
	line-height: 1.2;
	color: #333;
}

.contact-info-description {
	margin: 0;
	font-size: 1rem;
	line-height: 1.6;
	color: #4b5f77;
}

.contact-info-details {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.contact-detail-item {
	display: flex;
	gap: 16px;
}

.contact-detail-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	background: #2f8de6;
	color: #ffffff;
	border-radius: 50%;
	flex-shrink: 0;
	font-size: 1.2rem;
}

.contact-detail-text {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.detail-label {
	margin: 0;
	font-size: 0.9rem;
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: #2f8de6;
}

.detail-value {	margin: 0;
	font-size: 1rem;
	line-height: 1.5;
	color: #20364f;
}

/* Social Media Section */
.contact-social-media {
	padding-top: 20px;
	border-top: 1px solid rgba(7, 36, 65, 0.1);
}

.social-media-label {
	margin: 0 0 16px;
	font-size: 0.92rem;
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: #0d467b;
}

.social-media-icons {
	display: flex;
	gap: 12px;
}

/* Permanent brand colors — always visible */
.contact-social-media .social-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	font-size: 1.1rem;
	transition: all 0.3s ease;
	text-decoration: none;
	color: #ffffff !important;
}

.contact-social-media .social-icon[aria-label="Facebook"] {
	background: #1877F2 !important;
}

.contact-social-media .social-icon[aria-label="Youtube"] {
	background: #FF0000 !important;
}

.contact-social-media .social-icon[aria-label="LinkedIn"] {
	background: #0A66C2 !important;
}

.contact-social-media .social-icon[aria-label="Instagram"] {
	background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%) !important;
}

/* Hover — subtle lift & glow only */
.contact-social-media .social-icon:hover {
	transform: translateY(-4px);
	filter: brightness(1.15);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

/* Contact Form Container */
.contact-form-container {
	padding: 40px;
	background: #ffffff;
	border: 1px solid rgba(7, 36, 65, 0.1);
	border-radius: 12px;
	box-shadow: 0 4px 16px rgba(16, 36, 61, 0.08);
}

.contact-form {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.form-group {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.form-label {
	font-size: 0.95rem;
	font-weight: 600;
	color: #0d467b;
	letter-spacing: 0.02em;
}

.contact-form input,
.contact-form textarea {
	width: 100%;
	border: 1px solid rgba(7, 36, 65, 0.2);
	background: #ebebeb;
	color: #20364f;
	padding: 13px 12px;
	font-size: 1rem;
	font-family: 'Poppins', sans-serif;
	border-radius: 6px;
	outline: none;
	transition: all 0.3s ease;
}

.contact-form textarea {
	min-height: 140px;
	resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
	color: #7a8b99;
	opacity: 1;
}

.contact-form input:focus,
.contact-form textarea:focus {
	border-color: #2f8de6;
	background: #ffffff;
	box-shadow: 0 0 0 3px rgba(47, 141, 230, 0.15);
}

.contact-form .button {
	align-self: flex-start;
	margin-top: 12px;
}

/* Responsive Design */
@media (max-width: 900px) {
.contact-shell {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.contact-info-container,
	.contact-form-container {
		padding: 30px;
	}

	.contact-info-title {
		font-size: 2rem;
	}
}

@media (max-width: 640px) {	.contact-section {
		padding: 30px 0;
	}

	.contact-shell {
		width: calc(100% - 24px);
		gap: 30px;
	}

	.contact-info-container,
	.contact-form-container {
		padding: 24px;
	}

	.contact-info-title {
		font-size: 1.5rem;
	}

.contact-info-description {
		font-size: 0.95rem;
	}

	.contact-detail-item {
		gap: 12px;
}

	.contact-detail-icon {
		width: 40px;
		height: 40px;
		font-size: 1rem;
	}

	.social-media-icons {
		gap: 8px;
	}

	.social-icon {
		width: 40px;
		height: 40px;
		font-size: 1rem;
	}

	.contact-form {
		gap: 16px;
	}

	.form-label {
		font-size: 0.9rem;
	}

	.contact-form input,
	.contact-form textarea {
		font-size: 16px;
		padding: 12px 10px;
	}
}
font-size: 0.9rem;
}
}

/* About Us Page Banner with Image */
.banner-about-section {
position: relative;
width: 100%;
margin-top: 0px;
}

.banner-image-wrapper {
position: relative;
width: 100%;
height: 500px;
background-size: cover;
background-position: center;
background-attachment: fixed;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
}

.banner-image-overlay {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: linear-gradient(135deg, rgba(10, 20, 32, 0.75) 0%, rgba(10, 20, 32, 0.6) 50%, rgba(10, 20, 32, 0.5) 100%);
z-index: 1;
}

.banner-image-content {
position: relative;
z-index: 2;
text-align: center;
display: flex;
flex-direction: column;
gap: 16px;
align-items: center;
justify-content: center;
animation: fadeInUp 0.9s ease-out;
}

.banner-main-title {
margin: 0;
font-size: clamp(2.5rem, 7vw, 55px);
font-weight: 400;
line-height: 1.1;
letter-spacing: -0.03em;
color: #ffffff;
text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.highlight-text {
color: #ffb86b;
font-style: italic;
display: inline-block;
animation: slideInRight 0.8s ease-out 0.2s backwards;
}

.banner-subtitle-text {
margin: 0;
font-size: clamp(1rem, 2vw, 1.3rem);
font-weight: 400;
color: #b0c4de;
text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
letter-spacing: 0.05em;
animation: slideInUp 0.8s ease-out 0.3s backwards;
}

@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(40px);
}
to {
opacity: 1;
transform: translateY(0);
}
}

@keyframes slideInUp {
from {
opacity: 0;
transform: translateY(20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}

@keyframes slideInRight {
from {
opacity: 0;
transform: translateX(30px);
}
to {
opacity: 1;
transform: translateX(0);
}
}

@media (max-width: 768px) {
.banner-about-section {
margin-top: 100px;
}

.banner-image-wrapper {
height: 400px;
background-attachment: scroll;
}

.banner-main-title {
font-size: 2.5rem;
}

.banner-subtitle-text {
font-size: 1rem;
}
}

@media (max-width: 480px) {
.banner-about-section {
margin-top: 0px;
}

.banner-image-wrapper {
height: 300px;
}

.banner-main-title {
font-size: 1.8rem;
}

.banner-subtitle-text {
font-size: 0.9rem;
}
}

/* ============================================================
   OUR AMENITIES SECTION
   ============================================================ */

.amenities-section {
  background: #f8fafd;
  padding: 30px 0;
}

.amenities-shell {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

.amenities-header {
  text-align: center;
  margin-bottom: 30px;
}

.amenities-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 400;
  color: #0d1b2a;
  margin: 8px 0 14px;
  line-height: 1.2;
}

.amenities-accent {
  color: #2f8de6;
}

.amenities-subtitle {
  font-size: 1.05rem;
  color: #4b5f77;
  margin: 0;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* 3-column flip-card grid */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* ---- Individual flip card ---- */
.amenity-card {
  height: 220px;
  perspective: 1000px;
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.amenity-card:hover {
  transform: translateY(-6px);
}

.amenity-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 16px;
}

.amenity-card:hover .amenity-card-inner {
  transform: rotateY(180deg);
}

/* Shared face styles */
.amenity-card-front,
.amenity-card-back {
  position: absolute;
  inset: 0;
  border-radius: 16px;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 28px 24px;
  gap: 14px;
}

/* Front face – default */
.amenity-card-front {
  background: linear-gradient(135deg, #f5f9ff 0%, #eef5fe 50%, #e0edfe 100%);
  border: 1px solid rgba(47, 141, 230, 0.22);
  box-shadow: 0 8px 30px rgba(47, 141, 230, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

/* Front face – image variant */
.amenity-card-front--img {
  background-image: linear-gradient(to top, rgba(10, 20, 40, 0.72) 0%, rgba(10, 20, 40, 0.1) 55%, transparent 100%), var(--card-img);
  background-size: cover;
  background-position: center;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 18px 20px;
  gap: 0;
  border: none;
  box-shadow: 0 8px 30px rgba(47, 141, 230, 0.06);
}

.amenity-card-front h3,
.amenity-card-back h3 {
  font-size: 1.05rem;
  font-weight: 400;
  color: #0a3356;
  margin: 0;
  text-align: center;
  line-height: 1.3;
}

.amenity-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #002352;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  box-shadow: 0 6px 18px rgba(47, 141, 230, 0.35);
  flex-shrink: 0;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.amenity-card:hover .amenity-icon-wrap {
  transform: scale(1.1) rotate(6deg);
}

/* Back face – default (flips on hover) */
.amenity-card-back {
  background: linear-gradient(135deg, #f5f9ff 0%, #eef5fe 50%, #e0edfe 100%);
  border: 1px solid rgba(47, 141, 230, 0.22);
  box-shadow: 0 8px 30px rgba(47, 141, 230, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.6);
  transform: rotateY(180deg);
  gap: 14px;
}

.amenity-back-icon {
  font-size: 1.6rem;
  color: rgba(255, 255, 255, 0.7);
}

.amenity-card-back p {
  font-size: 0.875rem;
  color: #4a5f7f;
  margin: 0;
  text-align: center;
  line-height: 1.55;
}

/* Back face – image variant */
.amenity-card-back--img {
  background-image: linear-gradient(to top, rgba(10, 20, 40, 0.72) 0%, rgba(10, 20, 40, 0.1) 55%, transparent 100%), var(--card-img);
  background-size: cover;
  background-position: center;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 18px 20px;
  gap: 0;
  transform: rotateY(180deg);
}

.amenity-img-label {
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
  letter-spacing: 0.02em;
  line-height: 1.3;
  border-left: 3px solid #2f8de6;
  padding-left: 10px;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.amenity-card:hover .amenity-img-label {
  transform: translateX(6px);
}

/* Responsive */
@media (max-width: 900px) {
  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .amenity-card {
    height: 210px;
  }
}

@media (max-width: 560px) {
  .amenities-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .amenity-card {
    height: 190px;
  }
  .amenities-section {
    padding: 24px 0;
  }
}


/* ============================================================
   WHY CHOOSE US SECTION
   ============================================================ */

.why-choose-section {
  background: #ffffff;
  padding: 30px 0;
}

.why-choose-shell {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.why-choose-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.why-choose-section-subtitle {
  display: inline-block;
  background: linear-gradient(90deg, #2f8de6, #1558a8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 0.9rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.why-choose-section-title {
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  font-weight: 400;
  color: #0d1b2a;
  margin: 0;
  line-height: 1.25;
  max-width: 700px;
}

.accent-pink {
  color: #2f8de6;
}

/* Dual cards layout */
.why-choose-dual-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.why-choose-card {
  background: #f8fafd;
  border-radius: 18px;
  overflow: hidden;
  border: 1.5px solid rgba(47, 141, 230, 0.12);
  box-shadow: 0 4px 24px rgba(13, 70, 123, 0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.why-choose-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(47, 141, 230, 0.15);
}

.why-choose-card-img-wrapper {
  width: 100%;
  height: 220px;
  overflow: hidden;
  flex-shrink: 0;
}

.why-choose-card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.why-choose-card:hover .why-choose-card-img-wrapper img {
  transform: scale(1.05);
}

.why-choose-card-content {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}

.why-choose-card-title {
  font-size: 1.2rem;
  font-weight: 400;
  color: #002352;
  margin: 0;
  line-height: 1.3;
}

.why-choose-card-desc {
  font-size: 0.92rem;
  color: #4b5f77;
  margin: 0;
  line-height: 1.65;
  text-align: justify;
}

.why-choose-card-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.why-choose-card-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: #1a2e42;
  line-height: 1.5;
}

.why-choose-card-list li i {
  color: #2f8de6;
  font-size: 1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

/* Amenities badge panel */
.why-choose-amenities-panel {
  background: linear-gradient(135deg, #0c2d4e 0%, #06192b 100%);
  border-radius: 18px;
  padding: 40px 36px;
  border: 1.5px solid rgba(47, 141, 230, 0.25);
  box-shadow: 0 12px 36px rgba(12, 45, 78, 0.15);
}

.why-choose-amenities-header {
  text-align: center;
  margin-bottom: 32px;
}

.why-choose-amenities-title {
  font-size: 1.3rem;
  font-weight: 400;
  color: #0d1b2a;
  margin: 0;
}

.why-choose-badges-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.amenity-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  border: 1.5px solid rgba(47, 141, 230, 0.2);
  border-radius: 50px;
  padding: 10px 20px 10px 10px;
  box-shadow: 0 2px 12px rgba(47, 141, 230, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  cursor: default;
}

.amenity-badge:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(47, 141, 230, 0.18);
}

.badge-icon-wrapper {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #002352;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.badge-text {
  font-size: 0.88rem;
  font-weight: 600;
  color: #0d467b;
  white-space: nowrap;
}

/* Responsive why-choose */
@media (max-width: 880px) {
  .why-choose-badges-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-choose-dual-cards {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .why-choose-card-img-wrapper {
    height: 200px;
  }
}

@media (max-width: 600px) {
  .why-choose-badges-grid {
    grid-template-columns: 1fr;
  }
  .why-choose-section {
    padding: 24px 0;
  }
  .why-choose-shell {
    gap: 20px;
  }
  .why-choose-amenities-panel {
    padding: 28px 20px;
  }
  .why-choose-card-content {
    padding: 20px;
  }
  .amenity-badge {
    padding: 8px 14px 8px 8px;
  }
  .badge-icon-wrapper {
    width: 32px;
    height: 32px;
    font-size: 0.8rem;
  }
  .badge-text {
    font-size: 0.82rem;
  }
}

/* ---- About Highlights Section (Beautiful dual cards) ---- */
.about-highlights-section {
	padding: 60px 24px;
	background: linear-gradient(180deg, #ffffff 0%, #f4f7fa 100%);
	position: relative;
}

.about-highlights-shell {
	width: min(1200px, calc(100% - 48px));
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 32px;
}

.highlight-card {
	background: #ffffff;
	border: 1px solid rgba(16, 66, 110, 0.08);
	border-radius: 20px;
	padding: 40px 32px;
	display: flex;
	gap: 24px;
	align-items: flex-start;
	box-shadow: 0 10px 30px rgba(16, 66, 110, 0.04);
	transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
	position: relative;
	overflow: hidden;
}

.highlight-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 4px;
	height: 100%;
	background: linear-gradient(180deg, #2f8de6 0%, #10426E 100%);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.highlight-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 40px rgba(16, 66, 110, 0.12);
	border-color: rgba(47, 141, 230, 0.2);
}

.highlight-card:hover::before {
	opacity: 1;
}

.highlight-icon-wrap {
	width: 64px;
	height: 64px;
	border-radius: 16px;
	background: rgba(47, 141, 230, 0.1);
	color: #2f8de6;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.6rem;
	flex-shrink: 0;
	transition: all 0.3s ease;
}

.highlight-card:hover .highlight-icon-wrap {
	background: #2f8de6;
	color: #ffffff;
	transform: scale(1.1) rotate(5deg);
	box-shadow: 0 8px 20px rgba(47, 141, 230, 0.3);
}

.highlight-content h3 {
	margin: 0 0 12px;
	font-size: 1.25rem;
	font-weight: 400;
	color: #002352;
	line-height: 1.35;
}

.highlight-content p {
	margin: 0;
	font-size: 0.94rem;
	line-height: 1.75;
	color: #4a5f77;
	text-align: justify;
}

@media (max-width: 900px) {
	.about-highlights-shell {
		grid-template-columns: 1fr;
		gap: 24px;
	}
	
	.highlight-card {
		padding: 30px 24px;
		gap: 18px;
	}

	.about-values-section {
		padding: 40px 0 60px;
	}
	
	.values-dark-shell {
		padding: 60px 24px;
		border-radius: 16px;
		grid-template-columns: 1fr;
		gap: 48px;
	}
	
	.value-dark-item {
		gap: 20px;
	}
	
	.value-number {
		font-size: 2.8rem;
	}
}

/* ---- Gallery Page Styles ---- */
.gallery-section {
	padding: 40px 24px 30px;
	background: #ffffff;
}

.gallery-shell {
	width: min(1200px, calc(100% - 48px));
	margin: 0 auto;
}

.gallery-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 30px;
}

.gallery-card {
	position: relative;
	border-radius: 16px;
	overflow: hidden;
	aspect-ratio: 4/3;
	box-shadow: 0 10px 30px rgba(16, 66, 110, 0.05);
	cursor: pointer;
	border: 1px solid rgba(16, 66, 110, 0.05);
	transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.gallery-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.5s ease;
}

.gallery-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0, 25, 60, 0.88) 0%, rgba(0, 25, 60, 0.25) 55%, transparent 100%);
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 18px 20px;
	opacity: 1;
	z-index: 2;
}

.gallery-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 18px 36px rgba(0, 35, 82, 0.18);
}

.gallery-card:hover img {
	transform: scale(1.06);
}

.gallery-overlay h3 {
	margin: 0 0 3px;
	font-size: 1.05rem;
	font-weight: 600;
	color: #ffffff;
}

.gallery-overlay p {
	margin: 0;
	font-size: 0.82rem;
	color: #d49930;
	font-weight: 500;
}

/* Lightbox — arrows flush against image, close on image top-right corner */
.lightbox-modal {
	position: fixed;
	inset: 0;
	background: rgba(6, 13, 24, 0.92);
	z-index: 1000;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.32s ease;
	padding: 20px;
}

.lightbox-modal.active {
	opacity: 1;
	pointer-events: auto;
}

/* Wrapper: stacks image + counter vertically */
.lightbox-inner-wrap {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	max-width: min(700px, calc(100vw - 140px));
	width: 100%;
}

/* Image wrapper — close button anchors to this */
.lightbox-content {
	position: relative;
	display: inline-flex;
	flex-direction: column;
	width: 100%;
	transform: scale(0.88);
	transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.lightbox-modal.active .lightbox-content {
	transform: scale(1);
}

.lightbox-content img {
	width: 100%;
	max-height: 84vh;
	border-radius: 18px;
	box-shadow: 0 28px 64px rgba(0, 0, 0, 0.7);
	display: block;
	object-fit: contain;
}

/* ×  Close — top-right CORNER of the image, just outside */
.lightbox-close {
	position: absolute;
	top: -15px;
	right: -15px;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: #e53935;
	border: 2px solid rgba(255,255,255,0.3);
	color: #ffffff;
	font-size: 1.1rem;
	line-height: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 1020;
	box-shadow: 0 3px 10px rgba(229, 57, 53, 0.55);
	transition: transform 0.22s ease, background 0.22s ease;
}

.lightbox-close:hover {
	background: #b71c1c;
	transform: scale(1.18) rotate(90deg);
}

/* Caption overlay at image bottom */
.lightbox-caption {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(to top, rgba(6, 13, 24, 0.85) 0%, transparent 100%);
	color: #ffffff;
	padding: 36px 20px 16px;
	border-bottom-left-radius: 18px;
	border-bottom-right-radius: 18px;
	text-align: center;
	font-size: 0.92rem;
	font-weight: 500;
	z-index: 1005;
	pointer-events: none;
}

/* Counter pill — BELOW the image, not overlapping caption */
.lightbox-counter {
	display: inline-block;
	background: rgba(10, 20, 40, 0.72);
	backdrop-filter: blur(6px);
	color: #ffffff;
	font-family: 'Poppins', sans-serif;
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.5px;
	padding: 4px 16px;
	border-radius: 20px;
	z-index: 1010;
	pointer-events: none;
}

/* ← → Arrows: flex siblings of .lightbox-content, right beside image */
.lightbox-prev,
.lightbox-next {
	flex-shrink: 0;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.13);
	border: 1.5px solid rgba(255, 255, 255, 0.28);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	color: #ffffff;
	font-size: 1.25rem;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 1015;
	transition: background 0.22s ease, transform 0.22s ease, border-color 0.22s ease;
	margin: 0 10px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
	background: rgba(255, 255, 255, 0.27);
	border-color: rgba(255, 255, 255, 0.6);
	transform: scale(1.1);
}

@media (max-width: 768px) {
	.lightbox-modal {
		padding: 16px 4px;
	}
	.lightbox-content {
		max-width: calc(100vw - 104px);
	}
	.lightbox-prev,
	.lightbox-next {
		width: 36px;
		height: 36px;
		font-size: 1rem;
		margin: 0 4px;
	}
	.lightbox-close {
		width: 28px;
		height: 28px;
		font-size: 0.95rem;
		top: -10px;
		right: -10px;
	}
}

@media (max-width: 768px) {
	.gallery-section {
		padding: 50px 16px;
	}
	.gallery-grid {
		gap: 20px;
	}
}

/* ===== Thank You Page Styles ===== */
.thankyou-section {
    padding: 120px 0;
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
}
.thankyou-shell {
    width: min(800px, calc(100% - 48px));
    margin: 0 auto;
    text-align: center;
}

.thankyou-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    color: #002352;
    margin-bottom: 20px;
}
.thankyou-message {
    font-family: 'Poppins', sans-serif;
    font-size: 1.15rem;
    line-height: 1.8;
    color: #4b596a;
    margin-bottom: 40px;
}
.thankyou-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
.thankyou-btn {
    font-family: 'Poppins', sans-serif;
    display: inline-flex;
    align-items: center;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
}
.thankyou-btn-primary {
    background: #002352;
    color: #ffffff;
    box-shadow: 0 10px 20px rgba(0, 35, 82, 0.2);
}
.thankyou-btn-primary:hover {
    background: #2f8de6;
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(47, 141, 230, 0.3);
}
.thankyou-btn-secondary {
    background: #ffffff;
    color: #002352;
    border: 2px solid #002352;
}
.thankyou-btn-secondary:hover {
    background: #f4f6f8;
    transform: translateY(-3px);
}

@keyframes scaleIn {
    0% { transform: scale(0); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

@media (max-width: 576px) {
    .thankyou-actions {
        flex-direction: column;
        align-items: center;
    }
    .thankyou-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

/* ===== 404 Page Styles ===== */
.error-section {
    padding: 120px 0;
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
}
.error-shell {
    width: min(800px, calc(100% - 48px));
    margin: 0 auto;
    text-align: center;
}
.error-code {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(6rem, 12vw, 10rem);
    line-height: 1;
    color: #002352;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #002352 0%, #2f8de6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: pulse 2s infinite ease-in-out;
}
.error-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 4vw, 3rem);
    color: #333;
    margin-bottom: 20px;
}
.error-message {
    font-family: 'Poppins', sans-serif;
    font-size: 1.15rem;
    line-height: 1.8;
    color: #4b596a;
    margin-bottom: 40px;
}
.error-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
.error-btn {
    font-family: 'Poppins', sans-serif;
    display: inline-flex;
    align-items: center;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
}
.error-btn-primary {
    background: #d49930;
    color: #ffffff;
    box-shadow: 0 10px 20px rgba(212, 153, 48, 0.2);
}
.error-btn-primary:hover {
    background: #002352;
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(0, 35, 82, 0.3);
}
.error-btn-secondary {
    background: #ffffff;
    color: #002352;
    border: 2px solid #002352;
}
.error-btn-secondary:hover {
    background: #f4f6f8;
    transform: translateY(-3px);
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@media (max-width: 576px) {
    .error-actions {
        flex-direction: column;
        align-items: center;
    }
    .error-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

/* Custom Header color for Thank You and 404 pages (Blue text instead of White) */
.page-thankyou .site-header:not(.is-sticky) .header-shell,
.page-404 .site-header:not(.is-sticky) .header-shell {
    background: rgba(255, 255, 255, 0.85);
    color: #002352;
    border-color: rgba(0, 35, 82, 0.15);
}

/* ==========================================================================
   SPOTLIGHT 3D CAROUSEL & VIDEO SHOWCASE SECTION
   ========================================================================== */
.spotlight-media-section {
	padding: 80px 0;
	background: #ffffff;
	overflow: hidden;
	position: relative;
}

.spotlight-shell {
	width: min(1200px, calc(100% - 32px));
	margin: 0 auto;
}

.spotlight-header {
	text-align: center;
	max-width: 720px;
	margin: 0 auto 40px;
}

.spotlight-label {
	display: inline-block;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	color: #d49930;
	margin-bottom: 8px;
}

.spotlight-title {
	font-family: 'Playfair Display', Georgia, serif;
	font-size: clamp(2rem, 3.2vw, 2.75rem);
	font-weight: 700;
	color: #002352;
	margin-bottom: 12px;
	line-height: 1.2;
}

.spotlight-subtitle {
	font-family: 'Poppins', sans-serif;
	font-size: 1rem;
	color: #64748b;
	line-height: 1.6;
}

/* 3D Stage & Carousel */
.spotlight-carousel-wrapper {
	position: relative;
	width: 100%;
	margin: 20px 0 30px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.spotlight-carousel-stage {
	position: relative;
	width: 100%;
	max-width: 1000px;
	height: 380px;
	perspective: 1200px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: visible;
}

.spotlight-track {
	position: relative;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.spotlight-card {
	position: absolute;
	width: min(540px, 78vw);
	height: 330px;
	border-radius: 22px;
	overflow: hidden;
	background: #1e293b;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
	transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), 
	            opacity 0.5s ease, 
	            filter 0.5s ease, 
	            box-shadow 0.5s ease,
	            z-index 0.5s ease;
	cursor: pointer;
	user-select: none;
	-webkit-user-select: none;
}

.spotlight-card__image-wrap {
	position: relative;
	width: 100%;
	height: 100%;
}

.spotlight-card__image-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.5s ease;
}

.spotlight-card__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(10, 25, 47, 0.88) 0%, rgba(10, 25, 47, 0.3) 50%, rgba(10, 25, 47, 0) 100%);
	display: flex;
	align-items: flex-end;
	padding: 24px;
	transition: opacity 0.3s ease;
}

.spotlight-card__meta {
	color: #ffffff;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.spotlight-card__name {
	font-family: 'Poppins', sans-serif;
	font-size: 1.25rem;
	font-weight: 700;
	margin: 0 0 4px 0;
	color: #ffffff;
	letter-spacing: 0.3px;
}

.spotlight-card__role {
	font-family: 'Poppins', sans-serif;
	font-size: 0.9rem;
	font-weight: 500;
	margin: 0;
	color: #fbbf24;
	opacity: 0.95;
}

/* Card Positional Classes */
.spotlight-card.is-center {
	transform: translateX(0) scale(1.12);
	opacity: 1;
	z-index: 10;
	filter: none;
	box-shadow: 0 22px 45px rgba(0, 0, 0, 0.28);
}

.spotlight-card.is-left {
	transform: translateX(-48%) scale(0.84);
	opacity: 0.75;
	z-index: 5;
	filter: brightness(0.82);
}

.spotlight-card.is-right {
	transform: translateX(48%) scale(0.84);
	opacity: 0.75;
	z-index: 5;
	filter: brightness(0.82);
}

.spotlight-card.is-far-left {
	transform: translateX(-85%) scale(0.68);
	opacity: 0.25;
	z-index: 2;
	filter: brightness(0.6);
	pointer-events: none;
}

.spotlight-card.is-far-right {
	transform: translateX(85%) scale(0.68);
	opacity: 0.25;
	z-index: 2;
	filter: brightness(0.6);
	pointer-events: none;
}

.spotlight-card.is-hidden {
	transform: translateX(0) scale(0.5);
	opacity: 0;
	z-index: 1;
	pointer-events: none;
}

/* Navigation Buttons */
.spotlight-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: #ff9800;
	color: #ffffff;
	border: none;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.1rem;
	cursor: pointer;
	z-index: 25;
	box-shadow: 0 8px 20px rgba(255, 152, 0, 0.35);
	transition: transform 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}

.spotlight-nav:hover {
	background: #e68a00;
	transform: translateY(-50%) scale(1.1);
	box-shadow: 0 12px 25px rgba(255, 152, 0, 0.45);
}

.spotlight-nav--prev {
	left: 5px;
}

.spotlight-nav--next {
	right: 5px;
}

/* Dots */
.spotlight-dots {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	margin: 20px 0 60px;
}

.spotlight-dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: #cbd5e1;
	border: none;
	padding: 0;
	cursor: pointer;
	transition: background-color 0.3s ease, transform 0.3s ease, width 0.3s ease;
}

.spotlight-dot.is-active {
	background: #ff9800;
	width: 28px;
	border-radius: 12px;
}

/* Videos Section */
.spotlight-videos-wrapper {
	margin-top: 50px;
	padding-top: 50px;
	border-top: 1px solid #e2e8f0;
}

.spotlight-videos-header {
	text-align: center;
	margin-bottom: 35px;
}

.spotlight-videos-title {
	font-family: 'Playfair Display', Georgia, serif;
	font-size: 1.85rem;
	font-weight: 700;
	color: #002352;
	margin-bottom: 8px;
}

.spotlight-videos-desc {
	font-family: 'Poppins', sans-serif;
	font-size: 0.95rem;
	color: #64748b;
}

.spotlight-videos-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
}

.video-card {
	background: #ffffff;
	border-radius: 18px;
	overflow: hidden;
	border: 1px solid #e2e8f0;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 18px 35px rgba(0, 0, 0, 0.1);
}

.video-card__media {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
	background: #0f172a;
}

.video-card__media video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.video-card__info {
	padding: 18px 20px;
}

.video-card__title {
	font-family: 'Poppins', sans-serif;
	font-size: 1.05rem;
	font-weight: 600;
	color: #0f172a;
	margin: 0 0 4px 0;
}

.video-card__subtitle {
	font-family: 'Poppins', sans-serif;
	font-size: 0.85rem;
	color: #d49930;
	font-weight: 500;
	margin: 0;
}

/* Responsive Media Queries */
@media (max-width: 992px) {
	.spotlight-carousel-stage {
		height: 320px;
	}
	.spotlight-card {
		height: 280px;
	}
	.spotlight-videos-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.spotlight-media-section {
		padding: 50px 0;
	}
	.spotlight-carousel-stage {
		height: 280px;
	}
	.spotlight-card {
		width: min(340px, 85vw);
		height: 250px;
	}
	.spotlight-card.is-left {
		transform: translateX(-35%) scale(0.8);
		opacity: 0.5;
	}
	.spotlight-card.is-right {
		transform: translateX(35%) scale(0.8);
		opacity: 0.5;
	}
	.spotlight-nav {
		width: 40px;
		height: 40px;
		font-size: 0.95rem;
	}
	.spotlight-videos-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}
}

@media (max-width: 480px) {
	.spotlight-card.is-left,
	.spotlight-card.is-right {
		opacity: 0.2;
	}
	.spotlight-nav--prev {
		left: 0px;
	}
	.spotlight-nav--next {
		right: 0px;
	}
}


