:root {
	--navy: #13294B;
	--bg: #FFFFFF;
	--soft: #F7F9FC;
	--text: #0F172A;
	--muted: #64748B;
	--line: #E5E7EB;
	--shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
	--shadow2: 0 10px 22px rgba(15, 23, 42, 0.06);
	--radius: 18px;
	--radius2: 26px;
	--max: 1200px;
}

* {
	box-sizing: border-box
}

html,
body {
	margin: 0;
	padding: 0
}

body {
	font-family: 'Montserrat', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	background: var(--bg);
	color: var(--text);
	line-height: 1.55;
}

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

img {
	max-width: 100%;
	display: block
}

.container {
	max-width: var(--max);
	margin: 0 auto;
	padding: 0 0 16px
}

@media(min-width:640px) {
	.container {
		padding: 0 24px
	}
}

@media(min-width:1024px) {
	.container {
		padding: 0 28px
	}
}

.topbar {
	border-bottom: 1px solid var(--line);
	background: rgba(255, 255, 255, 0.75);
	backdrop-filter: blur(10px);
}

.topbar .row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 10px 0;
	font-size: 13px;
	color: #475569;
	flex-wrap: wrap
}

.topbar .row .left,
.topbar .row .right {
	display: flex;
	align-items: center;
	gap: 14px;
	flex-wrap: wrap
}

.hide-sm {
	display: none
}

@media(min-width:640px) {
	.hide-sm {
		display: flex
	}
}

header {
	position: sticky;
	top: 0;
	z-index: 40;
	border-bottom: 1px solid var(--line);
	background: rgba(255, 255, 255, 0.85);
	backdrop-filter: blur(10px);
}

.navbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	height: 100px
}

.brand {
	display: flex;
	align-items: center;
	gap: 10px
}

.mark {
	width: 38px;
	height: 38px;
	border-radius: 14px;
	background: var(--navy);
	display: grid;
	place-items: center;
	color: #fff;
	font-weight: 800
}

.brand-name {
	font-weight: 800;
	letter-spacing: 0.02em;
	color: var(--navy);
	font-size: 18px
}

nav.primary {
	display: none;
	gap: 22px;
	align-items: center;
	font-size: 14px;
	color: #334155
}

nav.primary a:hover {
	opacity: 0.85
}

@media(min-width:920px) {
	nav.primary {
		display: flex
	}
}

.actions {
	display: flex;
	gap: 10px;
	align-items: center
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	height: 44px;
	padding: 0 16px;
	border-radius: 14px;
	font-weight: 700;
	font-size: 14px;
	border: 1px solid transparent;
	cursor: pointer;
	transition: opacity .2s ease, transform .05s ease, border-color .2s ease;
	user-select: none;
	white-space: nowrap;
}

.btn:active {
	transform: translateY(1px)
}

.btn.primary {
	background: var(--navy);
	color: #fff
}

.btn.primary:hover {
	opacity: 0.95
}

.btn.outline {
	background: #fff;
	border-color: var(--line);
	color: var(--text)
}

.btn.outline:hover {
	border-color: #CBD5E1
}

.btn.small {
	height: 38px;
	padding: 0 12px;
	font-size: 13px;
	border-radius: 12px
}

.mobile-toggle {
	display: inline-flex
}

@media(min-width:920px) {
	.mobile-toggle {
		display: none
	}
}

.mobile-menu {
	display: none;
	border-top: 1px solid var(--line);
	padding: 10px 0 16px 0;
}

.mobile-menu a {
	display: block;
	padding: 10px 0;
	color: #334155;
	font-size: 14px
}

.mobile-menu a:hover {
	opacity: 0.85
}

.section {
	padding: 58px 0
}

@media(min-width:640px) {
	.section {
		padding: 86px 0
	}
}

.soft {
	background: var(--soft);
	border-top: 1px solid #EEF2F7;
	border-bottom: 1px solid #EEF2F7
}

