/* ── Reset & Base ── */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Barlow', sans-serif;
	font-size: 15px;
	color: #444;
	background: #fff;
	line-height: 1.7;
}

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

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

ul {
	list-style: none;
}

h1,
h2,
h3,
h4,
h5 {
	line-height: 1.3;
	color: #1A325A;
}

/* ── Layout ── */
.container {
	max-width: 1170px;
	margin: 0 auto;
	padding: 0 20px;
}

.section {
	padding: 70px 0;
}

.section-label {
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: #ffbf44;
	margin-bottom: 10px;
}

.section-title {
	font-size: 32px;
	font-weight: 800;
	color: #1A325A;
	margin-bottom: 16px;
}

.section-desc {
	font-size: 15px;
	color: #666;
	max-width: 600px;
}

.grid-2 {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	align-items: center;
}

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

.grid-4 {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
}

/* ── Header ── */
.site-header {
	background: #fff;
	box-shadow: 0 2px 12px rgba(26, 50, 90, 0.08);
	position: sticky;
	top: 0;
	z-index: 999;
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 14px 20px;
	max-width: 1170px;
	margin: 0 auto;
}

.site-logo img {
	width: 180px;
}

.site-nav ul {
	display: flex;
	gap: 4px;
	align-items: center;
}

.site-nav ul li a {
	display: block;
	padding: 8px 15px;
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	color: #1A325A;
	border-radius: 4px;
	transition: background 0.2s, color 0.2s;
}

.site-nav ul li a:hover,
.site-nav ul li.active>a {
	color: #fff;
	background: #1A325A;
}

.site-nav ul li.menu-has-children {
	position: relative;
}

.site-nav ul li.menu-has-children .sub-menu {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	background: #fff;
	min-width: 250px;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
	border-radius: 6px;
	padding: 8px 0;
	z-index: 100;
}

@media (min-width: 769px) {
	.site-nav ul li.menu-has-children:hover .sub-menu {
		display: block;
	}
}

/* allow programmatic open via .open class (used by JS toggle) */
.site-nav ul li.menu-has-children.open .sub-menu {
	display: block;
}

.site-nav ul li.menu-has-children .sub-menu li a {
	padding: 9px 20px;
	text-transform: none;
	font-weight: 500;
	font-size: 14px;
	border-radius: 0;
}

/* ── Banner ── */
.site-banner {
	width: 100%;
	line-height: 0;
}

.site-banner img {
	width: 100%;
}

/* ── Hero ── */
.hero {
	background: linear-gradient(135deg, #1A325A 0%, #0d1f3c 100%);
	padding: 80px 0;
	color: #fff;
	text-align: center;
}

.hero h1 {
	font-size: 40px;
	font-weight: 800;
	color: #fff;
	max-width: 800px;
	margin: 0 auto 20px;
}

.hero p {
	font-size: 16px;
	color: rgba(255, 255, 255, 0.8);
	max-width: 680px;
	margin: 0 auto 32px;
}

.btn {
	display: inline-block;
	padding: 14px 36px;
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	border-radius: 4px;
	transition: all 0.2s;
	cursor: pointer;
}

.btn-primary {
	background: #ffbf44;
	color: #1A325A;
}

.btn-primary:hover {
	background: #e6a800;
}

.btn-outline {
	background: transparent;
	color: #fff;
	border: 2px solid rgba(255, 255, 255, 0.5);
	margin-left: 12px;
}

.btn-outline:hover {
	border-color: #fff;
	background: rgba(255, 255, 255, 0.1);
}

/* ── Features + Stats ── */
.features-section {
	background: #f7f9fc;
	padding: 70px 0;
}

.features-inner {
	display: flex;
	gap: 40px;
	align-items: flex-start;
}

.features-left {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 22px;
}

.feature-card {
	display: flex;
	gap: 18px;
	align-items: flex-start;
	background: #fff;
	border-left: 4px solid #1A325A;
	border-radius: 6px;
	padding: 22px 20px;
	box-shadow: 0 2px 10px rgba(26, 50, 90, 0.07);
}

.feature-card .f-icon {
	font-size: 30px;
	min-width: 40px;
}

.feature-card h3 {
	font-size: 17px;
	font-weight: 700;
	color: #1A325A;
	margin-bottom: 6px;
}

.feature-card p {
	font-size: 14px;
	color: #666;
}

.stats-card {
	width: 300px;
	min-width: 260px;
	background: #1A325A;
	border-radius: 10px;
	padding: 36px 28px;
	box-shadow: 0 8px 30px rgba(26, 50, 90, 0.18);
	display: flex;
	flex-direction: column;
	gap: 28px;
}

.stat-item {
	display: flex;
	gap: 14px;
	align-items: flex-start;
	border-bottom: 1px solid rgba(255, 255, 255, 0.15);
	padding-bottom: 24px;
}

.stat-item:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.stat-item .s-icon {
	font-size: 26px;
	min-width: 34px;
}

.stat-item .stat-number {
	font-size: 36px;
	font-weight: 800;
	color: #ffbf44;
	line-height: 1;
}

.stat-item .stat-label {
	font-size: 14px;
	font-weight: 700;
	color: #fff;
	margin: 4px 0 5px;
}

.stat-item .stat-desc {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.65);
}

