body {
	font-family: "Poppins", sans-serif;
	margin: 0;
	background-color: #0e1528;
	color: #fff;
	overflow-x: hidden;
	animation: fadeInBody 1.2s ease-in-out;
}

@keyframes fadeInBody {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

.top-header {
	position: relative;
	backdrop-filter: blur(8px);
	background: rgba(15, 26, 46, 0.6);
	color: #fff;
	font-size: 14px;
	padding: 10px 0;
	border-bottom: 1px solid;
	border-image: linear-gradient(to right, rgba(244, 197, 66, 0.8), rgba(164, 107, 0, 0.8)) 1;
	animation: fadeInTop 1.2s ease forwards;
}

@keyframes fadeInTop {
	from {
		opacity: 0;
		transform: translateY(-20px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.contact-info {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 15px;
}

.contact-info span {
	display: flex;
	align-items: center;
	gap: 6px;
	color: #fff;
	white-space: nowrap;
}

.contact-info i {
	color: #f4c542;
	font-size: 14px;
}

.contact-info a {
	color: #fff;
	text-decoration: none;
	font-weight: 500;
	transition: 0.3s;
}

.contact-info a:hover {
	color: #f4c542;
}

.contact-info span:not(:last-child)::after {
	content: "|";
	margin-left: 15px;
	color: rgba(255, 255, 255, 0.25);
}

.social-icons a {
	color: #f4c542;
	margin-left: 15px;
	font-size: 16px;
	transition: 0.3s;
}

.social-icons a:hover {
	color: #fff;
	transform: scale(1.1);
}

@media (max-width: 768px) {
	.top-header .container {
		flex-direction: column;
		text-align: center;
		gap: 6px;
	}

	.contact-info {
		justify-content: center;
		gap: 10px;
	}

	.contact-info span {
		display: inline-flex;
	}

	.contact-info span:not(:last-child)::after {
		content: "|";
		margin: 0 8px;
	}

	.social-icons {
		justify-content: center;
		margin-top: 5px;
	}

	.top-header {
		padding: 8px 0;
	}
}

.navbar {
	background: rgba(255, 255, 255, 0.96);
	backdrop-filter: blur(5px);
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0);
	padding: 0.9rem 0;
	transition: all 0.4s ease;
	animation: fadeInNav 1.4s ease forwards;
}

@keyframes fadeInNav {
	from {
		opacity: 0;
		transform: translateY(-10px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.navbar.scrolled {
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
	background: rgba(255, 255, 255, 0.96);
	backdrop-filter: blur(8px);
}

.navbar-brand {
	font-size: 28px;
	font-weight: 800;
	color: #0f1a2e !important;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.navbar-brand span {
	color: #a46b00;
}

.navbar-toggler {
	border: 2px solid #a46b00;
	border-radius: 6px;
	padding: 4px 8px;
	background: transparent !important;
	color: #a46b00;
	transition: 0.3s;
}

.navbar-toggler:hover {
	color: #f4c542;
	border-color: #f4c542;
}

.navbar-nav .nav-link {
	font-weight: 600;
	margin: 0 10px;
	position: relative;
	transition: 0.3s;
}

.navbar-nav .nav-link:hover {
	color: #a46b00 !important;
}

.navbar-nav .nav-link::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 50%;
	width: 0;
	height: 2px;
	background-color: #a46b00;
	transform: translateX(-50%);
	transition: 0.3s;
}

.navbar .dropdown-toggle::after {
	display: none !important;
}

.navbar-nav .nav-link.active {
	color: #a46b00 !important;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {

	width: 60%;
}

@media (max-width: 992px) {
	.navbar-nav .nav-link::after {
		display: none !important;
	}
}

.logo {
	width: auto;
	height: 70px;
}

@media (max-width: 768px) {
	.logo {
		width: auto;
		height: 50px;

	}
}

.apply-btn {
	background: linear-gradient(135deg, #f4c542, #a46b00);
	color: #fff !important;
	border-radius: 50px;
	padding: 10px 22px;
	font-weight: 600;
	transition: 0.3s;

}

.apply-btn:hover {
	background: linear-gradient(135deg, #a46b00, #f4c542);
	transform: translateY(-2px);
	color: white;
}

.offcanvas {
	background: #0f1a2e;
	color: white;
}

.offcanvas .nav-link {
	color: #fff !important;
	font-size: 18px;
	padding: 12px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.offcanvas .nav-link:hover {
	color: #f4c542 !important;
}

.offcanvas-header {
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.dropdown-menu {
	background: #fff;
	border-radius: 8px;
	padding: 10px 0;
}

.dropdown-item {
	font-weight: 500;
	color: #333 !important;
	padding: 10px 18px;
}

.dropdown-item:hover {
	background: #f4c542;
	color: #000 !important;
}

.hero {
	position: relative;
	height: 100vh;
	background: radial-gradient(circle at top, #101a33 0%, #060b18 100%);
	overflow: hidden;
	display: flex;
	align-items: center;
}

.hero-slide {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	opacity: 0;
	transform: scale(1.05);
	transition: opacity 1.5s ease, transform 6s ease;
}

.hero-slide.active {
	opacity: 1;
	transform: scale(1);
	z-index: 1;
}

.hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to right, rgba(10, 15, 28, 0.88), rgba(10, 15, 28, 0.5));
	z-index: 2;
}

.hero-content {
	position: relative;
	z-index: 3;
	padding-left: 8%;
	max-width: 600px;
	text-align: left;
	animation: fadeUp 1s ease forwards;
}

.hero-content h1 {
	font-size: 3rem;
	font-weight: 800;
	text-transform: uppercase;
	color: #fff;
	letter-spacing: 0.5px;
	line-height: 1.25;
	margin-bottom: 15px;
}

.hero-content h1 span {
	color: #f4c542;
}

.hero-content p {
	font-size: 17px;
	color: #ccc;
	line-height: 1.6;
	margin-bottom: 30px;
}

.btn-theme {
	background: linear-gradient(135deg, #f4c542, #a46b00);
	color: #fff;
	border-radius: 50px;
	padding: 12px 32px;
	font-weight: 600;
	border: none;
	transition: 0.3s;
}

.btn-theme:hover {
	background: linear-gradient(135deg, #a46b00, #f4c542);
	transform: translateY(-3px);
}

@keyframes fadeUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.scroll-down {
	position: absolute;
	bottom: 25px;
	left: 8%;
	z-index: 5;
	color: #f4c542;
	font-size: 14px;
	animation: fadeBlink 2s infinite;
}

.scroll-down i {
	display: block;
	margin-top: 5px;
	font-size: 18px;
}

@keyframes fadeBlink {

	0%,
	100% {
		opacity: 0.3;
	}

	50% {
		opacity: 1;
	}
}

@media (max-width: 992px) {
	.hero-content {
		padding-left: 5%;
		max-width: 90%;
	}
}

@media (max-width: 768px) {
	.hero {
		align-items: flex-end;
		padding-bottom: 60px;
	}

	.hero-content {
		padding-left: 5%;
		padding-right: 5%;
	}

	.hero-content h1 {
		font-size: 2rem;
	}

	.hero-content p {
		font-size: 14px;
	}

	.navbar-collapse {
		background: #fff;
		padding: 15px;
		border-radius: 8px;
	}
}

.navbar-toggler {
	border: none;
}

.about-modern {
	position: relative;
	background: #fff;
	padding: 120px 0;
	overflow: hidden;
}

.about-image {
	position: relative;
	border-radius: 20px;
	overflow: hidden;
}

.about-image img {
	width: 100%;
	border-radius: 5px;
	box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
	transition: transform 0.6s ease;
	height: 550px;
}
@media (max-width: 579px){
.about-image img {
	width: 400px;
	height: 500px;
}
}
.about-image:hover img {
	transform: scale(1.04);
}

.shape-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 80%;
	height: 100%;
	background: linear-gradient(135deg, rgba(244, 197, 66, 0.25), rgba(255, 255, 255, 0));
	clip-path: polygon(0 0, 80% 0, 100% 100%, 0% 100%);
	pointer-events: none;
}

.section-tag {
	color: #a46b00;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-bottom: 8px;
	font-size: 14px;
}

.section-title {
	font-size: 2.4rem;
	font-weight: 800;
	color: #111;
	margin-bottom: 20px;
}

.section-title span {
	color: #a46b00;
}

.about-modern p {
	color: #555;
	font-size: 16px;
	line-height: 1.8;
	margin-bottom: 18px;
	text-align: justify;
}

@media (max-width: 768px) {
	.about-modern p {
		padding: 0 15px;

	}

}

.about-points {
	list-style: none;
	padding: 0;
	margin-top: 25px;
}

.about-points li {
	font-size: 15.5px;
	color: #333;
	margin-bottom: 12px;
	position: relative;
	padding-left: 28px;
	line-height: 1.7;
}

.about-points li::before {
	content: "✔";
	position: absolute;
	left: 0;
	top: 0;
	color: #a46b00;
	font-weight: 700;
	font-size: 14px;
}

.feature-card {
	background: #fff;
	border-radius: 14px;
	padding: 35px 25px;
	text-align: center;
	border: 1px solid rgba(0, 0, 0, 0.06);
	box-shadow: 0 6px 25px rgba(0, 0, 0, 0.05);
	transition: all 0.4s ease;
	height: 100%;
}

.feature-card:hover {
	transform: translateY(-8px);
	border-color: #a46b00;
	box-shadow: 0 10px 35px rgba(164, 107, 0, 0.15);
}

.icon-wrap {
	width: 65px;
	height: 65px;
	margin: 0 auto 15px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #a46b00;
	font-size: 24px;
	box-shadow: 0 4px 12px rgba(244, 197, 66, 0.4);
}

.feature-card h4 {
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 12px;
	color: #222;
}

.feature-card p {
	font-size: 15px;
	color: #555;
	line-height: 1.7;
}

@media (max-width: 992px) {
	.about-modern {
		padding: 80px 0;
		text-align: center;
	}

	.section-title {
		font-size: 2rem;
	}

	.about-points {
		text-align: left;
		margin-top: 20px;
	}

	.about-image {
		margin-bottom: 40px;
	}

	.about-points li::before {
		left: 10px;
	}
}

.why-alive {
	position: relative;
	background: linear-gradient(180deg, #fff9ec 0%, #ffffff 100%);
	padding: 70px 0;
	overflow: hidden;
}

.animated-gradient {
	position: absolute;
	inset: 0;
	background: linear-gradient(120deg, rgba(244, 197, 66, 0.1), rgba(255, 255, 255, 0.8), rgba(164, 107, 0, 0.1));
	background-size: 400% 400%;
	animation: gradientFlow 20s ease infinite;
	pointer-events: none;
}

.why-left {
	position: relative;
	padding: 40px 20px;
	z-index: 2;
}

.floating-shape {
	position: absolute;
	top: -40px;
	left: -60px;
	width: 260px;
	height: 260px;
	background: radial-gradient(circle at 40% 40%, rgba(244, 197, 66, 0.28), transparent 70%);
	border-radius: 50%;
	animation: floatSlow 6s ease-in-out infinite alternate;
	z-index: -1;
	filter: blur(2px);
}

.badge-pill {
	display: inline-flex;
	align-items: center;
	background: rgba(244, 197, 66, 0.2);
	color: #a46b00;
	font-weight: 600;
	border-radius: 30px;
	padding: 8px 18px;
	font-size: 14px;
	margin-bottom: 15px;
}

.badge-pill i {
	margin-right: 8px;
}

.section-title {
	font-size: 2.4rem;
	font-weight: 800;
	color: #111;
	margin-bottom: 12px;
}

.section-title span {
	color: #a46b00;
}

.gold-line {
	width: 70px;
	height: 3px;
	background: linear-gradient(90deg, #f4c542, #a46b00);
	border-radius: 2px;
	margin-bottom: 20px;
	position: relative;
	overflow: hidden;
}

.gold-line::after {
	content: "";
	position: absolute;
	top: 0;
	left: -50%;
	width: 50%;
	height: 100%;
	background: linear-gradient(90deg, rgba(255, 255, 255, 0.7), transparent);
	animation: shimmer 3s linear infinite;
}

.section-intro {
	color: #555;
	font-size: 16px;
	line-height: 1.7;
	margin-bottom: 30px;
}

.highlight-box {
	display: flex;
	align-items: flex-start;
	background: #fff;
	border-left: 4px solid #f4c542;
	padding: 15px 20px;
	border-radius: 10px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
	transition: transform 0.4s ease;
}

.highlight-box:hover {
	transform: translateY(-4px);
}

.highlight-box i {
	font-size: 30px;
	color: #a46b00;
	margin-right: 15px;
	animation: pulseGlow 4s ease-in-out infinite;
}

.highlight-box h5 {
	font-weight: 700;
	margin: 0;
	color: #222;
}

.highlight-box p {
	font-size: 14px;
	color: #555;
	margin: 5px 0 0;
}

.choose-flow {
	position: relative;
	padding-left: 35px;
}

.flow-item {
	display: flex;
	align-items: flex-start;
	margin-bottom: 35px;
	position: relative;
	opacity: 0;
	transform: translateY(25px);
	animation: fadeInStagger 0.8s ease forwards;
}

.flow-item:nth-child(1) {
	animation-delay: 0.4s;
}

.flow-item:nth-child(3) {
	animation-delay: 0.7s;
}

.flow-item:nth-child(5) {
	animation-delay: 1s;
}

.flow-item:nth-child(7) {
	animation-delay: 1.3s;
}

.flow-line {
	position: absolute;
	left: 18px;
	width: 2px;
	height: 35px;
	background: linear-gradient(180deg, #f4c542, transparent);
	opacity: 0.7;
}

.icon-circle {
	width: 42px;
	height: 42px;
	background: #0B1F3A;
	color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	box-shadow: 0 3px 10px rgba(164, 107, 0, 0.3);
	transition: all 0.5s ease;
	animation: subtleGlow 6s ease-in-out infinite;
}

.flow-item:hover .icon-circle {
	transform: scale(1.12);
	box-shadow: 0 0 18px rgba(164, 107, 0, 0.4);
}

.flow-content {
	margin-left: 15px;
}

.flow-content h4 {
	font-size: 17px;
	font-weight: 700;
	margin-bottom: 5px;
	color: #222;
}

.flow-content p {
	color: #555;
	font-size: 15px;
	line-height: 1.6;
	margin-bottom: 0;
}

@keyframes gradientFlow {
	0% {
		background-position: 0% 50%;
	}

	50% {
		background-position: 100% 50%;
	}

	100% {
		background-position: 0% 50%;
	}
}

@keyframes floatSlow {
	0% {
		transform: translateY(0);
	}

	100% {
		transform: translateY(15px);
	}
}

@keyframes shimmer {
	from {
		left: -50%;
	}

	to {
		left: 100%;
	}
}

@keyframes fadeInStagger {
	from {
		opacity: 0;
		transform: translateY(25px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes pulseGlow {

	0%,
	100% {
		text-shadow: 0 0 5px rgba(244, 197, 66, 0.3);
	}

	50% {
		text-shadow: 0 0 15px rgba(244, 197, 66, 0.6);
	}
}

@keyframes subtleGlow {

	0%,
	100% {
		box-shadow: 0 3px 10px rgba(164, 107, 0, 0.3);
	}

	50% {
		box-shadow: 0 3px 18px rgba(244, 197, 66, 0.5);
	}
}

@media (max-width: 992px) {
	.why-alive {
		padding: 80px 0;
		text-align: center;
	}

	.choose-flow {
		padding-left: 0;
	}

	.flow-line {
		display: none;
	}

	.flow-item {
		flex-direction: column;
		align-items: center;
	}

	.flow-content {
		margin-left: 0;
		margin-top: 10px;
	}

	.floating-shape {
		display: none;
	}
}

@media (max-width: 992px) {

	.floating-shape {
		display: block !important;
		opacity: 0.6;
		width: 200px;
		height: 200px;
		top: -60px;
		left: 50%;
		transform: translateX(-50%);
		animation: floatMobile 5s ease-in-out infinite alternate;
	}

	.why-alive::before {
		content: "";
		position: absolute;
		inset: 0;
		background: radial-gradient(circle at 50% 0%, rgba(244, 197, 66, 0.12), transparent 70%);
		animation: gradientDrift 12s ease-in-out infinite alternate;
		pointer-events: none;
	}

	.why-alive {
		background: linear-gradient(180deg, #fff9ec 0%, #fff 100%);
		background-attachment: fixed;
		background-size: cover;
		transition: background-position 0.6s ease;
	}

	.flow-item {
		opacity: 0;
		transform: translateY(25px);
		animation: fadeSlideMobile 0.8s ease forwards;
	}

	.flow-item:nth-child(1) {
		animation-delay: 0.2s;
	}

	.flow-item:nth-child(2) {
		animation-delay: 0.4s;
	}

	.flow-item:nth-child(3) {
		animation-delay: 0.6s;
	}

	.flow-item:nth-child(4) {
		animation-delay: 0.8s;
	}

	.icon-circle {
		animation: iconPulse 4s ease-in-out infinite;
	}

	.section-title {
		animation: fadeSlideMobile 1s ease forwards;
	}

	.highlight-box {
		animation: fadeSlideMobile 1.2s ease forwards;
	}
}

@keyframes floatMobile {
	0% {
		transform: translate(-50%, 0);
	}

	100% {
		transform: translate(-50%, 15px);
	}
}

@keyframes gradientDrift {
	0% {
		background-position: 50% 0;
	}

	100% {
		background-position: 50% 100%;
	}
}

@keyframes fadeSlideMobile {
	from {
		opacity: 0;
		transform: translateY(30px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes iconPulse {

	0%,
	100% {
		box-shadow: 0 0 8px rgba(164, 107, 0, 0.3);
	}

	50% {
		box-shadow: 0 0 20px rgba(244, 197, 66, 0.5);
	}
}

.cta-section {
	position: relative;
	background: url('img/img1.jpg') center/cover no-repeat;
	padding: 90px 0;
	color: #fff;
	overflow: hidden;
}

.cta-overlay {
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at top, #101a33 0%, #060b18 100%);
	opacity: 0.88;
}

.cta-title {
	font-weight: 800;
	font-size: 2.4rem;
	margin-bottom: 10px;
	letter-spacing: 0.7px;
	color: #fff;
	animation: fadeSlide 1s ease forwards;
}

.cta-text {
	color: #e6e6e6;
	font-size: 17px;
	line-height: 1.7;
	animation: fadeSlide 1.2s ease forwards;
}

.cta-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;

	padding: 14px 30px;
	border-radius: 6px;

	font-weight: 600;
	font-size: 16px;
	color: #fff;
	text-decoration: none;

	border: 2px solid #a46b00;
	background: rgba(245, 217, 126, 0.10);
	backdrop-filter: blur(4px);

	transition: all 0.35s ease;
	white-space: nowrap;
}

.cta-btn .arrow {
	font-size: 18px;
	transition: transform 0.3s ease;
	color: #a46b00;
}

.cta-btn:hover {
	background: #a46b00;
	color: #fff;
	transform: translateY(-3px);
	box-shadow: 0 6px 16px rgba(212, 160, 23, 0.45);
}


.cta-btn:hover .arrow {
	transform: translateX(5px);
	color: white;
}

@keyframes fadeSlide {
	from {
		opacity: 0;
		transform: translateY(18px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (max-width: 992px) {
	.cta-section {
		text-align: center;
		padding: 70px 20px;
	}

	.cta-title {
		font-size: 2rem;
	}

	.cta-text {
		font-size: 15.5px;
		margin-bottom: 25px;
	}

	.cta-btn {
		padding: 12px 32px;
		font-size: 15px;
	}
}

.swiper-button-next,
.swiper-button-prev {
	display: none !important;
}

.industries-pro-section {
	background: #f7f9fc;
	padding: 100px 0;
	font-family: "Poppins", sans-serif;
}

.i-tag {
	color: #a46b00;
	text-transform: uppercase;
	font-weight: 700;
	letter-spacing: 2px;
	font-size: 14px;
}

.i-title {
	font-weight: 800;
	font-size: 2.1rem;
	color: #0a1f3c;
}

.i-title span {
	color: #a46b00;
}

.i-subtext {
	max-width: 700px;
	margin: 0 auto;
	color: #666;
	font-size: 15.5px;
}

.industriesSwiper {
	padding-bottom: 60px;

}

.swiper-slide {
	height: auto !important;
}

.i-card {
	background: #fff;
	border-radius: 18px;
	padding: 28px 25px;
	min-height: 240px;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	gap: 12px;
	box-shadow: 0 8px 20px rgba(10, 31, 60, 0.06);
	transition: all 0.4s ease;
}


.i-head {
	display: flex;
	align-items: center;
	gap: 15px;
	margin-bottom: 15px;
}

.i-card p {
	margin-top: 10px;
	font-size: 15px;
	line-height: 1.7;
	color: #555;
}


.i-head {
	display: flex;
	align-items: center;
	gap: 15px;
	margin-bottom: 12px;
}

.i-head i {
	font-size: 32px;
	color: #a46b00;
}

.i-head h4 {
	margin: 0;
	font-size: 1.2rem;
	font-weight: 700;
	color: #0a1f3c;
}

.i-card p {
	margin: 0;
	color: #555;
	font-size: 15px;
	line-height: 1.6;
	text-align: justify;
}

.i-card:hover {
	transform: scale(1.06);
	box-shadow: 0 18px 38px rgba(10, 31, 60, 0.14);
}

.swiper-button-next,
.swiper-button-prev {
	color: #a46b00 !important;
}

.swiper-pagination-bullet-active {
	background: #a46b00 !important;
}

.client-section-wrapper {
	padding: 80px 0 70px;
	background: #ffffff;
}

.client-heading {
	margin-bottom: 35px;
}

.client-mini-title {
	color: #a46b00;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-size: 14px;
	font-weight: 700;
	margin-bottom: 6px;
}

.client-main-title {
	font-size: 2rem;
	font-weight: 800;
	color: #0a1f3c;
	margin-bottom: 10px;
}

.client-main-title span {
	color: #a46b00;
}

.client-infinity-cards {
	width: 100%;
	padding: 20px 0;
	overflow: hidden;
}

.brand-track {
	display: flex;
	width: max-content;
	gap: 28px;
	padding-left: 40px;
	animation: scroll-left 22s linear infinite;
}

.client-infinity-cards:hover .brand-track {
	animation-play-state: paused;
}

.brand-row {
	display: flex;
	gap: 28px;
}

.client-section-wrapper {
	background-color: #F0F3F7;
}

.brand-card {
	background: #fff;
	padding: 20px 26px;
	border-radius: 14px;
	min-width: 180px;
	height: auto;
	border: 1px solid rgba(0, 0, 0, 0.06);
	box-shadow: var(--shadow);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: 0.35s ease;
}

@media (max-width: 992px) {

	.contact-grid {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.contact-form-box {
		padding: 30px;
	}

	.form-row {
		flex-direction: column;
		gap: 12px;
	}

	.pro-input {
		width: 100%;
	}

}

@media (max-width: 576px) {

	.contact-pro {
		padding: 60px 0;
	}

	.contact-info-box,
	.contact-form-box {
		padding: 25px 20px;
		border-radius: 10px;
	}

	.contact-header .main-title {
		font-size: 26px;
	}

	.contact-header .desc {
		font-size: 14.5px;
		padding: 0 10px;
	}

	.info-row i {
		font-size: 20px;
	}

	.info-row h4 {
		font-size: 15px;
	}

	.info-row p {
		font-size: 13px;
	}

	.pro-btn {
		width: 100%;
		padding: 14px;
		font-size: 16px;
	}
}


.brand-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 18px 40px rgba(10, 31, 60, 0.12);
}

.brand-card img {
	max-height: 55px;
	width: auto;

	object-fit: contain;
}

@keyframes scroll-left {
	0% {
		transform: translateX(0);
	}

	100% {
		transform: translateX(-50%);
	}
}

@media (max-width: 768px) {
	.client-main-title {
		font-size: 1.6rem;
	}

	.brand-card {
		min-width: 140px;
		padding: 14px 18px;
		height: auto;
	}

	.brand-card img {
		max-height: 40px;
	}
}

.contact-pro {
	padding: 100px 0;
	background: #ffffff;
	font-family: "Poppins", sans-serif;
}

.contact-header {
	text-align: center;
	margin-bottom: 55px;
}

.contact-header .sub-title {
	color: #a46b00;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
}

.contact-header .main-title {
	font-size: 34px;
	font-weight: 800;
	color: #0b1f3a;
	margin: 8px 0 15px;
}

.contact-header .desc {
	color: #555;
	max-width: 650px;
	margin: auto;
	line-height: 1.7;
	font-size: 15.5px;
}

.contact-grid {
	display: grid;
	grid-template-columns: 1fr 1.6fr;
	gap: 40px;
}

.card-title {
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 25px;
	color: #0b1f3a;
}

.contact-info-box .card-title {
	color: #ffffff;
}

.contact-info-box {
	background: #0b1f3a;
	color: #fff;
	padding: 35px 28px;
	border-radius: 12px;
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.info-row {
	display: flex;
	align-items: flex-start;
	gap: 15px;
	margin-bottom: 28px;
}

.info-row i {
	font-size: 22px;
	color: #a46b00;
	margin-top: 4px;
}

.info-row h4 {
	font-size: 16px;
	font-weight: 700;
	margin: 0;
}

.info-row p {
	margin: 3px 0 0;
	font-size: 14px;
	color: #d7eaff;
	line-height: 1.5;
}

.contact-form-box {
	background: #ffffff;
	padding: 40px;
	border-radius: 12px;
	border: 1px solid #e8e8e8;
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.form-row {
	display: flex;
	gap: 18px;
	margin-bottom: 20px;
}

.pro-input {
	flex: 1;
	padding: 12px 15px;
	background: #f5f6fa;
	border: 1px solid #ddd;
	border-radius: 8px;
	font-size: 15px;
}

.pro-input:focus {
	border-color: #a46b00;
	box-shadow: 0 0 0 3px rgba(164, 107, 0, 0.18);
	outline: none;
}

.pro-textarea {
	width: 100%;
	padding: 12px 15px;
	background: #f5f6fa;
	border: 1px solid #ddd;
	border-radius: 8px;
	font-size: 15px;
	margin-bottom: 20px;
}

.pro-textarea:focus {
	border-color: #a46b00;
	box-shadow: 0 0 0 3px rgba(164, 107, 0, 0.18);
}

.pro-btn {
	padding: 12px 28px;
	background: #a46b00;
	color: white;
	border: none;
	border-radius: 8px;
	font-size: 15px;
	font-weight: 600;
	transition: 0.3s;
	margin-top: 25px;
}

.pro-btn:hover {
	background: #8b5800;
}

@media(max-width: 992px) {
	.contact-grid {
		grid-template-columns: 1fr;
	}

}

.fake-recaptcha {
	width: 50%;
	border: 1px solid #d8d8d8;
	border-radius: 6px;
	padding: 14px 9px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: #f5f6fa;
	box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
	margin-bottom: 20px;
	min-width: 260px;
	margin-left: 0;
}


.fake-recaptcha-left {
	display: flex;
	align-items: center;
	gap: 12px;
}

.fake-recaptcha-left input {
	width: 22px;
	height: 22px;
	cursor: pointer;
}

.fake-recaptcha-left label {
	font-size: 16px;
	font-weight: 500;
	color: #333;
}

.fake-recaptcha-right {
	display: flex;
	align-items: center;
	gap: 8px;
}

.fake-recaptcha-right img {
	width: 38px;
	opacity: .85;
}

.fake-recaptcha-right p {
	font-size: 10px;
	text-align: left;
	line-height: 1.2;
	color: #444;
}

.fake-recaptcha-right span {
	font-size: 9px;
	color: #777;
}

@media(max-width: 480px) {
	.fake-recaptcha {
		flex-direction: column;
		align-items: flex-start;
		gap: 12px;
		padding: 14px;
	}

	.fake-recaptcha-right {
		align-self: flex-end;
	}
}

.recruit-section {
	background: #0b1f3a;
	padding: 50px 0 !important;
	color: #fff;
	font-family: "Poppins", sans-serif;
}

.section-title-recruit {
	text-align: center !important;
	font-size: 34px;
	font-weight: 700;
	margin-bottom: 25px;
	color: #e6eef9;
}

.section-title-recruit::after {
	content: "";
	width: 70px;
	height: 3px;
	background: #a46b00;
	display: block;
	margin: 10px auto 0;
	border-radius: 5px;
}

.clean-points-wrapper {
	width: 100% !important;
	text-align: left !important;
	display: block !important;
}

.clean-points-wrapper * {
	text-align: left !important;
}

.point-icon {
	font-size: 18px;
	color: #a46b00;
	margin-top: 4px;
}


.clean-points p {
	text-align: left !important;
	display: flex !important;
	align-items: flex-start !important;
	justify-content: flex-start !important;
	gap: 12px !important;
	margin-bottom: 14px !important;
}


.accordion-grid {
	display: grid !important;
	grid-template-columns: 1fr 1fr !important;
	gap: 30px !important;
	margin-top: 35px !important;
}

.accordion-column {
	display: flex;
	flex-direction: column;
	gap: 20px !important;
}

.acc-item {
	background: #102945 !important;
	border: 1px solid #1c3c63 !important;
	border-radius: 12px !important;
	overflow: hidden !important;
}

.acc-btn {
	width: 100%;
	padding: 18px 20px !important;
	background: #102945 !important;
	color: #fff;
	border: none;
	font-size: 17px;
	font-weight: 600;
	cursor: pointer;
	display: flex !important;
	align-items: center !important;
	text-align: left !important;
	gap: 14px !important;
	position: relative;
}

.acc-btn::after {
	content: "+";
	position: absolute;
	right: 20px;
	color: #a46b00;
	font-size: 22px;
}

.acc-btn.active::after {
	content: "-";
}

.acc-ico {
	color: #a46b00;
	font-size: 20px;
}

.acc-content {
	max-height: 0;
	overflow: hidden;
	background: #0b1f3a !important;
	padding: 0 22px !important;
	transition: max-height 0.35s ease !important;
}

.acc-content p {
	padding: 14px 0 18px !important;
	margin: 0;
	color: #dcdcdc;
}

@media(max-width: 768px) {
	.accordion-grid {
		grid-template-columns: 1fr !important;
	}
}

.main-footer {
	background: #0b1f3a;
	color: #e8e8e8;
	padding: 70px 0 30px;
	font-family: "Poppins", sans-serif;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr 1.5fr;
	gap: 40px;
}

.footer-col h3 {
	color: #a46b00;
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 20px;
}

.footer-col h4 {
	font-size: 16px;
	color: #ffffff;
	font-weight: 600;
	margin-bottom: 8px;
}

.footer-col p {
	line-height: 1.6;
	color: #dcdcdc;
	font-size: 15px;

}

.contact-box {
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.10);
	padding: 18px;
	border-radius: 12px;
	margin-top: 18px;
}

.contact-item {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	margin-bottom: 15px;
}

.contact-item i {
	color: #a46b00;
	font-size: 18px;
}

.footer-col ul {
	list-style: none;
	padding: 0;
}

.footer-col ul li {
	margin-bottom: 10px;
	display: flex;
	align-items: center;
}

.footer-col ul li::before {
	content: "\f054";
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	font-size: 10px;
	margin-right: 8px;
	color: #a46b00;
}

.footer-col ul li a {
	color: #dcdcdc;
	text-decoration: none;
	transition: 0.3s ease;
}

.footer-col ul li a:hover {
	color: #a46b00;
	padding-left: 4px;
}

.locations-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 25px;
}

.location-box i {
	color: #a46b00;
	margin-right: 6px;
}

.loc-divider {
	border: 0;
	height: 1px;
	background: rgba(255, 255, 255, 0.12);
	margin: 25px 0;
}

.footer-social a {
	display: inline-block;
	background: rgba(255, 255, 255, 0.08);
	color: #a46b00;
	width: 36px;
	height: 36px;
	line-height: 36px;
	text-align: center;
	border-radius: 50%;
	margin-right: 8px;
	transition: 0.3s ease;
}

.footer-social a:hover {
	background: #a46b00;
	color: #0b1f3a;
}

.footer-bottom {
	margin-top: 40px;
	text-align: center;
	padding-top: 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	font-size: 14px;
	color: #c0c0c0;
}

@media (max-width: 992px) {
	.footer-grid {
		grid-template-columns: 1fr 1fr;
	}

	.locations-row {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 576px) {
	.footer-grid {
		grid-template-columns: 1fr;
	}

	.contact-box {
		margin-bottom: 20px;
	}

	.locations-row {
		grid-template-columns: 1fr;
	}
}

.contact-box-mini {
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.10);
	padding: 12px 15px;
	border-radius: 10px;
	display: flex;
	gap: 12px;
	align-items: flex-start;
	margin-top: 12px;
	width: 100%;
	max-width: 260px;
}

.contact-box-mini i {
	color: #a46b00;
	font-size: 18px;
}

.about-hero {
	width: 100%;
	height: 65vh;
	background: url('img/img\ \(18\).jpg') center/cover no-repeat;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

.about-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.5);
}

.about-hero-content {
	position: relative;
	text-align: center;
	padding: 20px;
}

.about-hero-content h1 {
	font-size: 48px;
	font-weight: 700;
	color: #F4C542;
	margin-bottom: 10px;
}

.about-hero-content p {
	font-size: 18px;
	font-weight: 500;
	color: white;
}

@media (max-width: 768px) {
	.about-hero {
		height: 40vh;
	}

	.about-hero-content h1 {
		font-size: 32px;
	}

	.about-hero-content p {
		font-size: 15px;
	}
}

.about-pro {
	padding: 70px 0;
	background: #ffffff;
}

.container {
	width: 90%;
	max-width: 1250px;
	margin: auto;
}

.about-wrapper {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 50px;
	align-items: center;
}

.about-title {
	font-size: 38px;
	font-weight: 700;
	color: #0b1f3a;
	margin-bottom: 20px;
	letter-spacing: 1px;
}

.about-desc {
	font-size: 17px;
	line-height: 1.7;
	color: #555;
	margin-bottom: 30px;
	text-align: justify;
}

.about-points .point {
	display: flex;

	align-items: flex-start;
	margin-bottom: 15px;
}

.about-points .point i {
	font-size: 20px;
	color: #a46b00;
	margin-right: 12px;
	margin-top: 3px;
}

.about-points .point span {
	font-size: 16px;
	color: #333;
}

.about-img img {
	width: 100%;
	border-radius: 7px;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
	object-fit: cover;
	height: auto;
}

a {
	text-decoration: none;
	color: inherit;
}

@media (max-width: 900px) {
	.about-wrapper {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.about-points {
		margin: 0 auto;
		width: fit-content;
		text-align: left;
	}

	.about-points .point {
		justify-content: flex-start !important;
	}
}


.mv-diagonal {
	position: relative;
	padding: 100px 0;
	background: #ffffff;
	overflow: hidden;
}

.mv-diagonal-overlay {
	content: "";
	position: absolute;
	top: -50px;
	left: 0;
	width: 100%;
	height: 120%;
	background: #f1f4f9;
	transform: skewY(-4deg);
	z-index: 0;
}

.mv-diagonal-inner {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
}

.mv-diagonal-box {
	background: #ffffff;
	padding: 45px;
	border-radius: 18px;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
	border-left: 6px solid #a46b00;
	transition: 0.3s ease;
}

.mv-diagonal-box:hover {
	transform: translateY(-10px);
	box-shadow: 0 18px 35px rgba(0, 0, 0, 0.12);
}

.mv-d-icon {
	font-size: 42px;
	color: #a46b00;
	margin-bottom: 18px;
}

.mv-diagonal-box h3 {
	font-size: 28px;
	font-weight: 700;
	color: #0b1f3a;
	margin-bottom: 15px;
}

.mv-diagonal-box p {
	font-size: 16px;
	color: #555;
	line-height: 1.7;
}

@media (max-width: 900px) {
	.mv-diagonal-inner {
		grid-template-columns: 1fr;
	}

	.mv-diagonal {
		padding: 70px 0;
	}
}

.mv-wrapper {
	display: flex;
	justify-content: center;
	padding: 50px 0;
	background: #ffffff;
}

.mv-inner {
	width: 90%;
	max-width: 1300px;
	display: flex;
	gap: 0;
}

.mv-image {
	width: 50%;
	height: 420px;
	overflow: hidden;
}

.mv-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.mv-content {
	width: 50%;
	background: #0a1f3c;
	padding: 60px;
	color: #fff;
}

.mv-main-heading {
	font-size: 20px;
	font-weight: 700;
	letter-spacing: 1px;
	margin-bottom: 15px;
	color: #a46b00;
}

.mv-box {
	display: none;
}

.mv-box.show {
	display: block;
}

.mv-title {
	font-size: 28px;
	font-weight: 700;
	margin-bottom: 15px;
}

.mv-text {
	line-height: 1.7;
	color: #d4d3ed;
	margin-bottom: 40px;
}

.mv-bottom-switch {
	display: flex;
	align-items: center;
	gap: 18px;
	margin-top: 10px;
}

.bottom-item {
	display: flex;
	align-items: center;
	gap: 8px;
	cursor: pointer;
	color: #bcbaf1;
	transition: 0.3s;
}

.bottom-item.active {
	color: #a46b00;
}

.bottom-item i {
	font-size: 20px;
}

.divider {
	color: #7774a8;
}

.strip-section {
	text-align: center;
	padding: 70px 0;
	background: #ffffff;
}

@media (max-width: 991px) {

	.mv-inner {
		flex-direction: column;
		width: 95%;
	}

	.mv-image {
		width: 100%;
		height: 350px;
	}

	.mv-content {
		width: 100%;
		padding: 40px;
		text-align: left;
	}

	.mv-title {
		font-size: 24px;
	}

	.mv-text {
		font-size: 15px;
	}

	.mv-bottom-switch {
		gap: 12px;
		font-size: 15px;
	}
}


@media (max-width: 600px) {

	.mv-image {
		height: 260px;
	}

	.mv-content {
		padding: 30px 20px;
	}

	.mv-main-heading {
		font-size: 18px;
	}

	.mv-title {
		font-size: 22px;
	}

	.mv-text {
		font-size: 14px;
		line-height: 1.6;
	}

	.mv-bottom-switch {
		flex-direction: column;
		gap: 8px;
		text-align: center;
	}

	.divider {
		display: none;
	}
}

.strip-title {
	font-size: 32px;
	font-weight: 700;
	color: #222;
	margin-bottom: 10px;
}

.strip-sub {
	color: #555;
	font-size: 16px;
	margin-bottom: 40px;
}

.strip-container {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 40px;
	width: 90%;
	max-width: 1300px;
	margin: auto;
}

.strip-item {
	text-align: center;
}

.strip-item i {
	font-size: 45px;
	color: #2d2a59;
	margin-bottom: 15px;
}

.strip-item h3 {
	font-size: 20px;
	font-weight: 700;
	color: #2d2a59;
	margin-bottom: 8px;
}

.strip-line {
	width: 40px;
	height: 3px;
	background: #00c281;
	margin: 10px auto 15px;
}

.strip-item p {
	color: #666;
	font-size: 15px;
	line-height: 1.5;
}

@media (max-width: 900px) {
	.strip-container {
		grid-template-columns: repeat(2, 1fr);
		gap: 25px;
	}
}

@media (max-width: 500px) {
	.strip-container {
		grid-template-columns: 1fr;
	}
}

.milestone {
	padding: 80px 0;
	background: #ffffff;
}

.milestone-title {
	text-align: center;
	font-size: 36px;
	font-weight: 700;
	color: #0b1f3a;
	margin-bottom: 50px;
}

.milestone-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
}

.mile-card {
	background: #f7f9fc;
	padding: 35px 25px;
	border-radius: 16px;
	text-align: center;
	border-bottom: 4px solid #a46b00;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
	transition: 0.3s ease;
}

.mile-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
}

.mile-icon i {
	font-size: 30px;
	color: #a46b00;
	margin-bottom: 15px;
}

.mile-card h3 {
	font-size: 22px;
	color: #0b1f3a;
	margin-bottom: 8px;
}

.mile-card p {
	color: #555;
	font-size: 15px;
	line-height: 1.6;
}

@media (max-width: 900px) {
	.milestone-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 600px) {
	.milestone-grid {
		grid-template-columns: 1fr;
	}
}

.services-hero {
	width: 100%;
	height: 65vh;
	background: url('img/service-banner (2).jpg') center/cover no-repeat;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

.services-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.5);
}

.services-hero-content {
	position: relative;
	text-align: center;
	padding: 20px;
}

.services-hero-content h1 {
	font-size: 48px;
	font-weight: 700;
	color: #F4C542;
	margin-bottom: 10px;
}

.services-hero-content p {
	font-size: 18px;
	font-weight: 500;
	color: white;
}

@media (max-width: 768px) {
	.services-hero {
		height: 40vh;
	}

	.services-hero-content h1 {
		font-size: 32px;
	}

	.services-hero-content p {
		font-size: 15px;
	}
}

.services-banner {
	width: 100%;
	height: 65vh;
	padding: 120px 0;
	background:
		linear-gradient(rgba(11, 31, 58, 0.78), rgba(11, 31, 58, 0.88)),
		url('img/services-banner.jpg') center/cover no-repeat;
	display: flex;
	align-items: center;
	position: relative;
}

.services-banner-content {
	text-align: center;
	color: #fff;
}

.sb-title {
	font-size: 48px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 10px;
	color: #ffffff;
}

.sb-subtitle {
	font-size: 17px;
	max-width: 650px;
	margin: 0 auto;
	color: #dcdcdc;
	line-height: 1.7;
}

@media (max-width: 992px) {
	.sb-title {
		font-size: 38px;
	}

	.services-banner {
		padding: 90px 0;
	}
}

@media (max-width: 576px) {
	.sb-title {
		font-size: 30px;
	}

	.sb-subtitle {
		font-size: 15px;
		padding: 0 10px;
	}

	.services-banner {
		padding: 70px 0;
	}
}

.featured-service {
	padding: 100px 0;
	background: #ffffff;
	font-family: "Poppins", sans-serif;
}

.fs-wrapper {
	display: flex;
	align-items: center;
	gap: 45px;
}

.fs-image img {
	width: 599px;
	height: 500px;
	border-radius: 12px;
	box-shadow: 0 12px 35px rgba(0, 0, 0, 0.10);
}

.fs-content {
	flex: 1;
}

.fs-sub {
	color: #a46b00;
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1.6px;
	margin-bottom: 8px;
}

.fs-title {
	font-size: 34px;
	font-weight: 800;
	color: #0b1f3a;
	margin-bottom: 15px;
	line-height: 1.3;
}

.fs-text {
	color: #555;
	font-size: 15.5px;
	line-height: 1.8;
	margin-bottom: 20px;
	max-width: 600px;
}

.fs-points {
	list-style: none;
	padding: 0;
	margin-bottom: 25px;
}

.fs-points li {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 10px;
	color: #333;
	font-size: 15px;
}

.fs-points li i {
	color: #a46b00;
	font-size: 15px;
}

.fs-btn {
	display: inline-block;
	background: #a46b00;
	color: #fff;
	padding: 12px 28px;
	border-radius: 8px;
	font-size: 15px;
	font-weight: 600;
	text-decoration: none;
	transition: 0.3s ease;
}

.fs-btn:hover {
	background: #8b5800;
}

@media (max-width: 992px) {
	.fs-wrapper {
		flex-direction: column;
		text-align: center;
	}

	.fs-content {
		text-align: center;
	}

	.fs-text {
		margin: auto;
	}

	.fs-points {
		text-align: left;
		margin: 0 auto;
		max-width: 320px;
	}

	.fs-points li {
		justify-content: flex-start;
	}
}


@media (max-width: 576px) {
	.fs-title {
		font-size: 28px;
	}

	.featured-service {
		padding: 70px 0;
	}

}

.why-service {
	padding: 100px 0;
	background: #f8f9fc;
	font-family: "Poppins";
}

.ws-header {
	text-align: center;
	margin-bottom: 50px;
}

.ws-header h6 {
	color: #a46b00;
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	margin-bottom: 5px;
}

.ws-header h2 {
	font-size: 32px;
	color: #0b1f3a;
	font-weight: 800;
}

.ws-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 35px;
}

.ws-item {
	background: #ffffff;
	border: 1px solid #e5e5e5;
	padding: 30px 25px;
	border-radius: 12px;
	text-align: center;
	transition: 0.3s ease;
}

.ws-item:hover {
	transform: translateY(-6px);
	border-color: #c7c7c7;
	box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}

.ws-item i {
	font-size: 36px;
	color: #a46b00;
	margin-bottom: 15px;
}

.ws-item h4 {
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 10px;
	color: #0b1f3a;
}

.ws-item p {
	font-size: 15px;
	color: #555;
	line-height: 1.7;
}

@media(max-width: 992px) {
	.ws-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media(max-width: 576px) {
	.ws-grid {
		grid-template-columns: 1fr;
	}
}

.about-expert {
	padding: 100px 0;
	background: #f8f9fc;
	font-family: "Poppins";
}

.ae-wrapper {
	display: flex;
	align-items: center;
	gap: 40px;
}

.ae-text h6 {
	color: #a46b00;
	font-size: 14px;
	text-transform: uppercase;
	font-weight: 700;
	letter-spacing: 1.6px;
}

.ae-text h2 {
	font-size: 32px;
	font-weight: 800;
	color: #0b1f3a;
	margin: 10px 0 15px;
}

.ae-text p {
	color: #555;
	font-size: 15.5px;
	line-height: 1.8;
	max-width: 620px;
	margin-bottom: 20px;
	text-align: justify;
}

.ae-text ul {
	list-style: none;
	padding: 0;
}

.ae-text ul li {
	font-size: 15px;
	color: #444;
	margin-bottom: 10px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.ae-text ul li i {
	color: #a46b00;
}

.ae-image img {
	width: 500px;
	height: 400px ;
	border-radius: 8px;
	box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
}
@media(max-width: 576pX){
	.ae-image img {
		width: 400px;
	}
}
@media(max-width: 992px) {

	.about-expert .ae-text {
		text-align: center;
	}

	.about-expert .ae-text ul {
		text-align: left !important;
		margin: 0 auto;
		width: fit-content;
		max-width: 330px;
	}

	.about-expert .ae-text ul li {
		display: flex !important;
		align-items: flex-start !important;
		justify-content: flex-start !important;
		gap: 10px;
		line-height: 1.5;
	}

	.about-expert .ae-text ul li i {
		flex-shrink: 0;
		margin-top: 3px;
		width: 18px;
		text-align: center;
	}
}


@media(max-width: 576px) {
	.ae-text h2 {
		font-size: 26px;
	}
}

@media(max-width: 992px) {
	.ae-wrapper {
		flex-direction: column;
		text-align: center;
	}

	.ae-text ul li {
		justify-content: center;
	}
}

@media(max-width: 576px) {
	.ae-text h2 {
		font-size: 26px;
	}

	.ae-text p {
		font-size: 14px;
	}

	.fs-text {
		text-align: justify;
	}
}

@media(max-width: 992px) {
	.ws-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media(max-width: 576px) {
	.ws-grid {
		grid-template-columns: 1fr;
	}

	.ws-item {
		padding: 25px 18px;
	}
}

@media (max-width: 992px) {
	.fs-wrapper {
		flex-direction: column;
		text-align: center;
	}

	.fs-image img {
		width: 100%;
		height: auto;
	}

	.fs-content {
		text-align: center;
	}
}

@media (max-width: 576px) {
	.featured-service {
		padding: 60px 0;
	}

	.fs-title {
		font-size: 26px;
	}

	.fs-text {
		font-size: 14.5px;
	}
}

@media (max-width: 768px) {
	.services-hero {
		height: 45vh;
		background-position: center center;
	}

	.services-hero-content h1 {
		font-size: 28px;
	}

	.services-hero-content p {
		font-size: 14px;
		padding: 0 15px;
	}
}

@media (max-width: 480px) {
	.services-hero {
		height: 38vh;
	}
}


.inner-banner-white {
	width: 100%;
	height: 65vh;
	background-image: url('img/img\ \(2\).jpg');
	background-size: cover;
	background-position: center;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}

.inner-banner-white::after {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.5);
}

.inner-banner-white .content {
	position: relative;
	text-align: center;
	z-index: 2;
}

.inner-banner-white h1 {
	font-size: 2.8rem;
	font-weight: 700;
	color: #F4C542;
	margin: 0;
}

.inner-banner-white p {
	font-size: 1.1rem;
	margin-top: 8px;
	font-weight: 500;
	color: white;
}

.industry-modern {
	padding: 90px 0;
	background: #fff;
}

.heading-wrap {
	margin-bottom: 20px;
}

.heading-wrap .tagline {
	display: inline-block;
	padding: 4px 14px;
	background: #e8edf3;
	color: #0b1f3a;
	font-size: 0.85rem;
	font-weight: 600;
	border-radius: 20px;
	margin-bottom: 10px;
}

.heading-wrap h2 {
	font-size: 2.2rem;
	color: #0b1f3a;
	font-weight: 800;
	line-height: 1.3;
	border-left: 5px solid #a46b00;
	padding-left: 15px;
}

.intro-text {
	font-size: 1.1rem;
	color: #555;
	line-height: 1.8;
	margin-bottom: 30px;
	text-align: justify;
}

.points-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 18px 20px;
}

.point {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 12px;
	border-radius: 10px;
	background: #f7f9fb;
	transition: 0.3s;
	border: 1px solid transparent;
}

.point:hover {
	background: #fff;
	border-color: #dcdcdc;
	transform: translateY(-4px);
}

.point i {
	font-size: 1.4rem;
	color: #a46b00;
}

.point p {
	font-size: 1rem;
	margin: 0;
	color: #333;

	font-weight: 500;
}

@media (max-width: 600px) {
	.points-grid {
		grid-template-columns: 1fr;
	}
}

.modern-img {
	border-radius: 14px;
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.feature-pro {
	padding: 70px 0;
	background: #f8f9fb;
}

.section-head h2 {
	font-size: 2.4rem;
	font-weight: 800;
	color: #0b1f3a;
	margin-bottom: 8px;
}

.section-head h2 span {
	color: #a46b00;
}

.section-head .subtext {
	color: #555;
	font-size: 1rem;
	margin-bottom: 50px;
}

.pro-card {
	background: #ffffff;
	border: 1px solid #e5e5e5;
	padding: 35px 25px;
	border-radius: 12px;
	text-align: center;
	transition: 0.3s;
}

.pro-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.card-title {
	font-size: 1.3rem;
	font-weight: 700;
	color: #333;
	margin-bottom: 18px;
}

.pro-icon i {
	font-size: 2.8rem;
	color: #a46b00;
	margin-bottom: 20px;
}

.card-desc {
	color: #555;
	font-size: 0.97rem;
	line-height: 1.6;
	font-weight: 500;
}