.hero {
	background: linear-gradient(to bottom, #F8FAFC, #FFFFFF);
}

.hero-grid {
	display: grid;
	gap: 28px;
	align-items: center
}

@media(min-width:1024px) {
	.hero-grid {
		grid-template-columns: 1.15fr 0.85fr;
		gap: 42px
	}
}

.kickers {
	display: flex;
	flex-wrap: wrap;
	gap: 10px
}

.kicker {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	border: 1px solid var(--line);
	background: rgba(255, 255, 255, 0.6);
	backdrop-filter: blur(6px);
	padding: 8px 12px;
	border-radius: 999px;
	font-size: 13px;
	color: #334155
}

.kicker .dot {
	width: 8px;
	height: 8px;
	border-radius: 999px;
	background: var(--navy)
}

h1 {
	margin: 14px 0 0;
	font-size: 38px;
	line-height: 1.12;
	letter-spacing: -0.02em
}

@media(min-width:640px) {
	h1 {
		font-size: 54px
	}
}

.lead {
	margin: 14px 0 0;
	color: var(--muted);
	max-width: 62ch;
	font-size: 16px
}

@media(min-width:640px) {
	.lead {
		font-size: 18px
	}
}

.cta-row {
	margin-top: 22px;
	display: flex;
	flex-direction: column;
	gap: 12px
}

@media(min-width:640px) {
	.cta-row {
		flex-direction: row
	}
}

.stats {
	margin-top: 22px;
	display: grid;
	gap: 12px
}

@media(min-width:640px) {
	.stats {
		grid-template-columns: repeat(3, 1fr)
	}
}

.stat {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 18px;
	padding: 16px;
	box-shadow: var(--shadow2)
}

.stat .value {
	font-size: 22px;
	font-weight: 800;
	color: var(--navy)
}

.stat .label {
	margin-top: 6px;
	font-size: 13px;
	color: var(--muted)
}

.panel {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius2);
	padding: 18px;
	box-shadow: var(--shadow)
}

.panel-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px
}

.badge {
	background: var(--navy);
	color: #fff;
	font-size: 12px;
	font-weight: 800;
	padding: 6px 10px;
	border-radius: 999px
}

.panel-title {
	font-size: 13px;
	font-weight: 800;
	color: var(--navy)
}

.panel-list {
	margin-top: 14px;
	display: grid;
	gap: 14px
}

.rowitem {
	display: flex;
	gap: 12px
}

.iconbox {
	width: 42px;
	height: 42px;
	border-radius: 18px;
	border: 1px solid rgba(19, 41, 75, 0.18);
	background: #F8FAFC;
	display: grid;
	place-items: center;
	color: var(--navy);
	font-weight: 900
}

.rowitem .t {
	font-weight: 800
}

.rowitem .d {
	margin-top: 4px;
	color: var(--muted);
	font-size: 13px
}

.note {
	margin-top: 16px;
	background: #F8FAFC;
	border: 1px solid #EEF2F7;
	border-radius: 18px;
	padding: 14px
}

.note .t {
	font-weight: 800;
	font-size: 13px
}

.note .d {
	margin-top: 4px;
	color: var(--muted);
	font-size: 13px
}

.sec-head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 18px
}

.sec-head h2 {
	margin: 0;
	font-size: 26px;
	letter-spacing: -0.01em
}

@media(min-width:640px) {
	.sec-head h2 {
		font-size: 34px
	}
}

.sec-head p {
	margin: 8px 0 0;
	color: var(--muted);
	max-width: 78ch
}

.sec-head .right {
	display: none
}

@media(min-width:640px) {
	.sec-head .right {
		display: block
	}
}

.grid3 {
	margin-top: 22px;
	display: grid;
	gap: 16px
}

@media(min-width:920px) {
	.grid3 {
		grid-template-columns: repeat(3, 1fr);
		gap: 18px
	}
}

.grid2 {
	margin-top: 22px;
	display: grid;
	gap: 16px
}

@media(min-width:920px) {
	.grid2 {
		grid-template-columns: repeat(2, 1fr);
		gap: 18px
	}
}

.card {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius2);
	box-shadow: var(--shadow2);
	overflow: hidden
}

.card .pad {
	padding: 18px
}

.card h3 {
	margin: 10px 0 0;
	font-size: 18px
}

.card p {
	margin: 10px 0 0;
	color: var(--muted);
	font-size: 14px
}

.card ul {
	margin: 14px 0 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 10px
}