/* ── About ── */


.checklist {
	margin-top: 16px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 8px 20px;
}

.checklist li {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	color: #444;
}

.checklist li i {
	color: #ffbf44;
	font-size: 13px;
}

.about-img {
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

/* ── Who We Are ── */
.who-section {
	background: linear-gradient(135deg, #1A325A 0%, #0d1f3c 100%);
	color: #fff;
}

.who-section .section-label {
	color: #ffbf44;
}

.who-section .section-title {
	color: #fff;
}

.who-section .section-desc {
	color: rgba(255, 255, 255, 0.75);
}

.who-checklist {
	margin-top: 20px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px 24px;
}

.who-checklist li {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.85);
}

.who-checklist li i {
	color: #ffbf44;
}

/* ── Services ── */
.services-section {
	background: #f7f9fc;
}

.services-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-bottom: 40px;
	flex-wrap: wrap;
	gap: 16px;
}

.service-card {
	background: #fff;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
	transition: transform 0.2s, box-shadow 0.2s;
}

.service-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

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

.service-card-body {
	padding: 20px;
}

.service-card-body .s-icon-wrap {
	width: 44px;
	height: 44px;
	background: #1A325A;
	border-radius: 6px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 12px;
}

.service-card-body .s-icon-wrap i {
	color: #ffbf44;
	font-size: 18px;
}

.service-card-body h3 {
	font-size: 16px;
	font-weight: 700;
	color: #1A325A;
	margin-bottom: 8px;
}

.service-card-body p {
	font-size: 13px;
	color: #666;
	margin-bottom: 14px;
}

.read-more {
	font-size: 13px;
	font-weight: 600;
	color: #1A325A;
	display: flex;
	align-items: center;
	gap: 6px;
}

.read-more:hover {
	color: #ffbf44;
}

