* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}
* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

:root{
	--primary-color: #0A2342;
	--secondary-color: #C89B3C;
	--white: #ffffff;
	--gray: #F5F7FA;
}

.text-center{
	text-align: center;
}
.ml-4{
	margin-left: 2.2rem;
}

body {
	margin: 0;
	/*font-family: "Segoe UI", Tahoma, Arial, sans-serif;*/
	font-family: 'Lato', Helvetica, Arial, sans-serif !important;
	color: #1b1b18;
	background: #ffffff;
}

a {
	color: inherit;
	text-decoration: none;
}

img {
	max-width: 100%;
	display: block;
}

header {
	width: 100%;
}

.top-strip {
	background: #000000;
	color: #ffffff;
}

.top-strip > div,
.site-header__inner,
.hero-slider__content,
.services-section__inner,
.site-footer__inner {
	max-width: 1200px;
	margin: 0 auto;
	padding-left: 16px;
	padding-right: 16px;
}

.top-strip > div {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	padding-top: 12px;
	padding-bottom: 12px;
	font-size: 13px;
	line-height: 1.5;
}

.site-header__main {
	background: #ffffff;
	border-bottom: 1px solid #e5e7eb;
	position: relative;
	z-index: 80;
}

header.is-header-sticky {
	padding-bottom: var(--site-header-height, 0px);
}

.site-header__main.is-sticky {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	box-shadow: 0 8px 24px rgba(15, 23, 42, 0.1);
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding-top: 20px;
	padding-bottom: 20px;
}

header > div:first-child > div > div:first-child {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px 24px;
}

header > div:first-child a,
header > div:first-child span {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

header > div:first-child a {
	transition: color 0.2s ease;
}

header > div:first-child a:hover {
	color: #1f6fb2;
}

header > div:first-child svg {
	flex: 0 0 auto;
}

header > div:first-child > div > div:last-child {
	display: flex;
	align-items: center;
	gap: 16px;
	color: #b8b8b8;
}

.site-logo {
	display: inline-flex;
	align-items: center;
}

.site-logo img {
	width: clamp(150px, 30vw, 330px);
	max-height: 68px;
	height: auto;
	object-fit: contain;
}

.site-logo > span {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	line-height: 1;
}

.site-logo > span > span:first-child {
	font-size: 22px;
	font-weight: 300;
	letter-spacing: 0.12em;
	color: #7c7c7c;
	white-space: nowrap;
}

.site-logo > span > span:first-child span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 4px 7px;
	background: #1f6fb2;
	color: #ffffff;
	border-radius: 3px;
	font-size: 18px;
}

.site-logo > span > span:last-child {
	margin-top: 10px;
	font-size: 12px;
	letter-spacing: 0.35em;
	color: #8b8b8b;
	white-space: nowrap;
}

header nav {
	display: flex;
	flex-wrap: wrap;
	/* align-items: center; */
	justify-content: flex-end;
	gap: 12px 20px;
	flex: 1 1 auto;
	min-width: 0;
	font-size: 15px;
	font-weight: 500;
	color: #333333;
}

header nav a,
header nav .dropdown > a {
	transition: color 0.2s ease;
}

header nav a:hover,
header nav .dropdown:hover > a {
	color: #1f6fb2;
}

.nav-item.dropdown {
	position: relative;
	padding-bottom: 14px;
	margin-bottom: -14px;
}

.dropdown-menu {
	position: absolute;
	top: calc(100% - 1px);
	left: 0;
	min-width: 280px;
	padding: 0;
	margin: 0;
	list-style: none;
	background: #f7f7f7;
	border: 1px solid #e5e7eb;
	box-shadow: 0 18px 35px rgba(15, 23, 42, 0.12);
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
	z-index: 30;
}

.nav-item.dropdown:hover .dropdown-menu,
.nav-item.dropdown:focus-within .dropdown-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.dropdown-menu li + li {
	border-top: 1px solid #e5e7eb;
}

.dropdown-menu a {
	display: block;
	padding: 16px 20px;
	font-size: 16px;
	line-height: 1.2;
	color: #1b1b18;
	white-space: normal;
}

.dropdown-menu a:hover {
	background: #eef5fb;
	color: #1f6fb2;
}

.mobile-menu-toggle {
	display: none;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border: 1px solid #d7e2ec;
	border-radius: 6px;
	background: #ffffff;
	color: #1f6fb2;
	font-size: 22px;
	cursor: pointer;
	transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.mobile-menu-toggle:hover {
	border-color: #1f6fb2;
	background: #eef5fb;
}

.mobile-menu-overlay {
	position: fixed;
	inset: 0;
	z-index: 90;
	background: rgba(15, 23, 42, 0.5);
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.25s ease, visibility 0.25s ease;
}

.mobile-menu {
	position: fixed;
	top: 0;
	right: 0;
	z-index: 100;
	width: min(70vw, 360px);
	height: 100vh;
	background: #ffffff;
	box-shadow: -18px 0 40px rgba(15, 23, 42, 0.18);
	transform: translateX(100%);
	transition: transform 0.28s ease;
	overflow-y: auto;
}

.mobile-menu__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 18px 20px;
	border-bottom: 1px solid #e5e7eb;
}

.mobile-menu__title {
	font-size: 18px;
	font-weight: 600;
	color: #1b1b18;
}

.mobile-menu__close {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border: 1px solid #d7e2ec;
	border-radius: 6px;
	background: #ffffff;
	color: #1f6fb2;
	font-size: 20px;
	cursor: pointer;
}

.mobile-menu__nav {
	display: flex;
	flex-direction: column;
	gap: 0;
	padding: 8px 0 28px;
	font-size: 16px;
	font-weight: 500;
	color: #333333;
	text-align: left;
}

.mobile-menu__nav a,
.mobile-menu__nav summary {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	padding: 15px 20px;
	border-bottom: 1px solid #edf2f7;
	cursor: pointer;
	transition: background 0.2s ease, color 0.2s ease;
}

.mobile-menu__nav a:hover,
.mobile-menu__nav summary:hover {
	background: #eef5fb;
	color: #1f6fb2;
}

.mobile-menu__nav details a {
	padding-left: 34px;
	font-size: 15px;
	font-weight: 400;
	background: #f8fafc;
}

.mobile-menu__nav summary::-webkit-details-marker {
	display: none;
}
summary {
    list-style: none;
}

summary::-webkit-details-marker {
    display: none;
}

.mobile-menu__nav summary::after {
	content: "\f107";
	/*font-family: "Font Awesome 6 Free";*/
	font-weight: 900;
	margin-left: auto;
	padding-left: 12px;
	font-size: 13px;
	color: #1f6fb2;
	transition: transform 0.2s ease;
}

.mobile-menu__nav details[open] summary::after {
	transform: rotate(180deg);
}

body.mobile-menu-open {
	overflow: hidden;
}

body.mobile-menu-open .mobile-menu-overlay {
	opacity: 1;
	visibility: visible;
}

body.mobile-menu-open .mobile-menu {
	transform: translateX(0);
}

.hero-slider {
	position: relative;
	width: 100%;
	height: clamp(420px, 80vh, 760px);
	overflow: hidden;
	background: #0f172a;
	margin-top: 0;
}

.hero-slider__viewport {
	position: relative;
	width: 100%;
	height: 100%;
}

.hero-slider__slide {
	position: absolute;
	inset: 0;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	opacity: 0;
	transform: scale(1.03);
	transition: opacity 0.8s ease, transform 0.8s ease;
	display: flex;
	align-items: center;
}

.hero-slider__slide.is-active {
	opacity: 1;
	transform: scale(1);
}

.hero-slider__content {
	width: 100%;
	color: #ffffff;
	text-shadow: 0 2px 18px rgba(10, 18, 32, 0.35);
}

.hero-slider__eyebrow {
	margin: 0 0 12px;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.85);
}

.hero-slider__content h1 {
	margin: 0;
	max-width: 720px;
	font-size: clamp(34px, 5vw, 45px);
	line-height: 1.05;
	font-weight: 600;
}

.hero-slider__content p:last-child {
	max-width: 640px;
	margin: 18px 0 0;
	font-size: 18px;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.9);
}

.hero-slider__dots {
	position: absolute;
	left: 50%;
	bottom: 22px;
	transform: translateX(-50%);
	display: flex;
	gap: 10px;
	z-index: 2;
}

.hero-slider__dots button {
	width: 12px;
	height: 12px;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, 0.9);
	background: rgba(255, 255, 255, 0.35);
	padding: 0;
	cursor: pointer;
	transition: transform 0.2s ease, background-color 0.2s ease, width 0.2s ease;
}

.hero-slider__dots button.is-active {
	width: 34px;
	background: #ffffff;
	transform: none;
}

.services-section {
	padding: 70px 0;
	background: var(--gray);
}

.services-section__heading {
	max-width: 760px;
	margin-bottom: 28px;
}

.services-section__eyebrow {
	margin: 0 0 10px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: #1f6fb2;
}

