:root {
	--primary: #155263;
	--primary-dark: #0f3d49;
	--primary-light: #196378;
	--accent: #ff6f3c;
	--accent-dark: #e85f2f;
	--ink: #17313a;
	--muted: #667a82;
	--surface: #ffffff;
	--soft: #f5f9fa;
	--border: #dce7ea;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: "Poppins", sans-serif;
	color: var(--ink);
	background: var(--surface);
	overflow-x: hidden;
}

.layout_padding {
	padding: 88px 0;
}

.heading_container {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.heading_container.heading_center {
	align-items: center;
	text-align: center;
}

.heading_container h2 {
	max-width: 820px;
	margin: 8px 0 14px;
	color: var(--ink);
	font-size: clamp(30px, 3.2vw, 46px);
	font-weight: 700;
	line-height: 1.16;
}

.heading_container h2 span {
	color: var(--accent);
}

.heading_container > p {
	max-width: 760px;
	margin: 0;
	color: var(--muted);
	font-size: 16px;
	line-height: 1.75;
}

.section-kicker,
.hero-kicker {
	display: inline-block;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .14em;
	text-transform: uppercase;
}

.section-kicker {
	color: var(--accent);
}

.hero_area {
	position: relative;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

.header_section {
	position: relative;
	z-index: 20;
	background: var(--primary);
}

.header_section .container-fluid {
	padding-right: 34px;
	padding-left: 34px;
}

.header_section .header_top {
	padding: 14px 0;
	background: var(--primary-light);
}

.header_section .header_bottom {
	padding: 10px 0;
}

.top_nav_container {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.navbar-brand {
	display: inline-flex;
	align-items: baseline;
	gap: 10px;
	padding: 0;
	margin: 0;
	color: #fff;
	font-weight: 700;
}

.navbar-brand span,
.navbar-brand:hover span {
	color: #fff;
}

.navbar-brand .brand-name {
	font-size: 30px;
	letter-spacing: -.04em;
}

.navbar-brand small {
	color: rgba(255,255,255,.68);
	font-size: 11px;
	font-weight: 500;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.contact_nav {
	display: flex;
	align-items: center;
	gap: 22px;
}

.contact_nav a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin: 0;
	color: #fff;
	font-size: 14px;
}

.contact_nav a i {
	color: var(--accent);
}

.contact_nav a:hover {
	color: #fff;
	opacity: .85;
}

.custom_nav-container {
	padding: 0;
}

.custom_nav-container .navbar-nav .nav-item .nav-link {
	padding: 10px 20px;
	color: rgba(255,255,255,.9);
	font-size: 14px;
	font-weight: 500;
}

.custom_nav-container .navbar-nav .nav-item .nav-link:hover {
	color: var(--accent);
}

.nav-cta {
	margin-left: auto;
	padding: 11px 18px;
	border-radius: 5px;
	background: var(--accent);
	color: #fff;
	font-size: 13px;
	font-weight: 600;
}

.nav-cta:hover {
	background: var(--accent-dark);
	color: #fff;
}

.custom_nav-container .navbar-toggler {
	width: 38px;
	height: 40px;
	padding: 0;
	border: 0;
	outline: 0;
}

.custom_nav-container .navbar-toggler span {
	display: block;
	position: relative;
	width: 34px;
	height: 3px;
	margin: 7px 0;
	border-radius: 4px;
	background: #fff;
}

.custom_nav-container .navbar-toggler span::before,
.custom_nav-container .navbar-toggler span::after {
	content: "";
	position: absolute;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 4px;
	background: #fff;
}

.custom_nav-container .navbar-toggler span::before {
	top: -10px;
}

.custom_nav-container .navbar-toggler span::after {
	top: 10px;
}

.slider_section {
	position: relative;
	flex: 1;
	display: flex;
	align-items: stretch;
	min-height: 690px;
	background: var(--primary-dark);
}

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

.slider-bg::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(10,46,56,.98) 0%, rgba(10,46,56,.89) 42%, rgba(10,46,56,.35) 100%);
}

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

.slider_section .carousel,
.slider_section .carousel-inner,
.slider_section .carousel-item {
	width: 100%;
	height: 100%;
}

.slider_section .carousel-item .container {
	display: flex;
	align-items: center;
	min-height: 690px;
	padding-top: 45px;
	padding-bottom: 80px;
}

.slider_section .detail-box {
	position: relative;
	z-index: 2;
	padding: 30px 0;
	color: #fff;
}

.hero-kicker {
	margin-bottom: 18px;
	color: #ff9a77;
}

.slider_section .detail-box h1 {
	max-width: 760px;
	margin: 0 0 22px;
	font-size: clamp(40px, 5.1vw, 70px);
	font-weight: 700;
	line-height: 1.06;
	letter-spacing: -.035em;
}

.slider_section .detail-box p {
	max-width: 670px;
	margin: 0 0 30px;
	color: rgba(255,255,255,.82);
	font-size: 17px;
	line-height: 1.75;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.slider_section .detail-box .hero-actions a,
.primary-action,
.secondary-action {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 180px;
	padding: 14px 22px;
	border: 1px solid transparent;
	border-radius: 5px;
	font-size: 14px;
	font-weight: 600;
	transition: .2s ease;
}

.slider_section .detail-box .hero-actions .primary-action,
.primary-action {
	background: var(--accent);
	color: #fff;
}

.slider_section .detail-box .hero-actions .primary-action:hover,
.primary-action:hover {
	background: var(--accent-dark);
	color: #fff;
}

.slider_section .detail-box .hero-actions .secondary-action,
.secondary-action {
	border-color: rgba(255,255,255,.48);
	background: rgba(255,255,255,.06);
	color: #fff;
}

.slider_section .detail-box .hero-actions .secondary-action:hover,
.secondary-action:hover {
	border-color: #fff;
	background: #fff;
	color: var(--primary-dark);
}

.carousel_btn_box {
	position: absolute;
	right: 42px;
	bottom: 34px;
	z-index: 5;
	display: flex;
	gap: 8px;
}

.carousel-control-prev,
.carousel-control-next {
	position: static;
	width: 44px;
	height: 44px;
	border: 1px solid rgba(255,255,255,.28);
	border-radius: 50%;
	background: rgba(0,0,0,.18);
	font-size: 22px;
	opacity: 1;
}

.service_section {
	background: #fff;
}

.service_grid {
	margin-top: 38px;
}

.service_section .box {
	display: flex;
	align-items: flex-start;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	padding: 30px 28px;
	border: 1px solid var(--border);
	border-radius: 10px;
	background: #fff;
	box-shadow: 0 10px 34px rgba(16,64,76,.06);
	transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.service_section .box:hover {
	transform: translateY(-4px);
	border-color: #cbdde1;
	box-shadow: 0 18px 42px rgba(16,64,76,.10);
}

.service_section .box .img-box {
	flex: 0 0 62px;
	width: 62px;
	height: 62px;
	margin-right: 20px;
}

.service_section .box .service-fa {
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 12px;
	background: #fff0ea;
	color: var(--accent);
	font-size: 25px;
}

.service_section .box .detail-box h5 {
	margin-bottom: 9px;
	color: var(--ink);
	font-size: 18px;
	font-weight: 700;
}

.service_section .box .detail-box p {
	margin: 0;
	color: var(--muted);
	font-size: 14px;
	line-height: 1.7;
}

.about_section {
	padding: 30px 0 80px;
	background: var(--soft);
}

.about_section .row {
	min-height: 530px;
}

.about_section .detail-box {
	padding: 50px 48px 50px 0;
}

.about_section .heading_container h2 {
	font-size: clamp(30px, 3vw, 44px);
}

.about_section .detail-box > p {
	color: var(--muted);
	font-size: 15px;
	line-height: 1.8;
}

.about_section .img-box {
	height: 440px;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 22px 50px rgba(16,64,76,.14);
}

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

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

.about-stats div {
	padding: 16px 12px;
	border-left: 3px solid var(--accent);
	background: #fff;
}

.about-stats strong,
.about-stats span {
	display: block;
}

.about-stats strong {
	color: var(--primary);
	font-size: 22px;
}

.about-stats span {
	margin-top: 3px;
	color: var(--muted);
	font-size: 11px;
	line-height: 1.4;
}

.why_us_section {
	background: #fff;
}

.why_us_section .row {
	margin-top: 38px;
}

.why_us_section .box {
	height: 100%;
	padding: 24px;
	text-align: center;
}

.why_us_section .box .img-box {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 90px;
	margin-bottom: 18px;
}

.why_us_section .box .img-box img {
	max-width: 75px;
	max-height: 75px;
}

.why_us_section .box h5 {
	margin-bottom: 10px;
	color: var(--ink);
	font-size: 19px;
	font-weight: 700;
}

.why_us_section .box p {
	margin: 0;
	color: var(--muted);
	font-size: 14px;
	line-height: 1.7;
}

.focus_section {
	padding-top: 0;
	background: #fff;
}

.focus-panel {
	display: grid;
	grid-template-columns: 1.05fr .95fr;
	gap: 54px;
	padding: 55px;
	border-radius: 16px;
	background: var(--primary);
	color: #fff;
}

.focus-copy h2 {
	margin: 10px 0 18px;
	font-size: clamp(30px, 3.2vw, 46px);
	font-weight: 700;
	line-height: 1.15;
}

.focus-copy p {
	margin: 0;
	color: rgba(255,255,255,.75);
	font-size: 15px;
	line-height: 1.8;
}

.focus-list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px;
}

.focus-list > div {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 18px;
	border: 1px solid rgba(255,255,255,.13);
	border-radius: 9px;
	background: rgba(255,255,255,.06);
}

.focus-list i {
	width: 28px;
	color: var(--accent);
	font-size: 20px;
	text-align: center;
}

.focus-list span,
.focus-list strong {
	display: block;
}

.focus-list strong {
	margin-bottom: 2px;
	font-size: 14px;
}

.focus-list span {
	color: rgba(255,255,255,.72);
	font-size: 11px;
}

.focus-list span strong {
	color: #fff;
}

.contact_section {
	background: var(--soft);
}

.contact-cards {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
	max-width: 900px;
	margin: 42px auto 0;
}

.contact-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 34px 24px;
	border: 1px solid var(--border);
	border-radius: 12px;
	background: #fff;
	color: var(--ink);
	text-align: center;
	box-shadow: 0 10px 30px rgba(16,64,76,.06);
	transition: .2s ease;
}

.contact-card:hover {
	transform: translateY(-3px);
	color: var(--ink);
	box-shadow: 0 18px 42px rgba(16,64,76,.1);
}

.contact-card i {
	margin-bottom: 15px;
	color: var(--accent);
	font-size: 26px;
}

.contact-card span {
	margin-bottom: 5px;
	color: var(--muted);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: .07em;
	text-transform: uppercase;
}

.contact-card strong {
	font-size: 23px;
	font-weight: 700;
}

.contact-card small {
	margin-top: 4px;
	color: var(--primary);
	font-size: 14px;
}

.contact-action {
	margin-top: 24px;
	text-align: center;
}

.contact-action a {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 13px 22px;
	border-radius: 5px;
	background: var(--accent);
	color: #fff;
	font-size: 14px;
	font-weight: 600;
}

.contact-action a:hover {
	background: var(--accent-dark);
	color: #fff;
}

.footer_section {
	padding-top: 58px;
	background: #0f3d49;
	color: #fff;
}

.footer-main {
	padding-bottom: 38px;
}

.footer-col {
	margin-bottom: 24px;
}

.footer-logo {
	display: inline-block;
	margin-bottom: 14px;
	color: #fff;
	font-size: 30px;
	font-weight: 700;
	letter-spacing: -.04em;
}

.footer-logo:hover {
	color: #fff;
}

.footer_detail p {
	max-width: 470px;
	color: rgba(255,255,255,.67);
	font-size: 13px;
	line-height: 1.7;
}

.footer_section h4 {
	margin-bottom: 17px;
	font-size: 16px;
	font-weight: 700;
}

.footer_links,
.contact_link_box {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.footer_links a,
.contact_link_box a {
	color: rgba(255,255,255,.72);
	font-size: 13px;
}

.footer_links a:hover,
.contact_link_box a:hover {
	color: #fff;
}

.contact_link_box a {
	display: flex;
	align-items: center;
	gap: 9px;
}

.contact_link_box i {
	width: 16px;
	color: var(--accent);
}

.footer-info {
	padding: 18px 0;
	border-top: 1px solid rgba(255,255,255,.09);
	background: rgba(0,0,0,.1);
}

.footer-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

.footer-bottom p {
	margin: 0;
	color: rgba(255,255,255,.55);
	font-size: 11px;
}

.template-credit a {
	color: rgba(255,255,255,.75);
}

@media (max-width: 991.98px) {
	.header_section .container-fluid {
		padding-right: 22px;
		padding-left: 22px;
	}

	.custom_nav-container .navbar-collapse {
		padding-top: 12px;
	}

	.custom_nav-container .navbar-nav .nav-item .nav-link {
		padding: 10px 0;
		text-align: left;
	}

	.nav-cta {
		display: inline-flex;
		margin: 10px 0 6px;
	}

	.slider_section,
	.slider_section .carousel-item .container {
		min-height: 620px;
	}

	.slider-bg::after {
		background: rgba(10,46,56,.86);
	}

	.focus-panel {
		grid-template-columns: 1fr;
		gap: 35px;
		padding: 42px;
	}
}

@media (max-width: 767.98px) {
	.layout_padding {
		padding: 65px 0;
	}

	.header_section .header_top {
		display: none;
	}

	.header_section .header_bottom {
		padding: 14px 0;
	}

	.navbar-brand span {
		font-size: 25px;
	}

	.slider_section,
	.slider_section .carousel-item .container {
		min-height: 610px;
	}

	.slider_section .carousel-item .container {
		padding-top: 25px;
		padding-bottom: 70px;
	}

	.slider_section .detail-box h1 {
		font-size: clamp(37px, 11vw, 52px);
	}

	.slider_section .detail-box p {
		font-size: 16px;
		line-height: 1.65;
	}

	.hero-actions {
		flex-direction: column;
		align-items: stretch;
	}

	.slider_section .detail-box .hero-actions a {
		width: 100%;
		min-width: 0;
	}

	.carousel_btn_box {
		right: 20px;
		bottom: 20px;
	}

	.service_section .box {
		height: auto;
	}

	.about_section {
		padding: 20px 0 65px;
	}

	.about_section .row {
		min-height: 0;
	}

	.about_section .detail-box {
		padding: 40px 0;
	}

	.about_section .img-box {
		height: 320px;
	}

	.about-stats {
		grid-template-columns: 1fr;
	}

	.focus-panel {
		padding: 32px 24px;
	}

	.focus-list {
		grid-template-columns: 1fr;
	}

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

	.contact-card strong {
		font-size: 21px;
	}

	.footer-bottom {
		flex-direction: column;
		align-items: flex-start;
	}
}

@media (max-width: 575.98px) {
	.header_section .container-fluid {
		padding-right: 16px;
		padding-left: 16px;
	}

	.heading_container h2 {
		font-size: 29px;
	}

	.heading_container > p {
		font-size: 15px;
	}

	.slider_section .detail-box h1 {
		font-size: 38px;
	}

	.slider_section .detail-box p {
		font-size: 15px;
	}

	.service_section .box {
		flex-direction: column;
		padding: 24px;
	}

	.service_section .box .img-box {
		margin: 0 0 17px;
	}
}