.li {
	display: flex;
	gap: 10px;
	align-items: flex-start;
	color: #475569;
	font-size: 14px
}

.tick {
	width: 18px;
	height: 18px;
	border-radius: 6px;
	background: rgba(19, 41, 75, 0.12);
	display: grid;
	place-items: center;
	color: var(--navy);
	font-weight: 900;
	flex: 0 0 auto;
	margin-top: 1px
}

.link {
	margin-top: 14px;
	display: inline-flex;
	gap: 8px;
	align-items: center;
	color: var(--navy);
	font-weight: 800;
	font-size: 14px
}

.link:hover {
	opacity: 0.85
}

.tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 10px
}

.tag {
	font-size: 12px;
	color: #334155;
	background: #F1F5F9;
	border: 1px solid #E2E8F0;
	padding: 6px 10px;
	border-radius: 999px;
	font-weight: 800
}

.form {
	display: grid;
	gap: 10px;
	margin-top: 12px
}

input,
select,
textarea {
	width: 100%;
	font-family: inherit;
	border: 1px solid var(--line);
	border-radius: 14px;
	padding: 12px 12px;
	font-size: 14px;
	outline: none;
	background: #fff
}

textarea {
	min-height: 120px;
	resize: vertical
}

input:focus,
select:focus,
textarea:focus {
	border-color: #CBD5E1;
	box-shadow: 0 0 0 4px rgba(19, 41, 75, 0.10)
}

.fine {
	font-size: 12px;
	color: var(--muted);
	margin: 8px 0 0
}

footer {
	border-top: 1px solid var(--line);
	padding: 40px 0;
	background: #fff
}

.footer-grid {
	display: grid;
	gap: 24px
}

@media(min-width:920px) {
	.footer-grid {
		grid-template-columns: 1.2fr 1fr 1fr 1fr
	}
}

.f-title {
	font-weight: 900
}

.f-links {
	margin-top: 10px;
	display: grid;
	gap: 8px;
	color: var(--muted);
	font-size: 14px
}

.f-links a:hover {
	opacity: 0.85
}

.copyright {
	margin-top: 26px;
	padding-top: 16px;
	border-top: 1px solid var(--line);
	display: flex;
	flex-direction: column;
	gap: 10px;
	font-size: 12px;
	color: var(--muted)
}

@media(min-width:640px) {
	.copyright {
		flex-direction: row;
		align-items: center;
		justify-content: space-between
	}
}

.page-hero {
	padding: 44px 0 18px 0
}

.breadcrumbs {
	font-size: 13px;
	color: var(--muted)
}

.page-title {
	margin: 10px 0 0;
	font-size: 34px;
	letter-spacing: -0.01em
}

.page-sub {
	margin: 10px 0 0;
	color: var(--muted);
	max-width: 80ch
}

.callout {
	margin-top: 18px;
	border: 1px solid rgba(19, 41, 75, 0.18);
	background: #F8FAFC;
	border-radius: 18px;
	padding: 14px
}

.callout strong {
	color: var(--navy)
}

.hero-slider {
	position: relative;
	height: 85vh;
	overflow: hidden;
}

.slides {
	height: 100%;
	position: relative;
}

.slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	transition: opacity .8s ease;
}

.slide.active {
	opacity: 1;
	z-index: 2;
}

.slide-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	animation: heroZoom 18s ease forwards;
}

@keyframes heroZoom {
	from {
		transform: scale(1)
	}

	to {
		transform: scale(1.15)
	}
}

.slide-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom,
			rgba(10, 20, 40, .25),
			rgba(10, 20, 40, .55));
	z-index: 1;
}

.slide-content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
	color: white;
	z-index: 3;
	max-width: 700px;

	display: flex;
	flex-direction: column;
	align-items: center;
	/* ensures logo + text + buttons center */
}

.cta-row {
	margin-top: 22px;
	display: flex;
	flex-direction: column;
	gap: 12px;
	align-items: center;
	/* centers buttons */
	justify-content: center;
}

@media(min-width:640px) {

	.cta-row {
		flex-direction: row;
		align-items: center;
		justify-content: center;
		/* keeps buttons centered on desktop */
	}

}

.card-img {
	width: 100%;
	height: 180px;
	overflow: hidden;
}

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