.services-section__heading h2 {
	margin: 0;
	font-size: clamp(28px, 4vw, 42px);
	line-height: 1.15;
	font-weight: 600;
}

.services-section__heading p:last-child {
	margin: 12px 0 0;
	font-size: 16px;
	line-height: 1.8;
	color: #5f6b7a;
}

.services-section__cards {
	display: grid;
	gap: 18px;
}

.services-section__cards--grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.services-section:not(.is-expanded) .services-card--extra {
	display: none;
}

.services-card {
	display: flex;
	flex-direction: column;
	min-height: 100%;
	border: 1px solid #dde3ea;
	background: #ffffff;
	border-radius: 20px;
	overflow: hidden;
	text-align: left;
	box-shadow: 0 10px 25px rgba(15, 23, 42, 0.04);
	transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.services-card:hover {
	transform: translateY(-4px);
	border-color: #bfd3e4;
	box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.services-card__image {
	display: block;
	position: relative;
	aspect-ratio: 5 / 3;
	overflow: hidden;
	background: #dbe5ef;
}

.services-card__image::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(10, 18, 32, 0.05), rgba(10, 18, 32, 0.38));
	z-index: 1;
}

.services-card__image img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.35s ease;
}

.services-card:hover .services-card__image img {
	transform: scale(1.05);
}

.services-card__content {
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding: 18px;
	flex: 1;
}

.services-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: 14px;
	background: #eef5fb;
	color: #1f6fb2;
	font-size: 16px;
}

.services-card__title {
	display: block;
	font-size: 18px;
	font-weight: 700;
	color: #1b1b18;
}

.services-card__text {
	display: block;
	font-size: 14px;
	padding-bottom:10px;
	line-height: 1.7;
	border-bottom: 1px solid #d1d1d1;
	color: #5b6470;
}

.services-card__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	align-self: flex-start;
	margin-top: auto;
	/* padding: 10px 16px; */
	/* border-radius: 999px;
	background: #1f6fb2; */
	/* color: #ffffff; */
	font-size: 14px;
	/* font-weight: 700; */
	line-height: 1;
	transition: background 0.2s ease, transform 0.2s ease;
}

.services-card__link:hover {
	/* background: #165a95; */
	transform: translateY(-1px);
}

.services-card-link{
    text-decoration:none;
    color:inherit;
    display:block;
}

.services-card{
    height:100%;
    cursor:pointer;
    transition:.3s ease;
}

.services-card:hover{
    transform:translateY(-6px);
}

.services-card__link{
    display:flex;
    align-items:center;
    gap:8px;
    margin-top:10px;
    font-weight:600;
    color: var(--secondary-color);
}

.services-card__link i{
    transition:.3s;
}

.services-card:hover .services-card__link i{
    transform:translateX(6px);
}

.services-section__actions {
	display: flex;
	justify-content: center;
	margin-top: 28px;
}

.services-section__toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 132px;
	padding: 13px 22px;
	border: 0;
	border-radius: 999px;
	background: #1f6fb2;
	color: #ffffff;
	font: inherit;
	font-size: 15px;
	font-weight: 700;
	line-height: 1;
	cursor: pointer;
	box-shadow: 0 14px 28px rgba(31, 111, 178, 0.18);
	transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.services-section__toggle:hover {
	background: #165a95;
	transform: translateY(-1px);
	box-shadow: 0 18px 30px rgba(31, 111, 178, 0.22);
}

.industries-section {
	padding: 72px 0 88px;
	background: #ffffff;
}

.industries-section__inner {
	max-width: 1200px;
	margin: 0 auto;
	padding-left: 16px;
	padding-right: 16px;
}

.industries-section__heading {
	text-align: center;
	margin-bottom: 32px;
}

.industries-section__eyebrow {
	margin: 0 0 15px;
	font-size: 18px;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: #1f6fb2;
}

.industries-section__heading h2 {
	margin: 0;
	font-size: clamp(28px, 4vw, 42px);
	line-height: 1.15;
	color: #1b1b18;
}

.industries-section__grid {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 10px 18px;
}

.contact-section {
	background: #ffffff;
	padding: 0 0 0;
}

.contact-section__banner {
	background: linear-gradient(rgba(9, 13, 24, 0.82), rgba(9, 13, 24, 0.82)), url('../images/hero/hero3.jpg') center/cover no-repeat;
	padding: 24px 0 72px;
}

.contact-section__inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 16px;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 28px;
}

.contact-card {
	display: flex;
	align-items: center;
	gap: 18px;
	background: rgba(15, 23, 42, 0.82);
	color: #ffffff;
	padding: 22px 24px;
	min-height: 124px;
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.contact-card__icon {
	width: 74px;
	height: 74px;
	flex: 0 0 74px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 2px solid rgba(255, 255, 255, 0.18);
	font-size: 30px;
	color: #ffffff;
}

.contact-card__body p {
	margin: 0 0 6px;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: capitalize;
}

.contact-card__body span,
.contact-card__body a {
	display: block;
	font-size: 18px;
	line-height: 1.5;
	color: #ffffff;
}

.contact-card__body a:hover {
	color: #dbeafe;
}

.contact-section__map-wrap {
	width: 100%;
}

.contact-section__map {
	width: 100%;
	height: 400px;
	background: #e5e7eb;
	overflow: hidden;
}

.contact-section__map iframe {
	width: 100%;
	height: 100%;
	border: 0;
	display: block;
}

.industry-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	text-align: center;
	gap: 14px;
	padding: 18px 10px;
}

.industry-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 92px;
	height: 92px;
	border-radius: 999px;
	background: var(--primary-color);
	color: #ffffff;
	font-size: 36px;
	box-shadow: 0 14px 28px rgba(32, 75, 122, 0.18);
}

.industry-card__title {
	font-size: 15px;
	line-height: 1.45;
	color: #1b1b18;
	max-width: 240px;
}

.site-footer {
	background: #000000;
	color: #ffffff;
	margin-top: 0;
}

.site-footer__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding-top: 20px;
	padding-bottom: 20px;
}

.site-footer__left {
	display: flex;
	align-items: center;
	gap: 28px;
	flex-wrap: wrap;
}