/* ── Clients Slider ── */
.clients-section {
	padding: 60px 0 50px;
	background: #fff;
	overflow: hidden;
}
.clients-header {
	text-align: center;
	margin-bottom: 36px;
}
.clients-header .section-title { margin-bottom: 0; }
.clients-track-wrap {
	overflow: hidden;
	position: relative;
}
.clients-track-wrap::before,
.clients-track-wrap::after {
	content: '';
	position: absolute;
	top: 0; bottom: 0;
	width: 80px;
	z-index: 2;
	pointer-events: none;
}
.clients-track-wrap::before { left: 0; background: linear-gradient(to right, #fff, transparent); }
.clients-track-wrap::after  { right: 0; background: linear-gradient(to left, #fff, transparent); }
.clients-track {
	display: flex;
	gap: 16px;
	width: max-content;
	animation: clientsScroll 40s linear infinite;
}
.clients-track:hover { animation-play-state: paused; }
.clients-track span {
	display: inline-flex;
	align-items: center;
	white-space: nowrap;
	padding: 10px 22px;
	background: #f0f4fa;
	border: 1.5px solid #e0e8f4;
	border-radius: 50px;
	font-size: 13px;
	font-weight: 600;
	color: #1A325A;
	letter-spacing: 0.3px;
	transition: background 0.2s, color 0.2s, border-color 0.2s;
	cursor: default;
}
.clients-track span:hover {
	background: #1A325A;
	color: #ffbf44;
	border-color: #1A325A;
}
@keyframes clientsScroll {
	0%   { transform: translateX(0); }
	100% { transform: translateX(-50%); }
}

/* ── Footer ── */
.site-footer {
	background: #0d1f3c;
	color: rgba(255, 255, 255, 0.7);
	padding: 60px 0 0;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	gap: 40px;
	padding-bottom: 40px;
}

.footer-col h4 {
	font-size: 15px;
	font-weight: 700;
	color: #ffbf44;
	margin-bottom: 18px;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.footer-col p {
	font-size: 13px;
	line-height: 1.8;
}

.footer-col ul li {
	margin-bottom: 8px;
}

.footer-col ul li a {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.65);
	transition: color 0.2s;
}

.footer-col ul li a:hover {
	color: #ffbf44;
}

.footer-contact li {
	display: flex;
	gap: 10px;
	align-items: flex-start;
	font-size: 13px;
	margin-bottom: 12px;
}

.footer-contact li i {
	color: #ffbf44;
	margin-top: 3px;
	min-width: 14px;
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	padding: 18px 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 10px;
}

.footer-bottom p {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.45);
}

.footer-logo img {
	width: 140px;
}

/* ── Page Hero ── */
.page-hero {
	background: linear-gradient(135deg, #1A325A 0%, #0d1f3c 100%);
	padding: 60px 0;
	text-align: center;
	color: #fff;
}
.page-hero .breadcrumb {
	font-size: 13px;
	color: rgba(255,255,255,0.55);
	margin-bottom: 12px;
}
.page-hero .breadcrumb a { color: #ffbf44; }
.page-hero .breadcrumb span { margin: 0 8px; }
.page-hero h1 {
	font-size: 38px;
	font-weight: 800;
	color: #fff;
	margin-bottom: 10px;
}
.page-hero p {
	font-size: 15px;
	color: rgba(255,255,255,0.7);
	max-width: 560px;
	margin: 0 auto;
}

/* ── Vision & Mission ── */
.vm-section {
	background: #f7f9fc;
	padding: 70px 0;
}
.vm-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px;
	margin-bottom: 60px;
}
.vm-card {
	background: #fff;
	border-radius: 12px;
	padding: 36px 32px;
	box-shadow: 0 4px 20px rgba(26,50,90,0.08);
	position: relative;
	overflow: hidden;
}
.vm-card::before {
	content: '';
	position: absolute;
	top: 0; left: 0;
	width: 100%; height: 4px;
	background: #ffbf44;
}
.vm-card .vm-icon {
	width: 56px; height: 56px;
	background: #1A325A;
	border-radius: 12px;
	display: flex; align-items: center; justify-content: center;
	margin-bottom: 20px;
}
.vm-card .vm-icon i { color: #ffbf44; font-size: 22px; }
.vm-card h3 { font-size: 22px; font-weight: 800; color: #1A325A; margin-bottom: 14px; }
.vm-card p { font-size: 15px; color: #555; line-height: 1.8; }

/* ── Core Values ── */
.values-section {
	background: #fff;
	padding: 70px 0;
}
.values-section .section-header {
	text-align: center;
	margin-bottom: 48px;
}
.values-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}
.value-card {
	text-align: center;
	padding: 32px 20px;
	border-radius: 10px;
	background: #f7f9fc;
	border: 1.5px solid #e8eef8;
	transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.value-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(26,50,90,0.1);
	background: #1A325A;
}
.value-card:hover h4,
.value-card:hover p { color: #fff; }
.value-card:hover .val-icon { background: rgba(255,255,255,0.15); }
.value-card:hover .val-icon i { color: #ffbf44; }
.val-icon {
	width: 60px; height: 60px;
	background: #e8eef8;
	border-radius: 50%;
	display: flex; align-items: center; justify-content: center;
	margin: 0 auto 18px;
	transition: background 0.2s;
}
.val-icon i { color: #1A325A; font-size: 22px; transition: color 0.2s; }
.value-card h4 { font-size: 16px; font-weight: 700; color: #1A325A; margin-bottom: 10px; transition: color 0.2s; }
.value-card p { font-size: 13px; color: #666; line-height: 1.7; transition: color 0.2s; }

/* ── What We Do ── */
.whatwedo-section {
	background: linear-gradient(135deg, #1A325A 0%, #0d1f3c 100%);
	padding: 70px 0;
}
.whatwedo-section .section-header {
	text-align: center;
	margin-bottom: 48px;
}
.whatwedo-section .section-label { color: #ffbf44; }
.whatwedo-section .section-title { color: #fff; }
.whatwedo-section .section-sub {
	font-size: 15px;
	color: rgba(255,255,255,0.65);
	max-width: 560px;
	margin: 0 auto;
}
.services-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}
.service-item {
	display: flex;
	align-items: center;
	gap: 12px;
	background: rgba(255,255,255,0.07);
	border: 1px solid rgba(255,255,255,0.12);
	border-radius: 8px;
	padding: 16px 18px;
	transition: background 0.2s, border-color 0.2s;
}
.service-item:hover {
	background: rgba(255,191,68,0.12);
	border-color: #ffbf44;
}
.service-item i { color: #ffbf44; font-size: 15px; min-width: 18px; }
.service-item span { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.9); }

/* ── Why Choose Us ── */
.why-section {
	background: #f7f9fc;
	padding: 70px 0;
}
.why-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 50px;
	align-items: center;
}
.why-img {
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 10px 40px rgba(26,50,90,0.12);
}
.why-img img { width: 100%; height: 100%; object-fit: cover; }
.why-right .section-label { color: #ffbf44; }
.why-list { margin-top: 24px; display: flex; flex-direction: column; gap: 16px; }
.why-item {
	display: flex;
	gap: 16px;
	align-items: flex-start;
}
.why-item .wi-icon {
	width: 42px; height: 42px; min-width: 42px;
	background: #1A325A;
	border-radius: 8px;
	display: flex; align-items: center; justify-content: center;
}
.why-item .wi-icon i { color: #ffbf44; font-size: 16px; }
.why-item h5 { font-size: 15px; font-weight: 700; color: #1A325A; margin-bottom: 4px; }
.why-item p { font-size: 13px; color: #666; }

/* ── Stats Bar ── */
.stats-bar {
	background: #1A325A;
	padding: 50px 0;
}
.stats-bar-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	text-align: center;
}
.stat-bar-item { padding: 10px; }
.stat-bar-item .num {
	font-size: 42px;
	font-weight: 800;
	color: #ffbf44;
	line-height: 1;
	margin-bottom: 8px;
}
.stat-bar-item .lbl {
	font-size: 14px;
	font-weight: 600;
	color: rgba(255,255,255,0.85);
	text-transform: uppercase;
	letter-spacing: 0.5px;
}
.stat-bar-item .desc {
	font-size: 12px;
	color: rgba(255,255,255,0.5);
	margin-top: 4px;
}

/* ── CTA ── */
.cta-section {
	background: #fff;
	padding: 70px 0;
	text-align: center;
}
.cta-section .section-label { color: #ffbf44; }
.cta-section .section-title { margin-bottom: 14px; }
.cta-section p {
	font-size: 15px;
	color: #666;
	max-width: 560px;
	margin: 0 auto 32px;
}
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-dark {
	background: #1A325A;
	color: #fff;
	border: 2px solid #1A325A;
}
.btn-dark:hover { background: #0d1f3c; border-color: #0d1f3c; }

/* ── Hamburger ── */
.nav-toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 4px;
}

.nav-toggle span {
	display: block;
	width: 24px;
	height: 2px;
	background: #1A325A;
	border-radius: 2px;
	transition: all 0.3s;
}

.nav-close {
	display: none;
	background: none;
	border: none;
	font-size: 22px;
	color: #fff;
	cursor: pointer;
	align-self: flex-end;
	padding: 4px 8px;
	margin-bottom: 10px;
}

/* submenu toggle button */
.submenu-toggle {
	background: none;
	border: none;
	cursor: pointer;
	color: inherit;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 4px;
	margin-left: 6px;
	font-size: 12px;
}
.submenu-toggle i { pointer-events: none; }

/* ── Responsive ── */
@media (max-width: 1024px) {
	.grid-4 {
		grid-template-columns: repeat(2, 1fr);
	}

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

@media (max-width: 768px) {
	.hero h1 { font-size: 28px; }
	.section-title { font-size: 24px; }
	.grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
	.features-inner { flex-direction: column; }
	.stats-card { width: 100%; }
	.checklist, .who-checklist { grid-template-columns: 1fr; }
	.services-header { flex-direction: column; align-items: flex-start; }
	.footer-grid { grid-template-columns: 1fr; }
	.footer-bottom { flex-direction: column; text-align: center; }
	.nav-toggle { display: flex; }
	.nav-close { display: block; }
	.site-nav {
		position: fixed;
		top: 0; right: -100%;
		width: 260px; height: 100vh;
		background: #1A325A;
		padding: 20px;
		z-index: 1000;
		transition: right 0.3s ease;
		display: flex; flex-direction: column;
		overflow-y: auto;
	}
	.site-nav.open { right: 0; }
	.site-nav ul { flex-direction: column; gap: 4px; }
	.site-nav ul li a { color: rgba(255,255,255,0.85); padding: 12px 16px; font-size: 14px; text-align: center; }
	.site-nav ul li a:hover, .site-nav ul li.active>a { background: rgba(255,255,255,0.12); color: #ffbf44; }
	.site-nav ul li.menu-has-children > a .fa-chevron-down {
		transition: transform 0.25s ease;
		display: inline-block;
	}
	.site-nav ul li.menu-has-children.open > a .fa-chevron-down {
		transform: rotate(180deg);
	}
	/* mobile submenu: inline slide-down inside drawer */
	.site-nav ul li.menu-has-children .sub-menu {
		display: none;
		position: static;
		background: rgba(0,0,0,0.18);
		box-shadow: none;
		border-radius: 6px;
		padding: 6px 0;
		min-width: unset;
		margin-top: 4px;
	}
	.site-nav ul li.menu-has-children.open .sub-menu {
		display: block;
	}
	.site-nav ul li.menu-has-children .sub-menu li a {
		color: rgba(255,255,255,0.78);
		font-size: 13px;
		padding: 10px 20px 10px 36px;
		border-radius: 0;
		border-bottom: 1px solid rgba(255,255,255,0.06);
	}
	.site-nav ul li.menu-has-children .sub-menu li:last-child a {
		border-bottom: none;
	}
	.site-nav ul li.menu-has-children .sub-menu li a:hover {
		color: #ffbf44;
		background: rgba(255,255,255,0.06);
	}
	.page-hero h1 { font-size: 26px; }
	.vm-grid { grid-template-columns: 1fr; }
	.values-grid { grid-template-columns: repeat(2, 1fr); }
	.services-grid { grid-template-columns: 1fr 1fr; }
	.why-grid { grid-template-columns: 1fr; }
	.stats-bar-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
	.values-grid { grid-template-columns: 1fr; }
	.services-grid { grid-template-columns: 1fr; }
	.stats-bar-grid { grid-template-columns: 1fr 1fr; }
}



.contact-section {
	padding: 80px 20px;
}

.contact-container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	max-width: 1200px;
	margin: auto;
}

.contact-info {
	background: #0f2a44;
	color: #fff;
	padding: 30px;
	border-radius: 8px;
}

.contact-info h3 {
	margin-bottom: 20px;
}

.contact-info p {
	margin-bottom: 15px;
}

.contact-form {
	background: #f9f9f9;
	padding: 30px;
	border-radius: 8px;
}

.contact-form input,
.contact-form textarea {
	width: 100%;
	padding: 12px;
	margin-bottom: 15px;
	border: 1px solid #ccc;
	border-radius: 5px;
}

.contact-form button {
	background: #fbbf24;
	color: #000;
	border: none;
	padding: 12px 20px;
	cursor: pointer;
	font-weight: bold;
}

.map {
	margin-top: 60px;
}

iframe {
	width: 100%;
	height: 350px;
	border: none;
}

@media(max-width:768px) {
	.contact-container {
		grid-template-columns: 1fr;
	}
}

/* ── Info Cards ── */
.contact-cards {
	background: #f7f9fc;
	padding: 50px 0;
}

.cards-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

.info-card {
	background: #fff;
	border-radius: 10px;
	padding: 28px 22px;
	text-align: center;
	box-shadow: 0 2px 14px rgba(26, 50, 90, 0.07);
	transition: transform 0.2s, box-shadow 0.2s;
}

.info-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 28px rgba(26, 50, 90, 0.12);
}

.info-card .ic-icon {
	width: 54px;
	height: 54px;
	background: #1A325A;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 16px;
}

.info-card .ic-icon i {
	color: #ffbf44;
	font-size: 20px;
}

.info-card h4 {
	font-size: 15px;
	font-weight: 700;
	color: #1A325A;
	margin-bottom: 8px;
}

.info-card p,
.info-card a {
	font-size: 13px;
	color: #666;
	line-height: 1.7;
}

.info-card a:hover {
	color: #ffbf44;
}

/* ── Contact Main ── */
.contact-main {
	padding: 70px 0;
	background: #fff;
}

.contact-grid {
	display: grid;
	grid-template-columns: 1fr 1.4fr;
	gap: 50px;
	align-items: start;
}

/* Left side */
.contact-left .section-label {
	color: #ffbf44;
}

.contact-left .section-title {
	margin-bottom: 14px;
}

.contact-left .section-desc {
	margin-bottom: 28px;
}

.contact-detail {
	display: flex;
	gap: 16px;
	align-items: flex-start;
	margin-bottom: 22px;
}

.contact-detail .cd-icon {
	width: 44px;
	height: 44px;
	min-width: 44px;
	background: #f0f4fa;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.contact-detail .cd-icon i {
	color: #1A325A;
	font-size: 16px;
}

.contact-detail h5 {
	font-size: 13px;
	font-weight: 700;
	color: #1A325A;
	margin-bottom: 3px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.contact-detail p,
.contact-detail a {
	font-size: 14px;
	color: #555;
}

.contact-detail a:hover {
	color: #ffbf44;
}

.social-row {
	display: flex;
	gap: 10px;
	margin-top: 28px;
}

.social-row a {
	width: 38px;
	height: 38px;
	background: #1A325A;
	border-radius: 6px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 15px;
	transition: background 0.2s;
}

.social-row a:hover {
	background: #ffbf44;
	color: #1A325A;
}

/* Right form */
.contact-form-wrap {
	background: #f7f9fc;
	border-radius: 12px;
	padding: 36px 32px;
	box-shadow: 0 4px 24px rgba(26, 50, 90, 0.07);
}

.contact-form-wrap h3 {
	font-size: 22px;
	font-weight: 800;
	color: #1A325A;
	margin-bottom: 6px;
}

.contact-form-wrap>p {
	font-size: 13px;
	color: #888;
	margin-bottom: 24px;
}

.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

.form-group {
	display: flex;
	flex-direction: column;
	gap: 6px;
	margin-bottom: 16px;
}

.form-group label {
	font-size: 12px;
	font-weight: 700;
	color: #1A325A;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
	padding: 12px 14px;
	border: 1.5px solid #e0e6f0;
	border-radius: 6px;
	font-family: 'Barlow', sans-serif;
	font-size: 14px;
	color: #333;
	background: #fff;
	transition: border-color 0.2s;
	outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	border-color: #1A325A;
}

.form-group textarea {
	resize: vertical;
	min-height: 110px;
}

.form-submit {
	margin-top: 6px;
}

.form-submit .btn {
	width: 100%;
	text-align: center;
	padding: 14px;
	font-size: 14px;
}

/* ── Map ── */
.contact-map {
	background: #f7f9fc;
	padding: 0 0 70px;
}

.map-wrap {
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 24px rgba(26, 50, 90, 0.1);
	line-height: 0;
}

.map-wrap iframe {
	width: 100%;
	height: 420px;
	border: 0;
	display: block;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
	.cards-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.page-hero h1 {
		font-size: 26px;
	}

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

	.contact-grid {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.form-row {
		grid-template-columns: 1fr;
	}

	.contact-form-wrap {
		padding: 24px 18px;
	}
}

@media (max-width: 480px) {
	.cards-grid {
		grid-template-columns: 1fr;
	}
}


.about-section {
	padding: 80px 20px;
	max-width: 1200px;
	margin: auto;
	background: #fff;
}

.about-section .section-label {
	color: #ffbf44;
}


.about-section h2 {
	text-align: center;
	margin-bottom: 30px;
}

.about-text {
	line-height: 1.7;
	margin-bottom: 40px;
}

.values {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	margin-top: 40px;
}

.value-box {
	background: #f4f4f4;
	padding: 25px;
	border-radius: 8px;
	text-align: center;
}

.value-box i {
	font-size: 30px;
	color: #fbbf24;
	margin-bottom: 15px;
}

.stats {
	display: flex;
	justify-content: space-around;
	margin-top: 50px;
	text-align: center;
}

.stats h3 {
	color: #0f2a44;
	font-size: 28px;
}

@media(max-width:768px) {
	.values {
		grid-template-columns: 1fr;
	}

	.stats {
		flex-direction: column;
		gap: 20px;
	}
}


.vm-section {
  padding: 80px 20px;
  background: #f9f9f9;
}

.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.vm-box {
  background: #0f2a44;
  color: #fff;
  padding: 30px;
  border-radius: 8px;
}

.vm-box h2 {
  margin-bottom: 15px;
}

.services-section {
  margin-top: 60px;
  text-align: center;
}

.services-section h2 {
  margin-bottom: 30px;
}



@media(max-width:768px){
  .vm-grid {
    grid-template-columns: 1fr;
  }

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

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.service-box {
    padding: 0;
    border: 1px solid #eee;
    border-radius: 16px;
    background: #fff;
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    display: flex;
    flex-direction: column;
}

.service-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

.service-img {
    position: relative;
    overflow: hidden;
    min-height: 240px;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease, filter 0.4s ease;
}

.service-box:hover .service-img img {
    transform: scale(1.06);
    filter: brightness(1.05);
}

.service-badge {
    position: absolute;
    left: 18px;
    bottom: 18px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.service-content {
    padding: 26px 22px 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.service-box h3 {
    margin: 0;
    font-size: 20px;
    color: #1A325A;
}

.service-box p {
    margin: 0;
    color: #556;
    line-height: 1.8;
}

.service-box ul {
    margin: 0;
    padding: 16px;
    color: #555;
    list-style: none;
    background: #f4f7fb;
    border-radius: 18px;
    display: grid;
    gap: 12px;
}

.service-box ul li {
    margin: 0;
    font-size: 14px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 3px 10px rgba(80, 110, 150, 0.06);
    border: 1px solid rgba(15, 42, 68, 0.08);
}

.service-box ul li:last-child {
    margin-bottom: 0;
}

.service-box ul li::before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #ffbf44;
    min-width: 20px;
    display: inline-flex;
    justify-content: center;
}

.services-grid.detailed {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-intro-section,
.drone-intro-section {
    background: #fff;
}

.service-page-intro,
.drone-inspection-intro {
    align-items: center;
    gap: 40px;
}

.service-hero-image,
.drone-hero-image {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 20px 70px rgba(0,0,0,0.12);
}

.service-capabilities-section,
.drone-capabilities-section {
    background: #f7f9fc;
}

.service-capabilities-section .services-section,
.drone-capabilities-section .services-section {
    padding: 40px 0;
}

.drone-hero-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    min-height: 420px;
}

.image-caption {
    position: absolute;
    left: 20px;
    bottom: 20px;
    background: rgba(0, 0, 0, 0.65);
    color: #fff;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 14px;
    line-height: 1.4;
}

.about-text .section-label {
    font-size: 13px;
    letter-spacing: 1.5px;
    color: #ffbf44;
    text-transform: uppercase;
    margin-bottom: 14px;
    display: inline-block;
}

.about-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1A325A;
}

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

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: #444;
}

.feature-item i {
    color: #ffbf44;
}

@media (max-width: 900px) {
    .drone-inspection-intro {
        grid-template-columns: 1fr;
    }

    .drone-hero-image img {
        min-height: 320px;
    }
}

@media (max-width: 680px) {
    .about-text h2 {
        font-size: 28px;
    }

    .service-box ul {
        padding-left: 18px;
    }
}