@media (max-width:920px) {

	.card-img {
		height: 160px;
	}

}

@media (max-width:640px) {

	.card-img {
		height: 150px;
	}

}

.stat-icon {
	margin-bottom: 10px;
}

.stat-icon img {
	width: 40px;
	height: 40px;
	object-fit: contain;
}


.solution-img,
.case-img {
	width: 100%;
	height: 180px;
	overflow: hidden;
}

.solution-img img,
.case-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

@media (max-width:920px) {

	.solution-img,
	.case-img {
		height: 160px;
	}

}

@media (max-width:640px) {

	.solution-img,
	.case-img {
		height: 150px;
	}

}

#scrollTopBtn {
	position: fixed;
	bottom: 20px;
	right: 30px;
	width: 50px;
	height: 50px;
	border: none;
	border-radius: 50%;
	background: #13294B;
	color: white;
	font-size: 22px;
	cursor: pointer;
	display: none;
	z-index: 9999;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

#scrollTopBtn:hover {
	transform: translateY(-3px);
}

.page-hero {
	position: relative;
	min-height: 420px;
	display: flex;
	align-items: center;
	overflow: hidden;
	color: white;
}

.hero-bg {
	position: absolute;
	inset: 0;
}

.hero-bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero-overlay {
	position: absolute;
	inset: 0;
	background: rgba(10, 20, 40, 0.55);
}

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

.cap-img {
	height: 250px;
	overflow: hidden;
}

.cap-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.service-img {
	height: 250px;
	overflow: hidden;
}

.service-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.industry-img {
	height: 250px;
	overflow: hidden;
}

.industry-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* ==========================================================================
   MOBILE & TABLET STYLING (LOGO CENTERED, BUTTONS & TOGGLE BELOW)
   ========================================================================== */
@media (max-width: 920px) {
	nav.primary {
		display: none !important;
		/* Keep desktop navigation hidden */
	}

	.navbar {
		display: flex;
		flex-direction: column;
		/* Stacks the logo section above the buttons */
		align-items: center;
		justify-content: center;
		height: auto;
		/* Allow header height to expand naturally around two rows */
		padding: 16px 0;
		gap: 16px;
		/* Clean vertical spacing between logo and your buttons */
	}

	.brand {
		display: flex;
		justify-content: center;
		align-items: center;
		width: 100%;
	}

	/* Secure logo presentation scale so it never vanishes */
	.brand-logo {
		height: 42px !important;
		width: auto !important;
		max-width: 180px !important;
		margin: 0 auto;
		/* Keeps the logo image perfectly centered */
	}

	/* Wrap action controls and burger bar in a clean centered line underneath */
	.actions {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 100%;
		gap: 12px;
		/* Uniform spacing between your buttons and menu toggle */
	}

	.actions .btn {
		height: 40px;
		padding: 0 14px;
		font-size: 13px;
	}

	/* Force the Mobile Toggle button (☰) to be large, prominent, and clickable */
	.mobile-toggle {
		display: inline-flex !important;
		align-items: center;
		justify-content: center;
		background: var(--navy) !important;
		/* Deep contrast background */
		color: #FFFFFF !important;
		/* Crisp white icon */
		border: none !important;
		border-radius: 8px !important;
		width: 35px !important;
		height: 35px !important;
		font-size: 22px !important;
		cursor: pointer !important;
		z-index: 100000 !important;
	}

	/* Clean up the dropdown menu positioning */
	.mobile-menu {
		border-top: 1px solid var(--line);
		padding: 10px 16px;
		width: 100%;
		background: #FFFFFF !important;
		box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
	}
}

/* Extra adjustments for smaller phones */
@media (max-width: 480px) {
	.navbar {
		padding: 14px 0;
		gap: 12px;
	}

	.brand-logo {
		height: 60px !important;
		/* Slightly smaller logo profile on very tight mobile viewports */
	}

	/* Ensure button actions fit on one neat line without wrapping text */
	.actions {
		gap: 8px;
	}

	.actions .btn {
		padding: 0 10px;
		font-size: 14px;
		height: 38px;
	}

	.mobile-toggle {
		width: 38px !important;
		height: 38px !important;
		font-size: 20px !important;
	}
}