.site-footer__label {
	font-size: 18px;
	font-weight: 600;
	letter-spacing: 0.08em;
}
	
	/* About page styles */
	.about-hero {
	    background: linear-gradient(0deg, rgba(0,0,0,0.35), rgba(0,0,0,0.35)), url('/frontend/images/hero/hero2.jpg') center/cover no-repeat;
	    color: #fff;
	    padding: 80px 0;
	}
	.about-hero__inner { max-width: 1200px; margin: 0 auto; text-align: center; }
	.about-hero h1 { font-size: 36px; margin: 0 0 8px; }
	.about-hero__lead { opacity: 0.9; }
	
	.founder-section { padding: 60px 16px; }
	.founder-section__inner { max-width: 1200px; margin: 0 auto; display:flex; gap:48px; align-items:center; }
	.founder-section__title{
	margin: 0 0 32px;
	font-weight: 700;
	}
	.founder-section__photo { flex: 0 0 320px; order: 2; display:flex; justify-content:center; }
	.founder-section__photo img { width:320px; height:320px; object-fit:cover; border-radius:50%; box-shadow:0 10px 30px rgba(0,0,0,0.12); border:6px solid #fff; }
	.founder-section__bio { flex:1 1 auto; order: 1; }
	.founder-section__bio h2 { margin-top:0; font-size:34px; letter-spacing:0.02em; }
	.founder-section__bio p { color:#333; line-height:1.8; margin-top:18px; }
	
	.mvq-section { background:#f9fafb; padding:60px 16px; }
	.mvq-section__inner { max-width:1200px; margin:0 auto; display:flex; gap:20px; justify-content:space-between; flex-wrap:wrap; }
	.mvq-card { background:#fff; padding:24px; flex:1 1 30%; box-shadow:0 4px 10px rgba(0,0,0,0.04); border-radius:6px; }
	.mvq-card h3 { margin-top:0; }

	/* Emphasize mission / vision / values headings */
	.mvq-card h3 {
		font-size: 20px;
		text-transform: uppercase;
		letter-spacing: 0.06em;
		font-weight: 600;
		color: #1b1b18;
		margin-bottom: 10px;
	}
	
	.contact-summary { padding:40px 16px; }
	.contact-summary__inner { max-width:1200px; margin:0 auto; }
	.contact-summary__cards { display:flex; gap:18px; margin-bottom:18px; flex-wrap:wrap; }
	.contact-card { display:flex; gap:14px; align-items:center; background:#0f1724; color:#fff; padding:18px; border-radius:6px; flex:1 1 30%; }
	.contact-card i { font-size:28px; width:36px; text-align:center; }
	.contact-summary__map iframe { border-radius:6px; border:0; }

	/* Our People page */
	.people-hero {
		background: linear-gradient(rgba(10, 18, 32, 0.62), rgba(10, 18, 32, 0.62)), url('../images/hero/hero2.jpg') center/cover no-repeat;
		color: #ffffff;
		padding: 92px 16px;
		text-align: center;
	}

	.people-hero__inner {
		max-width: 920px;
		margin: 0 auto;
	}

	.people-hero__eyebrow {
		margin: 0 0 10px;
		font-size: 14px;
		font-weight: 700;
		letter-spacing: 0.16em;
		text-transform: uppercase;
		color: #dbeafe;
	}

	.people-hero h1 {
		margin: 0;
		font-size: clamp(34px, 5vw, 58px);
		line-height: 1.1;
		font-weight: 700;
	}

	.people-hero p {
		max-width: 760px;
		margin: 16px auto 0;
		font-size: 18px;
		line-height: 1.7;
		color: rgba(255, 255, 255, 0.9);
	}

	.people-page {
		padding: 72px 16px;
		background: #ffffff;
	}

	.people-page__inner {
		max-width: 1200px;
		margin: 0 auto;
		display: grid;
		grid-template-columns: 300px minmax(0, 1fr);
		gap: 28px;
		align-items: start;
	}

	.people-sidebar {
		position: sticky;
		top: 18px;
	}

	.people-sidebar__panel {
		background: #0f1724;
		color: #ffffff;
		border-radius: 24px;
		padding: 30px;
		box-shadow: 0 20px 45px rgba(15, 23, 42, 0.12);
	}

	.people-sidebar__eyebrow {
		margin: 0 0 10px;
		font-size: 13px;
		font-weight: 700;
		letter-spacing: 0.16em;
		text-transform: uppercase;
		color: #93c5fd;
	}

	.people-sidebar__panel h2 {
		margin: 0;
		font-size: 34px;
		line-height: 1.1;
	}

	.people-sidebar__summary {
		margin: 14px 0 22px;
		font-size: 16px;
		line-height: 1.7;
		color: rgba(255, 255, 255, 0.82);
	}

	.people-sidebar__nav {
		display: grid;
		gap: 10px;
	}

	.people-sidebar__nav a {
		display: block;
		padding: 14px 16px;
		border-radius: 14px;
		background: rgba(255, 255, 255, 0.05);
		color: #ffffff;
		font-weight: 600;
		border: 1px solid rgba(255, 255, 255, 0.08);
	}

	.people-sidebar__nav a:hover,
	.people-sidebar__nav a.is-active {
		background: #1f6fb2;
		border-color: #1f6fb2;
	}

	.people-sidebar__section {
		margin-top: 22px;
		padding-top: 20px;
		border-top: 1px solid rgba(255, 255, 255, 0.12);
	}

	.people-sidebar__brochure {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: 100%;
		padding: 14px 16px;
		border-radius: 14px;
		background: #1f6fb2;
		color: #ffffff;
		font-weight: 700;
		box-shadow: 0 14px 28px rgba(31, 111, 178, 0.22);
	}

	.people-sidebar__brochure:hover {
		background: #165a95;
	}

	.people-sidebar__links {
		display: grid;
		gap: 8px;
	}

	.people-sidebar__links a {
		display: block;
		padding: 12px 14px;
		border-radius: 12px;
		background: rgba(255, 255, 255, 0.05);
		color: rgba(255, 255, 255, 0.95);
		border: 1px solid rgba(255, 255, 255, 0.08);
		line-height: 1.55;
	}

	.people-sidebar__links a:hover {
		background: rgba(31, 111, 178, 0.24);
		border-color: rgba(31, 111, 178, 0.5);
	}

/* Service pages: hero and right sidebar */
.service-hero {
	background: linear-gradient(rgba(9,13,24,0.5), rgba(9,13,24,0.5)), url('/frontend/images/hero/hero1.jpg') center/cover no-repeat;
	color: #ffffff;
	padding: 68px 16px;
}
.service-hero__inner { max-width: 1200px; margin: 0 auto; }
.service-hero__eyebrow { margin: 0 0 8px; font-size: 13px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.9); }
.service-hero h1 { margin: 0 0 10px; font-size: clamp(28px, 4vw, 42px); line-height: 1.08; }
.service-hero__lead { max-width: 820px; margin-top: 8px; color: rgba(255,255,255,0.9); font-size: 16px; line-height: 1.7; }

.service-page { padding: 56px 16px; background: #ffffff; }
.service-page__inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 300px; gap: 28px; align-items: start; }

.service-content {
	display: grid;
	gap: 26px;
}

.service-content__intro {
	margin: 0;
	font-size: 18px;
	line-height: 1.8;
	color: #3f4b5b;
}

.service-content__section {
	display: grid;
	gap: 14px;
	padding-bottom: 22px;
	border-bottom: 1px solid #edf1f5;
}

.service-content__section:last-child {
	padding-bottom: 0;
	border-bottom: 0;
}

.service-content__section h2 {
	margin: 0;
	font-size: clamp(24px, 3vw, 34px);
	line-height: 1.18;
	color: #121826;
	font-weight: 600;
}

.service-content__section p {
	margin: 0;
	font-size: 16px;
	line-height: 1.8;
	color: #4b5563;
}

.service-content__list {
	display: grid;
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.service-content__list li {
	position: relative;
	padding-left: 24px;
	font-size: 16px;
	line-height: 1.7;
	color: #374151;
}

.service-content__list li::before {
	content: "";
	position: absolute;
	top: 12px;
	left: 0;
	width: 8px;
	height: 8px;
	border-radius: 999px;
	background: #1f6fb2;
}

.service-sidebar { position: sticky; top: 18px; }
.service-sidebar .service-sidebar__panel { background: #ffffff; padding: 18px; border-radius: 10px; border: 1px solid #eef2f6; box-shadow: 0 12px 30px rgba(15,23,42,0.04); }
.service-sidebar .service-sidebar__nav a { display:block; padding:12px 10px; border-bottom:1px solid #f1f5f9; color:#1b1b18; }
.service-sidebar .service-sidebar__nav a.is-active { color: #1f6fb2; font-weight:700; }

@media (max-width: 1024px) {
	.service-page__inner { grid-template-columns: 1fr; }
	.service-hero { padding: 56px 12px; }
}

	.people-content {
		display: grid;
		gap: 22px;
	}

	.people-detail,
	.people-team {
		background: #f8fbfe;
		border: 1px solid #e3e9f1;
		border-radius: 24px;
		padding: 26px;
		box-shadow: 0 16px 40px rgba(15, 23, 42, 0.06);
	}

	.people-detail {
		display: grid;
		grid-template-columns: 240px minmax(0, 1fr);
		gap: 24px;
		align-items: center;
	}

	.people-detail--reverse {
		grid-template-columns: minmax(0, 1fr) 240px;
	}

	.people-detail--reverse .people-detail__image {
		order: 2;
	}

	.people-detail__image img {
		width: 100%;
		aspect-ratio: 1 / 1;
		object-fit: cover;
		border-radius: 22px;
		box-shadow: 0 14px 34px rgba(15, 23, 42, 0.14);
	}

	.people-detail__eyebrow {
		margin: 0 0 8px;
		font-size: 13px;
		font-weight: 700;
		letter-spacing: 0.14em;
		text-transform: uppercase;
		color: #1f6fb2;
	}

	.people-detail__body h3 {
		margin: 0 0 14px;
		font-size: 30px;
		line-height: 1.15;
		color: #121826;
	}

	.people-detail__body p {
		margin: 0 0 14px;
		font-size: 16px;
		line-height: 1.85;
		color: #445164;
	}

	.people-team h3 {
		margin: 0 0 18px;
		font-size: 28px;
		line-height: 1.15;
		color: #121826;
	}

	.people-team__grid {
		display: grid;
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 18px;
	}

	.people-team__card {
		background: #ffffff;
		border-radius: 18px;
		padding: 20px;
		border: 1px solid #e3e9f1;
	}

	.people-team__card h4 {
		margin: 0 0 10px;
		font-size: 18px;
		color: #121826;
	}

	.people-team__card p {
		margin: 0;
		font-size: 15px;
		line-height: 1.75;
		color: #526074;
	}

	/* Our People page */
	.people-hero {
		background: linear-gradient(rgba(10, 18, 32, 0.62), rgba(10, 18, 32, 0.62)), url('../images/hero/hero2.jpg') center/cover no-repeat;
		color: #ffffff;
		padding: 92px 16px;
		text-align: center;
	}

	.people-hero__inner {
		max-width: 920px;
		margin: 0 auto;
	}

	.people-hero__eyebrow {
		margin: 0 0 10px;
		font-size: 14px;
		font-weight: 700;
		letter-spacing: 0.16em;
		text-transform: uppercase;
		color: #dbeafe;
	}

	.people-hero h1 {
		margin: 0;
		font-size: clamp(34px, 5vw, 58px);
		line-height: 1.1;
		font-weight: 700;
	}

	.people-hero p {
		max-width: 760px;
		margin: 16px auto 0;
		font-size: 18px;
		line-height: 1.7;
		color: rgba(255, 255, 255, 0.9);
	}

	.people-page {
		padding: 72px 16px;
		background: #ffffff;
	}

	.people-page__inner {
		max-width: 1200px;
		margin: 0 auto;
		display: grid;
		grid-template-columns: 300px minmax(0, 1fr);
		gap: 28px;
		align-items: start;
	}

	.people-sidebar {
		position: sticky;
		top: 18px;
	}

	.people-sidebar__panel {
		background: #0f1724;
		color: #ffffff;
		border-radius: 24px;
		padding: 30px;
		box-shadow: 0 20px 45px rgba(15, 23, 42, 0.12);
	}

	.people-sidebar__eyebrow {
		margin: 0 0 10px;
		font-size: 13px;
		font-weight: 700;
		letter-spacing: 0.16em;
		text-transform: uppercase;
		color: #93c5fd;
	}

	.people-sidebar__panel h2 {
		margin: 0;
		font-size: 34px;
		line-height: 1.1;
	}

	.people-sidebar__summary {
		margin: 14px 0 22px;
		font-size: 16px;
		line-height: 1.7;
		color: rgba(255, 255, 255, 0.82);
	}

	.people-sidebar__nav {
		display: grid;
		gap: 10px;
	}

	.people-sidebar__nav a {
		display: block;
		padding: 14px 16px;
		border-radius: 14px;
		background: rgba(255, 255, 255, 0.05);
		color: #ffffff;
		font-weight: 600;
		border: 1px solid rgba(255, 255, 255, 0.08);
	}

	.people-sidebar__nav a:hover,
	.people-sidebar__nav a.is-active {
		background: #1f6fb2;
		border-color: #1f6fb2;
	}

	.people-content {
		display: grid;
		gap: 22px;
	}

	.people-detail,
	.people-team {
		background: #f8fbfe;
		border: 1px solid #e3e9f1;
		border-radius: 24px;
		padding: 26px;
		box-shadow: 0 16px 40px rgba(15, 23, 42, 0.06);
	}

	.people-detail {
		display: grid;
		grid-template-columns: 240px minmax(0, 1fr);
		gap: 24px;
		align-items: center;
	}

	.people-detail--reverse {
		grid-template-columns: minmax(0, 1fr) 240px;
	}

	.people-detail--reverse .people-detail__image {
		order: 2;
	}

	.people-detail__image img {
		width: 100%;
		aspect-ratio: 1 / 1;
		object-fit: cover;
		border-radius: 22px;
		box-shadow: 0 14px 34px rgba(15, 23, 42, 0.14);
	}

	.people-detail__eyebrow {
		margin: 0 0 8px;
		font-size: 13px;
		font-weight: 700;
		letter-spacing: 0.14em;
		text-transform: uppercase;
		color: #1f6fb2;
	}

	.people-detail__body h3 {
		margin: 0 0 14px;
		font-size: 30px;
		line-height: 1.15;
		color: #121826;
	}

	.people-detail__body p {
		margin: 0 0 14px;
		font-size: 16px;
		line-height: 1.85;
		color: #445164;
	}

	.people-team h3 {
		margin: 0 0 18px;
		font-size: 28px;
		line-height: 1.15;
		color: #121826;
	}

	.people-team__grid {
		display: grid;
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 18px;
	}

	.people-team__card {
		background: #ffffff;
		border-radius: 18px;
		padding: 20px;
		border: 1px solid #e3e9f1;
	}

	.people-team__card h4 {
		margin: 0 0 10px;
		font-size: 18px;
		color: #121826;
	}

	.people-team__card p {
		margin: 0;
		font-size: 15px;
		line-height: 1.75;
		color: #526074;
	}

	/* Contact page */
	.contact-hero {
		background: linear-gradient(rgba(10, 18, 32, 0.62), rgba(10, 18, 32, 0.62)), url('../images/hero/hero2.jpg') center/cover no-repeat;
		color: #ffffff;
		padding: 92px 16px;
		text-align: center;
	}

	.contact-hero__inner {
		max-width: 900px;
		margin: 0 auto;
	}

	.contact-hero__eyebrow {
		margin: 0 0 10px;
		font-size: 14px;
		font-weight: 700;
		letter-spacing: 0.16em;
		text-transform: uppercase;
		color: #dbeafe;
	}

	.contact-hero h1 {
		margin: 0;
		font-size: clamp(34px, 5vw, 58px);
		line-height: 1.1;
		font-weight: 700;
	}

	.contact-hero p {
		max-width: 760px;
		margin: 16px auto 0;
		font-size: 18px;
		line-height: 1.7;
		color: rgba(255, 255, 255, 0.9);
	}

	.contact-page {
		padding: 72px 16px;
		background: #f7f8fb;
	}

	.contact-page__inner {
		max-width: 1200px;
		margin: 0 auto;
		display: grid;
		grid-template-columns: 0.95fr 1.05fr;
		gap: 28px;
	}

	.contact-page__details,
	.contact-page__form-wrap {
		background: #ffffff;
		border-radius: 24px;
		padding: 40px;
		box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
	}

	.contact-page__details h2,
	.contact-page__form-wrap h2 {
		margin: 0;
		font-size: clamp(30px, 3vw, 44px);
		line-height: 1.15;
		color: #121826;
		/*font-family: Georgia, 'Times New Roman', serif;*/
	}

	.contact-page__summary {
		margin: 14px 0 0;
		font-size: 17px;
		line-height: 1.7;
		color: #5b6475;
	}

	.contact-page__details {
		display: flex;
		flex-direction: column;
		gap: 22px;
	}

	.contact-page__item {
		display: flex;
		align-items: flex-start;
		gap: 18px;
		padding: 22px 0;
		border-top: 1px solid #edf0f5;
	}

	.contact-page__item:first-of-type {
		border-top: 0;
		padding-top: 6px;
	}

	.contact-page__icon {
		width: 70px;
		height: 70px;
		flex: 0 0 70px;
		border-radius: 999px;
		background: #1f6fb2;
		color: #ffffff;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		font-size: 26px;
		box-shadow: 0 14px 26px rgba(31, 111, 178, 0.2);
	}

	.contact-page__item h3 {
		margin: 0 0 8px;
		font-size: 18px;
		font-weight: 700;
		letter-spacing: 0.03em;
		text-transform: uppercase;
		color: #121826;
	}

	.contact-page__item p,
	.contact-page__item a {
		margin: 0;
		font-size: 16px;
		line-height: 1.8;
		color: #394152;
		word-break: break-word;
	}

	.contact-page__item a:hover {
		color: #1f6fb2;
	}

	.contact-page__form {
		display: grid;
		gap: 18px;
	}

	.contact-page__row {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 18px;
	}

	.contact-page__form label,
	.contact-page__message {
		display: grid;
		gap: 10px;
	}

	.contact-page__form span {
		font-size: 13px;
		font-weight: 700;
		letter-spacing: 0.06em;
		text-transform: uppercase;
		color: #121826;
	}

	.contact-page__form input,
	.contact-page__form textarea {
		width: 100%;
		border: 1px solid #d9e1ee;
		border-radius: 12px;
		padding: 14px 16px;
		font: inherit;
		background: #ffffff;
		color: #121826;
		outline: none;
		transition: border-color 0.2s ease, box-shadow 0.2s ease;
	}

	.contact-page__form input:focus,
	.contact-page__form textarea:focus {
		border-color: #1f6fb2;
		box-shadow: 0 0 0 4px rgba(31, 111, 178, 0.12);
	}

	.contact-page__message textarea {
		min-height: 210px;
		resize: vertical;
	}

	.contact-page__form button {
		justify-self: start;
		border: 0;
		border-radius: 999px;
		padding: 15px 28px;
		background: #1f6fb2;
		color: #ffffff;
		font: inherit;
		font-weight: 700;
		cursor: pointer;
		box-shadow: 0 14px 28px rgba(31, 111, 178, 0.2);
		transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
	}

	.contact-page__form button:hover {
		background: #165a95;
		transform: translateY(-1px);
		box-shadow: 0 18px 30px rgba(31, 111, 178, 0.24);
	}

	.contact-map {
		width: 100%;
		height: 460px;
	}

	.contact-map iframe {
		width: 100%;
		height: 100%;
		border: 0;
		display: block;
	}

	.career-hero {
		background: linear-gradient(rgba(10, 18, 32, 0.62), rgba(10, 18, 32, 0.62)), url('/frontend/images/hero/hero3.jpg') center/cover no-repeat;
		color: #ffffff;
		padding: 96px 16px;
		text-align: center;
	}

	.career-hero__inner,
	.career-brief__inner,
	.career-apply__inner,
	.career-section__inner {
		max-width: 1200px;
		margin: 0 auto;
	}

	.career-hero__eyebrow,
	.career-section__eyebrow {
		margin: 0 0 10px;
		font-size: 14px;
		font-weight: 700;
		letter-spacing: 0.16em;
		text-transform: uppercase;
		color: #1f6fb2;
	}

	.career-hero h1 {
		margin: 0;
		font-size: clamp(34px, 5vw, 60px);
		line-height: 1.1;
		font-weight: 700;
	}

	.career-hero p {
		max-width: 760px;
		margin: 16px auto 0;
		font-size: 18px;
		line-height: 1.7;
		color: rgba(255, 255, 255, 0.9);
	}

	.career-brief,
	.career-openings,
	.career-apply,
	.career-contact {
		padding: 72px 16px;
	}

	.career-brief__inner {
		display: grid;
		grid-template-columns: 1.05fr 0.95fr;
		gap: 30px;
		align-items: center;
	}

	.career-brief__content {
		display: grid;
		gap: 18px;
	}

	.career-brief__content h2,
	.career-section__heading h2,
	.career-apply__info h2 {
		margin: 0;
		font-size: clamp(30px, 3vw, 46px);
		line-height: 1.15;
		color: #121826;
		/*font-family: Georgia, 'Times New Roman', serif;*/
	}

	.career-brief__content p,
	.career-apply__info p {
		font-size: 17px;
		line-height: 1.8;
		color: #4b5563;
	}

	.career-brief__image img {
		width: 100%;
		max-width: 520px;
		margin-left: auto;
		border-radius: 28px;
		box-shadow: 0 22px 50px rgba(15, 23, 42, 0.12);
	}

	.career-section__heading {
		text-align: center;
		max-width: 820px;
		margin: 0 auto 30px;
	}

	.career-openings__grid {
		display: grid;
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 20px;
	}

	.career-openings__card {
		background: #ffffff;
		border-radius: 22px;
		padding: 28px;
		box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
		border: 1px solid #e8edf5;
	}

	.career-openings__card h3 {
		margin: 0 0 10px;
		font-size: 22px;
		color: #121826;
	}

	.career-openings__card p {
		margin: 0 0 16px;
		font-size: 16px;
		line-height: 1.8;
		color: #4b5563;
	}

	.career-openings__card ul {
		list-style: none;
		padding: 0;
		margin: 0;
		display: grid;
		gap: 10px;
	}

	.career-openings__card li {
		display: flex;
		align-items: center;
		gap: 10px;
		font-size: 15px;
		color: #374151;
	}

	.career-openings__card i {
		color: #1f6fb2;
		width: 16px;
	}

	.career-apply {
		background: #f7f8fb;
	}

	.career-apply__inner {
		display: grid;
		grid-template-columns: 0.9fr 1.1fr;
		gap: 28px;
		align-items: start;
	}

	.career-apply__form {
		background: #ffffff;
		border-radius: 24px;
		padding: 36px;
		box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
		display: grid;
		gap: 18px;
	}

	.career-apply__row {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 18px;
	}

	.career-apply__form label,
	.career-apply__message,
	.career-apply__resume {
		display: grid;
		gap: 10px;
	}

	.career-apply__form span {
		font-size: 13px;
		font-weight: 700;
		letter-spacing: 0.06em;
		text-transform: uppercase;
		color: #121826;
	}

	.career-apply__form input,
	.career-apply__form textarea {
		width: 100%;
		border: 1px solid #d9e1ee;
		border-radius: 12px;
		padding: 14px 16px;
		font: inherit;
		background: #ffffff;
		color: #121826;
		outline: none;
		transition: border-color 0.2s ease, box-shadow 0.2s ease;
	}

	.career-apply__form input:focus,
	.career-apply__form textarea:focus {
		border-color: #1f6fb2;
		box-shadow: 0 0 0 4px rgba(31, 111, 178, 0.12);
	}

	.career-apply__message textarea {
		min-height: 180px;
		resize: vertical;
	}

	.career-apply__form button {
		justify-self: start;
		border: 0;
		border-radius: 999px;
		padding: 15px 28px;
		background: #1f6fb2;
		color: #ffffff;
		font: inherit;
		font-weight: 700;
		cursor: pointer;
		box-shadow: 0 14px 28px rgba(31, 111, 178, 0.2);
		transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
	}

	.career-apply__form button:hover {
		background: #165a95;
		transform: translateY(-1px);
		box-shadow: 0 18px 30px rgba(31, 111, 178, 0.24);
	}

	.career-contact__grid {
		display: grid;
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 20px;
	}

	.career-contact__card {
		background: #0f1724;
		color: #ffffff;
		border-radius: 18px;
		padding: 26px;
		display: flex;
		gap: 16px;
		align-items: flex-start;
		box-shadow: 0 18px 34px rgba(15, 23, 42, 0.16);
	}

	.career-contact__card i {
		font-size: 28px;
		color: #1f6fb2;
		padding-top: 4px;
	}

	.career-contact__card h3 {
		margin: 0 0 6px;
		font-size: 18px;
	}

	.career-contact__card p,
	.career-contact__card a {
		margin: 0;
		font-size: 16px;
		line-height: 1.7;
		color: rgba(255, 255, 255, 0.9);
	}

	.career-contact__card a:hover {
		color: #ffffff;
	}
	
	@media (max-width: 768px) {
	    .founder-section__inner { flex-direction:column; }
	    .mvq-card { flex:1 1 100%; }
	    .contact-card { flex:1 1 100%; }
	    .career-brief__inner,
	    .career-apply__inner,
	    .career-openings__grid,
	    .career-contact__grid {
	    	grid-template-columns: 1fr;
	    }
	    .career-apply__row {
	    	grid-template-columns: 1fr;
	    }
	    .career-brief__image img {
	    	margin: 0 auto;
	    }
	}
	
	/* Blog section */
	
.blog-section {
	padding: 56px 0;
	background: #ffffff;
}
.blog-section__inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 16px;
}
.blog-section__heading {
	text-align: center;
	margin-bottom: 28px;
}
.blog-section__heading h2 {
	margin: 0;
	font-size: clamp(30px, 3vw, 35px);
	font-weight: 600;
	line-height: 1.15;
	color: #121826;
	/* font-family: Georgia, 'Times New Roman', serif; */
}
.blog-section__eyebrow {
	margin: 0 0 10px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #1f6fb2;
}
.blog-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}
.blog-card {
	border: 1px solid #eef0f2;
	border-radius: 8px;
	overflow: hidden;
	background: #fff;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.blog-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 8px 20px rgba(16,24,40,0.08);
}
.blog-card__link { display: block; color: inherit; text-decoration: none; }
.blog-card__image { width: 100%; height: 220px; object-fit: cover; display: block; }
.blog-card__title { font-size: 18px; margin: 12px 16px 6px; font-weight: 600; }
.blog-card__excerpt { margin: 0 16px 16px; padding-bottom: 10px; color: #586069; font-size: 14px; border-bottom: 1px solid #d7d7dc; }
.blog-card__btn { margin: 0 16px 16px; color: var(--secondary-color); font-size: 15px; padding-right: 10px; }

@media (max-width: 900px) {
	.blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
	.blog-grid { grid-template-columns: 1fr; }
}

.site-footer__social {
	display: flex;
	align-items: center;
	gap: 18px;
	color: #ffffff;
}

.site-footer__social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: inherit;
	transition: color 0.2s ease;
}

.site-footer__social a:hover {
	color: #1f6fb2;
}

.site-footer__social svg {
	width: 18px;
	height: 18px;
}

.site-footer__right {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 6px;
	text-align: right;
}

.site-footer__links {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 8px;
	font-size: 14px;
}

.site-footer__links a,
.site-footer__links span {
	color: #ffffff;
	opacity: 0.95;
}

.site-footer__copy {
	margin: 0;
	font-size: 14px;
	line-height: 1.5;
	color: #ffffff;
	opacity: 0.95;
}

@media (max-width: 1100px) {
	.site-header__inner {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
		gap: 14px;
	}

	header nav.primary-nav {
		display: none;
	}

	.mobile-menu-toggle {
		display: inline-flex;
	}

	.services-section__cards--grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.industries-section__grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	.hero-slider {
		height: clamp(460px, 58vh, 620px);
		min-height: 460px;
	}

	.hero-slider__slide {
		background-position: center center;
	}

	.hero-slider__content {
		padding-top: 28px;
		padding-bottom: 54px;
	}

	.hero-slider__content h1 {
		max-width: 640px;
		font-size: clamp(38px, 5.5vw, 52px);
		line-height: 1.08;
	}

	.hero-slider__content p:last-child {
		max-width: 560px;
		font-size: 17px;
		line-height: 1.65;
	}
}

@media (max-width: 768px) {
	.top-strip > div,
	.site-header__inner {
		padding-left: 14px;
		padding-right: 14px;
	}

	.top-strip > div {
		flex-direction: row;
		align-items: center;
		justify-content: center;
		gap: 18px;
		padding-top: 9px;
		padding-bottom: 9px;
	}

	.top-strip > div > div:first-child,
	.top-strip > div > div:last-child {
		align-items: center;
		justify-content: center;
		gap: 18px;
	}

	.top-strip > div > div:first-child {
		flex-wrap: nowrap;
	}

	.top-strip > div > div:first-child span span,
	.top-strip > div > div:first-child a span {
		display: none;
	}

	.top-strip i,
	.top-strip svg {
		color: #1f6fb2;
		font-size: 16px;
		width: 18px;
		height: 18px;
	}

	.top-strip a,
	.top-strip span {
		gap: 0;
	}

	.site-header__inner {
		padding-top: 12px;
		padding-bottom: 12px;
	}

	.site-logo img {
		width: clamp(152px, 55vw, 330px);
		max-height: 68px;
	}

	.site-logo > span > span:first-child {
		font-size: 18px;
	}

	.site-logo > span > span:last-child {
		letter-spacing: 0.18em;
	}

	.site-logo {
		min-width: 0;
	}

	.site-logo > span {
		max-width: calc(100vw - 86px);
		padding-left: 10px;
		padding-right: 10px;
	}

	.site-logo > span > span:first-child {
		white-space: normal;
		line-height: 1.25;
	}

	.hero-slider {
		height: 420px;
		min-height: 420px;
	}

	.hero-slider__content {
		padding-top: 18px;
		padding-bottom: 52px;
	}

	.hero-slider__content p:last-child {
		font-size: 16px;
	}

	.services-section {
		padding: 56px 0 64px;
	}

	.services-section__cards--grid {
		grid-template-columns: 1fr;
	}

	.services-card__image {
		aspect-ratio: 19 / 10;
	}

	.industries-section {
		padding: 56px 0 64px;
	}

	.contact-section__inner {
		grid-template-columns: 1fr;
	}

	.contact-section__banner {
		padding-bottom: 40px;
	}

	.contact-section__map {
		height: 380px;
	}

	.industries-section__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.contact-card {
		padding: 18px;
	}

	.contact-card__icon {
		width: 62px;
		height: 62px;
		flex-basis: 62px;
		font-size: 26px;
	}

	.contact-card__body span,
	.contact-card__body a {
		font-size: 16px;
	}

	.contact-section__map {
		height: 320px;
	}

	.industry-card__icon {
		width: 84px;
		height: 84px;
		font-size: 32px;
	}

	.site-footer__inner {
		flex-direction: column;
		align-items: flex-start;
	}

	.site-footer__right {
		align-items: flex-start;
		text-align: left;
	}

	.site-footer__label {
		font-size: 16px;
	}

	.contact-hero {
		padding: 72px 16px;
	}

	.contact-page {
		padding: 56px 16px;
	}

	.contact-page__inner {
		grid-template-columns: 1fr;
	}

	.contact-page__details,
	.contact-page__form-wrap {
		padding: 28px 20px;
		border-radius: 20px;
	}

	.contact-page__row {
		grid-template-columns: 1fr;
	}

	.contact-page__icon {
		width: 58px;
		height: 58px;
		flex-basis: 58px;
		font-size: 22px;
	}

	.contact-map {
		height: 320px;
	}

	.people-page__inner,
	.people-detail,
	.people-detail--reverse,
	.people-team__grid {
		grid-template-columns: 1fr;
	}

	.people-sidebar {
		position: static;
	}

	.people-detail--reverse .people-detail__image {
		order: 0;
	}

	.people-page {
		padding: 56px 16px;
	}

	.people-detail,
	.people-team {
		padding: 22px;
		border-radius: 20px;
	}

	.people-team__grid {
		gap: 14px;
	}
}


.authority-section{
    background:#f5f5f5;
    padding:80px 20px;
}

.authority-container{
    max-width:1200px;
    margin:0 auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:80px;
}

.authority-left{
    flex:1;
}

.authority-left h2{
		margin:0 0 25px;
		font-size:32px;
		line-height:1.15;
		color:#121826;
		font-weight: 700;
}

.authority-list{
    margin:0;
    padding-left:25px;
    list-style:disc;
}

.authority-list li{
    font-size:18px;
    line-height:1.9;
    color:#333;
    margin-bottom:12px;
    font-weight:500;
}
.authority-list li a:hover{
    color:#007bff;
}

.authority-right{
    flex:0 0 420px;
    text-align:center;
}

.authority-right img{
    width:100%;
    max-width:420px;
    height:auto;
    display:block;
    margin:auto;
}

/* Tablet */
@media (max-width:991px){
    .authority-container{
        gap:40px;
    }

    .authority-list li{
        font-size:17px;
    }

    .authority-right{
        flex:0 0 320px;
    }
}

/* Mobile */
@media (max-width:767px){
    .authority-container{
        flex-direction:column-reverse;
        text-align:left;
    }

    .authority-right{
        flex:none;
        width:100%;
    }

    .authority-right img{
        max-width:280px;
    }

    .authority-list li{
        font-size:16px;
        line-height:1.8;
    }
}

.blog-section{
    padding:80px 20px;
    background:#f8f9fa;
}

.container{
    max-width:1200px;
    margin:auto;
}

.section-title{
    text-align:center;
    margin-bottom:50px;
}

.section-title h2{
    font-size:38px;
    color:#222;
    margin-bottom:12px;
}

.section-title p{
    color:#666;
    max-width:650px;
    margin:auto;
    line-height:1.7;
}

.blog-grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:30px;
}

.blog-card{
    background:#fff;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
    transition:0.3s ease;
}

.blog-card:hover{
    transform:translateY(-8px);
}

.blog-image{
    overflow:hidden;
}

.blog-image img{
    width:100%;
    height:240px;
    object-fit:cover;
    display:block;
    transition:0.4s;
}

.blog-card:hover .blog-image img{
    transform:scale(1.08);
}

.blog-content{
    padding:25px;
}

.blog-date{
    display:inline-block;
    font-size:14px;
    color:#888;
    margin-bottom:10px;
}

.blog-content h3{
    font-size:22px;
    color:#222;
    line-height:1.4;
    margin-bottom:15px;
}

.blog-content p{
    color:#666;
    line-height:1.7;
    margin-bottom:20px;
}

.read-more{
    color:#0d6efd;
    text-decoration:none;
    font-weight:600;
}

.read-more:hover{
    text-decoration:underline;
}

/* Tablet */
@media(max-width:991px){
    .blog-grid{
        grid-template-columns:repeat(2, 1fr);
    }
}

/* Mobile */
@media(max-width:767px){
    .blog-grid{
        grid-template-columns:1fr;
    }

    .section-title h2{
        font-size:30px;
    }
}


.insights-section{
    padding:80px 20px;
    background:#f8f9fa;
}

.insights-section .container{
    max-width:1200px;
    margin:auto;
}

.section-heading{
    text-align:center;
    margin-bottom:50px;
}

.section-heading span{
    color:#0a8f4d;
    font-size:14px;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:1px;
}

.section-heading h2{
    font-size:42px;
    margin:15px 0;
    color:#222;
}

.section-heading p{
    max-width:700px;
    margin:auto;
    color:#666;
    line-height:1.8;
}

.insights-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.insight-card{
    background:#fff;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.3s;
}

.insight-card:hover{
    transform:translateY(-8px);
}

.insight-img img{
    width:100%;
    height:240px;
    object-fit:cover;
    display:block;
}

.insight-content{
    padding:25px;
}

.category{
    display:inline-block;
    background:#eef8f1;
    color:#0a8f4d;
    padding:6px 14px;
    border-radius:20px;
    font-size:13px;
    font-weight:600;
    margin-bottom:15px;
}

.insight-content h3{
    font-size:22px;
    line-height:1.4;
    margin-bottom:15px;
    color:#222;
}

.insight-content p{
    color:#666;
    line-height:1.7;
    margin-bottom:20px;
}

.insight-content a{
    color:#0a8f4d;
    font-weight:600;
    text-decoration:none;
}

.insight-content a:hover{
    text-decoration:underline;
}

@media(max-width:991px){
    .insights-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:767px){
    .insights-grid{
        grid-template-columns:1fr;
    }

    .section-heading h2{
        font-size:32px;
    }
}


/* about us home  */

.about-section{
    padding:100px 20px 40px;
    background:#ffffff;
}

.about-wrapper{
    max-width:1200px;
    margin:auto;
    display:flex;
    align-items:center;
    gap:80px;
}

.about-image{
    flex:1;
}

.about-image img{
    width:100%;
    height:600px;
    object-fit:cover;
    border-radius:6px;
    display:block;
}

.about-content{
    flex:1;
}

.about-subtitle{
    display:block;
    color:#777;
    font-size:14px;
    letter-spacing:3px;
    margin-bottom:15px;
}

.about-content h2{
    font-size:40px;
    line-height:1.2;
    color: var(--primary-color);
    margin-bottom:25px;
    font-weight:600;
}

.about-content p{
    color:#444;
    font-size:16px;
    line-height:1.9;
    margin-bottom:20px;
}

.about-btn{
    display:inline-block;
    background: var(--secondary-color);
    color:#fff;
    text-decoration:none;
    padding:14px 35px;
    font-weight:600;
    margin-top:10px;
    transition:.3s;
		border-radius: 12px;
}

.about-btn:hover{
    background:#095a90;
}

/* Tablet */
@media(max-width:991px){
    .about-wrapper{
        flex-direction:column;
        gap:40px;
    }

    .about-image img{
        height:450px;
    }

    .about-content h2{
        font-size:38px;
    }
}

/* Mobile */
@media(max-width:767px){
    .about-section{
        padding:70px 15px;
    }

    .about-image img{
        /* height:300px; */
				width: 100%;
    }

    .about-content h2{
        font-size:30px;
    }

    .about-content p{
        font-size:16px;
    }
}

/* why choose us  */

.why-us{
    background:var(--primary-color);
    padding:40px 20px 100px;
    overflow:hidden;
}

.why-us .container{
    max-width:1400px;
    margin:auto;
}

.section-heading{
    text-align:center;
    margin-bottom:80px;
}

.section-heading h2{
    color:#fff;
    font-size:48px;
    font-weight:600;
}

.why-us-wrapper{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:80px;
}

/* Stats */

.stats-column{
    flex:1;
    display:flex;
    flex-direction:column;
    gap:50px;
}
/* 
.stat-card{
    background: #041e5e;
    color:#fff;
    padding:30px 35px;
    border-radius:60px;
    position:relative;
    font-size:18px;
} */

.stat-card{
    background: rgba(0, 21, 77, 0.9); /* #00154d with 90% opacity */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: #fff;
    padding: 30px 35px;
    /* border-radius: 60px; */
    position: relative;
    font-size: 18px;
    box-shadow: 0 0 20px rgba(79, 70, 229, 0.2);
    transition: all 0.5s ease;
}

.stat-card1{
		border-radius: 60px 0 60px 0;
}

.stat-card2{
		border-radius:60px 0 60px 0;
}

.stat-card:hover{
    box-shadow: 0 0 30px rgba(99, 102, 241, 0.4);
    transform: translateY(-5px);
}

/* .stat-card1::before{
    content:'';
    width:5px;
    height:100%;
    background: var(--secondary-color);
    position:absolute;
    left:0;
    top:0;
}

.stat-card2::after{
    content:'';
    width:5px;
    height:100%;
    background: var(--secondary-color);
    position:absolute;
    right:0;
    top:0;
} */

.stat-card strong{
    color:var(--secondary-color);
}

/* Center Circle */

.center-circle{
    width:400px;
    height:400px;
    border-radius:50%;
    background:#fff;
    position:relative;
    flex-shrink:0;
}

.circle-image{
    width:100%;
    height:100%;
    display:flex;
    justify-content:center;
    align-items:center;
}

.circle-image img{
    width:400px;
}

/* Features */

.feature{
    position:absolute;
    width:90px;
    height:90px;
    background:var(--primary-color);
    border:2px solid var(--secondary-color);
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#fff;
    font-size:30px;
    box-shadow:0 0 20px rgba(255,255,255,.15);
}

.feature span{
    position:absolute;
    top:105px;
		background-color: #00144d;
		padding: 4px 8px;
    font-size:12px;
    text-transform:uppercase;
    white-space:nowrap;
    font-weight:600;
}

.feature-top{
    top:-45px;
    left:50%;
    transform:translateX(-50%);
		transition: transform 0.3s ease;
}
.feature-top:hover{
		background-color: #00144d;
		transform:translateX(-50%) translateY(-5px);
		box-shadow:0 0 30px rgba(255,255,255,.25);

}

.feature-right-top{
    right:-45px;
    top:70px;
		transition: transform 0.3s ease;
}

.feature-right-top:hover{
		background-color: #00144d;
		transform: translateY(-5px);
		box-shadow:0 0 30px rgba(255,255,255,.25);

}

.feature-right-bottom{
    right:-45px;
    bottom:70px;
		transition: transform 0.3s ease;
}
.feature-right-bottom:hover{
		background-color: #00144d;
		transform: translateY(-5px);
		box-shadow:0 0 30px rgba(255,255,255,.25);

}

.feature-bottom{
    bottom:-45px;
    left:50%;
    transform:translateX(-50%) ;
		transition: transform 0.3s ease;
}

.feature-bottom:hover{
		background-color: #00144d;
		transform: translateX(-50%) translateY(-5px);
		box-shadow:0 0 30px rgba(255,255,255,.25);

}

.feature-left-bottom{
    left:-45px;
    bottom:70px;
		transition: transform 0.3s ease;
}
.feature-left-bottom:hover{
		background-color: #00144d;
		transform: translateY(-5px);
		box-shadow:0 0 30px rgba(255,255,255,.25);

}

.feature-left-top{
    left:-45px;
    top:70px;
		transition: transform 0.3s ease;
}
.feature-left-top:hover{
		background-color: #00144d;
		transform: translateY(-5px);
		box-shadow:0 0 30px rgba(255,255,255,.25);

}

/* Tablet */

@media(max-width:1200px){

    .why-us-wrapper{
        flex-direction:column;
        gap:100px;
    }

    .stats-column{
        width:100%;
        max-width:800px;
    }

    .stat-card{
        text-align:center;
    }
}

@media (max-width:768px){

    .why-us{
        padding:60px 15px;
    }

    .section-heading{
        margin-bottom:50px;
    }

    .section-heading h2{
        font-size:32px;
    }

    .why-us-wrapper{
        gap:60px;
    }

    .stats-column{
        width:100%;
        gap:20px;
    }

    .stat-card{
        font-size:16px;
        padding:18px;
        /* border-radius:15px; */
        text-align:center;
    }

    /* Circle */

    .center-circle{
        width:220px;
        height:220px;
        margin:40px auto;
    }

    .circle-image img{
        width:180px;
        max-width:80%;
    }

    /* Floating Icons */

    .feature{
        width:50px;
        height:50px;
        font-size:16px;
    }

    .feature span{
        font-size:9px;
        top:58px;
        padding:2px 5px;
        letter-spacing:0;
    }

    .feature-top{
        top:-25px;
        left:50%;
        transform:translateX(-50%);
    }

    .feature-bottom{
        bottom:-25px;
        left:50%;
        transform:translateX(-50%);
    }

    .feature-left-top{
        left:-20px;
        top:45px;
    }

    .feature-left-bottom{
        left:-20px;
        bottom:45px;
    }

    .feature-right-top{
        right:-20px;
        top:45px;
    }

    .feature-right-bottom{
        right:-20px;
        bottom:45px;
    }
}

@media (max-width:480px){

    .center-circle{
        width:190px;
        height:190px;
    }

    .circle-image img{
        width:140px;
    }

    .feature{
        width:42px;
        height:42px;
        font-size:14px;
    }

    .feature span{
        display:none; /* hides labels to prevent overlap */
    }

    .feature-left-top{
        left:-15px;
        top:40px;
    }

    .feature-left-bottom{
        left:-15px;
        bottom:40px;
    }

    .feature-right-top{
        right:-15px;
        top:40px;
    }

    .feature-right-bottom{
        right:-15px;
        bottom:40px;
    }

    .feature-top{
        top:-20px;
    }

    .feature-bottom{
        bottom:-20px;
    }
}

/* Mobile */

/* @media(max-width:768px){

    .section-heading h2{
        font-size:38px;
    }

    .center-circle{
        width:280px;
        height:280px;
    }

    .circle-image img{
        width:130px;
    }

    .feature{
        width:65px;
        height:65px;
        font-size:20px;
    }

    .feature-top,
    .feature-bottom{
        left:50%;
    }

    .feature-top{
        top:-32px;
    }

    .feature-bottom{
        bottom:-32px;
    }

    .feature-right-top,
    .feature-right-bottom{
        right:-32px;
    }

    .feature-left-top,
    .feature-left-bottom{
        left:-32px;
    }

    .feature span{
        font-size:10px;
        top:75px;
    }

    .stat-card{
        font-size:18px;
        padding:20px;
        border-radius:20px;
    }
} */

.footer{
    background: var(--primary-color);
    color:#fff;
}

.footer-container{
    max-width:1200px;
    margin:auto;
    padding:80px 20px 60px;
    display:grid;
    grid-template-columns:2fr 1fr 1.3fr 1.8fr;
    gap:35px;
}

.footer-col h3{
    font-size:25px;
    margin-bottom:25px;
    position:relative;
    padding-bottom:15px;
}

.footer-col h3::after{
    content:'';
    position:absolute;
    left:0;
    bottom:0;
    width:100%;
    height:1px;
    background:rgba(255,255,255,.15);
}

.footer-col h4{
    font-size:24px;
    margin:30px 0 15px;
}

.footer-about p{
    line-height:1.9;
    color:rgba(255,255,255,.9);
}

.footer-read-more{
    display:inline-block;
    margin-top:20px;
    color:#1e90ff;
    text-decoration:none;
}

.footer-col ul{
    list-style:none;
    padding:0;
    margin:0;
}

.footer-col ul li{
    margin-bottom:16px;
}

.footer-col ul li a{
    color:#fff;
    text-decoration:none;
    transition:.3s;
}

.footer-col ul li a i{
    margin-right:8px;
}

.footer-col ul li a:hover{
    color:#1e90ff;
    padding-left:5px;
}

.footer-contact p{
    margin-bottom:16px;
    line-height:1.8;
}

.footer-contact i{
    width:22px;
    margin-right:8px;
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.1);
    text-align:center;
    padding:25px 20px;
    font-size:15px;
    color:rgba(255,255,255,.8);
}

/* Tablet */

@media(max-width:991px){

    .footer-container{
        grid-template-columns:1fr 1fr;
    }
}

/* Mobile */

@media(max-width:767px){

    .footer-container{
        grid-template-columns:1fr;
        gap:40px;
        padding:60px 20px;
    }

    .footer-col h3{
        font-size:26px;
    }

    .footer-col h4{
        font-size:22px;
    }
}

.footer-cta{
    position:relative;
    margin-bottom:-80px;
    z-index:10;
}

.footer-cta-container{
    max-width:1200px;
    margin:auto;
    background:#fff;
    border-radius:50px;
    padding:45px 60px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:30px;
    box-shadow:0 15px 40px rgba(0,0,0,.12);
}

.footer-cta-content span{
    display:block;
    color: var(--primary-color);
    font-weight:600;
    margin-bottom:10px;
    text-transform:uppercase;
    letter-spacing:1px;
}

.footer-cta-content h2{
    font-size:35px;
		font-weight: 600;
    color:#0d2d50;
    margin-bottom:12px;
    line-height:1.2;
}

.footer-cta-content p{
    color:#666;
    max-width:550px;
    margin:0;
}

.footer-cta-btn a{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:150px;
    height:40px;
    background: var(--primary-color);
    color:#fff;
    text-decoration:none;
    font-weight:600;
    border-radius:6px;
    transition:.3s;
}

.footer-cta-btn a:hover{
    background:#084f7d;
}

/* Add top spacing to footer */
.footer{
    padding-top:100px;
}

/* Tablet */
@media(max-width:991px){

    .footer-cta{
        margin-bottom:0;
    }

    .footer{
        padding-top:80px;
    }

    .footer-cta-container{
        flex-direction:column;
        text-align:center;
        padding:40px 30px;
    }

    .footer-cta-content h2{
        font-size:30px;
    }
}

/* Mobile */
@media(max-width:767px){

    .footer-cta-content h2{
        font-size:26px;
    }

    .footer-cta-btn{
        width:100%;
    }

    .footer-cta-btn a{
        width:100%;
    }
}

.footer-cta-container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:40px;
}

.footer-cta-right{
    display:flex;
    align-items:center;
    gap:20px;
}

.cta-icon{
    width:40px;
    height:40px;
    background:#fff;
    border:1px solid #e5e5e5;
    border-radius:15px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    color:var(--primary-color);
    font-size:22px;
    transition:all .3s ease;
    box-shadow:0 4px 15px rgba(0,0,0,.08);
}

.cta-icon:hover{
    background: var(--primary-color);
    color:#fff;
    transform:translateY(-5px);
}

.cta-icon i{
		transition:all .3s ease;
		font-size:18px;
}

.footer-cta-btn a{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    /* padding:18px 45px; */
    background: var(--primary-color);
    color:#fff;
    text-decoration:none;
    border-radius:14px;
    font-weight:600;
    font-size:15px;
    letter-spacing:2px;
    text-transform:uppercase;
    transition:.3s;
}

.footer-cta-btn a:hover{
    transform:translateY(-5px);
}

.footer-social{
    display:flex;
    gap:12px;
    margin-top:20px;
}

.footer-social a{
    width:40px;
    height:40px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#ffffff15;
    border:1px solid rgba(255,255,255,.15);
    border-radius:50%;
    color:#fff;
    text-decoration:none;
    transition:all .3s ease;
}

.footer-social a:hover{
    background:var(--primary-color);
    transform:translateY(-3px);
}

/* how help  */

.help-section{
    background: var(--primary-color);
    padding:100px 20px;
}

.help-section .container{
    max-width:1400px;
    margin:auto;
}

.help-heading{
    text-align:center;
    margin-bottom:70px;
}

.help-heading h2{
    color:#fff;
    font-size:40px;
    font-weight:700;
    margin-bottom:15px;
    line-height:1.2;
}

.help-heading p{
    color:#fff;
    font-size:12px;
    letter-spacing:4px;
    text-transform:uppercase;
    margin:0;
}

.help-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:35px;
}

.help-card{
    background:#f4f4f4;
    border-radius:20px;
    padding:20px 35px;
    text-align:center;
    transition:.35s ease;
}

.help-card:hover{
    transform:translateY(-10px);
}

.help-icon{
    width:82px;
    height:82px;
    border-radius:50%;
    background:var(--primary-color);
    margin:0 auto 35px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.help-icon i{
    font-size:34px;
    color: #fff;
}

.dark-icon{
    background:#00174f;
}

.dark-icon i{
    color:#fff;
}

.help-card h3{
    font-size:20px;
    line-height:1.2;
    color:#000;
    margin-bottom:25px;
    font-weight:700;
}

.help-card p{
    color:#666;
    line-height:1.9;
    font-size:15px;
    margin:0;
}

/* Large Tablet */
@media(max-width:1200px){

    .help-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .help-heading h2{
        font-size:46px;
    }
}

/* Mobile */
@media(max-width:768px){

    .help-section{
        padding:70px 15px;
    }

    .help-grid{
        grid-template-columns:1fr;
        gap:25px;
    }

    .help-heading{
        margin-bottom:50px;
    }

    .help-heading h2{
        font-size:32px;
    }

    .help-heading p{
        font-size:10px;
        letter-spacing:2px;
    }

    .help-card{
        padding:35px 25px;
    }

    .help-card h3{
        font-size:26px;
    }

    .help-card p{
        font-size:15px;
    }

    .help-icon{
        width:70px;
        height:70px;
    }

    .help-icon i{
        font-size:28px;
    }
}

.industry-hidden{
    display:none;
}

.industry-btn-wrap{
    text-align:center;
    margin-top:40px;
}

.industry-btn{
    background:var(--primary-color);
    color:#fff;
    border:none;
    padding:14px 40px;
    border-radius:6px;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

.industry-btn:hover{
    background:var(--primary-color);
}

/* mission vision  */

.mission-vision{
    background:#eef3f7;
    padding:40px 0 50px;
}

.mv-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:80px;
}

.mv-card{
    position:relative;
}

.mv-card h2{
    font-size:35px;
    font-weight:600;
    color:#002b5c;
    text-align:center;
    margin-bottom:30px;
    /*font-family:inherit;*/
}

.mv-card p{
    font-size:17px;
    line-height:1.9;
    color:#2f2f2f;
    margin-bottom:20px;
}

.mv-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    text-decoration:none;
    color:#002b5c;
    text-transform:uppercase;
    letter-spacing:3px;
    font-size:14px;
    font-weight:600;
    transition:.3s;
}

.mv-btn:hover{
    gap:18px;
    color:#f57c1f;
}

@media(max-width:991px){

    .mv-grid{
        grid-template-columns:1fr;
        gap:50px;
    }

    .mv-card h2{
        font-size:40px;
        margin-bottom:30px;
    }

    .mv-card p{
        font-size:17px;
    }
}

/* .whatsapp-float{
    position: fixed;
    top: 50%;
    right: 0px !important;
    transform: rotate(-90deg);
    z-index: 9999;

    background: #08142d;
    color: #fff;
    text-decoration: none;
    padding: 14px 25px;
    border-radius: 12px 12px 0 0;
} */

.whatsapp-float{
    position: fixed;
    top: 50%;
    right: -72px;
    transform: translateY(-50%) rotate(-90deg);

    background: var(--primary-color);
    color: #fff;
    text-decoration: none;

    padding: 14px 20px;
    white-space: nowrap;

    border-radius: 12px 12px 0 0;
    box-shadow: 0 8px 25px rgba(0,0,0,.25);

    font-size: 16px;
    font-weight: 500;
    z-index: 9999;

    transition: all .3s ease;
}

.whatsapp-float:hover {
    background: #25D366;
}

.whatsapp-float i{
	/* background-color: #25D366; */
		color: #25D366;
		font-size: 18px;
		display: inline-flex;
		align-items: center;
		justify-content: center;
}

/* Tablet */
@media (max-width: 992px){
    .whatsapp-float{
        font-size: 15px;
        padding: 12px 25px;
    }
}

/* Mobile */
@media (max-width: 768px){
    .whatsapp-float{
        font-size: 14px;
        padding: 10px 25px;
    }
}

/* Small Mobile */
@media (max-width: 480px){
    .whatsapp-float{
        font-size: 13px;
        padding: 8px 25px;
    }
}

.hero-slider__eyebrow{
    display: inline-flex;
    align-items: center;
    gap: 10px;

    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(8px);

    color: #fff;
    padding: 10px 18px;
    border-radius: 50px;

    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;

    border: 1px solid rgba(255,255,255,.15);

    transition: all .3s ease;
}

.hero-slider__eyebrow i{
    color: var(--secondary-color);
    font-size: 14px;
}

.hero-slider__eyebrow:hover{
    background: rgba(0, 0, 0, 0.65);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,.25);
}


/* chatbot  */

