:root {
	--bg-blue: linear-gradient(#002274 2%, #0879fb 100%);
	--bg-gray: linear-gradient(#fff 50%, #F5F7FA 100%);
	--iconbg: linear-gradient(#3f89f4, #0064c8);
	--blue: #0d6efd;
	--white: #fff;
	--gray: #F5F7FA;
	--text-primary: #4A4A4A;
	--text-secondary: #444;
	--box-shadow: 0px 0 12px 0 rgba(0, 0, 0, 0.2);
	--border-radius: 8px;
	--icon-radius: 15px;
	--border-color: #e4e2e2;
	--transition: all 0.3s ease;
	--bs-dark: #212529
}

a {
	color: var(--bs-dark);
	text-decoration: none;
	transition: var(--transition)
}

a:hover {
	color: var(--blue)
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--font-family);
	font-weight: 500;
	margin: 1.25rem 0
}

#preloader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 9999;
	overflow: hidden;
	background: #37517e
}

#preloader:before {
	content: "";
	position: fixed;
	top: calc(50% - 30px);
	left: calc(50% - 30px);
	border: 6px solid #37517e;
	border-top-color: var(--white);
	border-bottom-color: var(--white);
	border-radius: 50%;
	width: 60px;
	height: 60px;
	animation: animate-preloader 1s linear infinite
}

@keyframes animate-preloader {
	0% {
		transform: rotate(0deg)
	}

	100% {
		transform: rotate(360deg)
	}
}

.back-to-top {
	position: fixed;
	visibility: hidden;
	opacity: 0;
	right: 15px;
	bottom: 15px;
	z-index: 996;
	background: var(--blue);
	width: 40px;
	height: 40px;
	border-radius: 50px;
	transition: all 0.4s
}

.back-to-top i {
	font-size: 24px;
	color: var(--white);
	line-height: 0
}

.back-to-top:hover {
	background: #0d13d8;
	color: var(--white)
}

.back-to-top.active {
	visibility: visible;
	opacity: 1
}

#header {
	transition: all 0.5s;
	z-index: 997;
	padding: 2px 2px
}

#header.header-scrolled,
#header.header-inner-pages {
	background: rgb(255 255 255 / .6);
	box-shadow: var(--box-shadow);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px)
}

#header .logo {
	font-size: 30px;
	margin: 0;
	padding: 0;
	line-height: 0;
	font-weight: 500;
	letter-spacing: 2px;
	text-transform: uppercase;
	background: linear-gradient(#F99F3F 50%, #F47D21 100%);
	border-radius: 25%
}

#header .logo a {
	color: var(--text-primary)
}

#header .logo img {
	max-height: 34px
}

@media (max-width:991px) {

	#header.header-scrolled,
	#header.header-inner-pages {
		background: rgb(255 255 255 / .9);
		backdrop-filter: none;
		-webkit-backdrop-filter: none
	}
}

.navbar {
	padding: 0
}

.navbar ul {
	margin: 0;
	padding: 0;
	display: flex;
	list-style: none;
	align-items: center
}

.navbar li {
	position: relative;
	font-size: 14px
}

.navbar a,
.navbar a:focus {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 2px 2px;
	margin-right: 15px;
	margin-left: 15px;
	font-size: 13px;
	font-weight: 500;
	color: var(--bs-dark);
	white-space: nowrap;
	transition: 0.3s
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
	color: var(--bs-dark);
	border-bottom: 2px solid var(--blue)
}

.navbar .getstarted,
.navbar .getstarted:focus {
	padding: 8px 20px;
	margin-left: 30px;
	border-radius: 50px;
	color: var(--text-primary);
	border: 2px solid var(--blue);
	font-weight: 600
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
	color: var(--text-primary);
	background: var(--blue)
}

.navbar .dropdown ul {
	display: block;
	position: absolute;
	left: 14px;
	top: calc(100% + 30px);
	margin: 0;
	padding: 10px 0;
	z-index: 99;
	opacity: 0;
	visibility: hidden;
	background: var(--white);
	box-shadow: 0 0 30px rgb(127 137 161 / .25);
	transition: 0.3s;
	border-radius: var(--border-radius)
}

.navbar .dropdown ul li {
	min-width: 200px
}

.navbar .dropdown ul a {
	padding: 10px 20px;
	font-size: 14px;
	text-transform: none;
	font-weight: 500;
	color: var(--text-primary)
}

.navbar .dropdown ul a i {
	font-size: 12px
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
	color: var(--text-primary)
}

.navbar .dropdown:hover>ul {
	opacity: 1;
	top: 100%;
	visibility: visible
}

.navbar .dropdown .dropdown ul {
	top: 0;
	left: calc(100% - 30px);
	visibility: hidden
}

.navbar .dropdown .dropdown:hover>ul {
	opacity: 1;
	top: 0;
	left: 100%;
	visibility: visible
}

@media (max-width:1366px) {
	.navbar .dropdown .dropdown ul {
		left: -90%
	}

	.navbar .dropdown .dropdown:hover>ul {
		left: -100%
	}
}

.mobile-nav-toggle {
	color: var(--text-primary);
	font-size: 28px;
	cursor: pointer;
	display: none;
	line-height: 0;
	transition: 0.5s;
	background: transparent;
	border: none;
	padding: 0;
	margin: 0;
	align-items: center;
	justify-content: center;
}

.mobile-nav-toggle:focus-visible {
	outline: 2px solid var(--blue);
	outline-offset: 2px;
}

.mobile-nav-toggle img {
	display: block;
	max-width: 100%;
	height: auto;
}

.mobile-nav-toggle.bi-x {
	color: var(--text-primary)
}

@media (max-width:991px) {
	.mobile-nav-toggle {
		display: inline-flex;
	}

	.navbar ul {
		display: none
	}
}

.navbar-mobile {
	position: fixed;
	inset: 0;
	background: rgb(40 58 90 / .9);
	z-index: 999;
	transition: 0.3s
}

.navbar-mobile .mobile-nav-toggle {
	position: absolute;
	top: 5px;
	right: 15px
}

.navbar-mobile ul {
	display: block;
	position: absolute;
	top: 55px;
	right: 15px;
	bottom: 15px;
	left: 15px;
	padding: 10px 0;
	border-radius: 10px;
	background-color: var(--white);
	overflow-y: auto;
	transition: 0.3s
}

.navbar-mobile a,
.navbar-mobile a:focus {
	padding: 10px 20px;
	color: var(--black)
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
	color: var(--blue)
}

.navbar-mobile .dropdown ul {
	position: static;
	display: none;
	margin: 10px 20px;
	padding: 10px 0;
	z-index: 99;
	opacity: 1;
	visibility: visible;
	background: var(--white);
	box-shadow: 0 0 30px rgb(127 137 161 / .25)
}

section {
	padding: 80px 0 60px 0;
	overflow: hidden
}

.section-title {
	font-size: 42px;
	color: #555;
	text-align: center;
	margin-bottom: 30px
}

.section-title h1 {
	font-size: 38px;
	font-weight: 400;
	text-transform: uppercase
}

.section-title p {
	font-size: 16px;
	color: var(--text-primary);
	text-align: center;
	margin-bottom: 15px
}

#Home,
#clients,
#edi,
#construction1,
#team,
#syspic,
#tech-advantage {
	background: var(--white)
}

#function,
#industry,
#auto,
#report,
#construction,
#contact,
#adv,
#aboutus,
#whyus,
#mrpfast,
#features,
#case {
	background: var(--gray)
}

#Home {
	width: 100%;
	height: 100vh;
	background-size: cover;
	position: relative;
	color: var(--text-primary)
}

#Home .container {
	position: absolute;
	margin-top: 60px;
	bottom: 0;
	top: 0;
	left: 0;
	right: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	text-align: center
}

#Home .main-img img {
	text-align: center;
	width: 90%
}

@media (max-width:768px) {
	#Home h1 {
		font-size: 28px;
		line-height: 36px
	}

	#Home h2 {
		font-size: 24px
	}

	#Home h3 {
		font-size: 18px;
		width: 95%
	}

	#Home img {
		width: 100%
	}
}

.btn-get-started {
	text-transform: uppercase;
	text-decoration: none;
	font-size: 16px;
	letter-spacing: 1px;
	display: inline-block;
	padding: 10px 28px;
	border-radius: 10px;
	transition: 0.5s;
	margin: 10px;
	background: var(--blue);
	color: var(--white);
	min-width: 200px
}

.btn-get-started:hover {
	background: #FAA43D;
	color: var(--white)
}

.mid-header {
	background: var(--bg-gray);
	padding: 60px 0
}

.mid-header .container {
	margin-top: 30px;
	color: var(--text-primary);
	text-align: center
}

.mid-header .container h1 {
	margin-top: 40px;
	color: var(--text-primary);
	text-align: center;
	text-transform: uppercase
}

.mid-header .container p {
	margin-bottom: 0;
	font-weight: 300;
	line-height: 1.4;
	text-align: center
}

.card-box {
	display: flex;
	justify-content: space-between
}

.box-con {
	flex: 1;
	position: relative;
	display: block;
	border-radius: var(--border-radius);
	background-color: var(--white);
	border-left: 1px solid var(--border-color);
	border-right: 1px solid var(--border-color);
	border-bottom: 1px solid var(--border-color)
}

.box-con img {
	display: block;
	width: 100%;
	height: auto;
	border-top-left-radius: var(--border-radius);
	border-top-right-radius: var(--border-radius)
}

.box-con .title {
	border-top: 4px solid var(--blue);
	border-bottom: 1px solid var(--gray);
	padding: 5px 5px;
	text-align: center;
	border-top-left-radius: var(--border-radius);
	border-top-right-radius: var(--border-radius)
}

.box-con .title1 {
	border-top: 1px solid var(--border-color);
	padding: 5px 5px;
	text-align: center;
	border-radius: var(--border-radius)
}

.box-con .content {
	padding: 12px;
	border-radius: var(--border-radius)
}

.box-con p {
	margin: auto 0
}

.box-cont {
	flex: 1;
	position: relative;
	display: block;
	border-radius: var(--border-radius);
	background-color: var(--white);
	border: 1px solid var(--border-color)
}

.box-cont img {
	display: block;
	padding: 10px;
	width: 100%;
	height: auto;
	border-top-left-radius: var(--border-radius);
	border-top-right-radius: var(--border-radius)
}

.box-cont .title {
	border-top: 4px solid var(--blue);
	border-bottom: 1px solid var(--gray);
	padding: 5px 5px;
	text-align: center;
	border-top-left-radius: var(--border-radius);
	border-top-right-radius: var(--border-radius)
}

.box-cont .content {
	padding: 10px;
	border-radius: var(--border-radius)
}

#function .sub-title {
	padding-top: 60px
}

.boxd,
.boxt {
	flex: 1;
	text-align: center;
	border: 1px solid var(--border-color);
	padding: 30px 0 0 0;
	background: var(--white);
	border-radius: var(--border-radius)
}

.boxt p,
.boxd p {
	padding: 0 25px 0 25px
}

.boxd .icon {
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 20px;
	margin-bottom: 20px;
	transition: 0.3s;
	width: 70px;
	height: 70px
}

.boxd .icon img {
	width: 70px;
	height: 70px
}

.center {
	text-align: center
}

.icon150b {
	width: 100%;
	text-align: center;
	padding: 20px 20px;
	border-radius: var(--icon-radius);
	margin-bottom: 15px
}

.icon150b h3,
.icon150b h4,
.icon150b h5 {
	margin-top: 15px
}

.icon150b .icon {
	margin: 0 auto;
	display: flex;
	background: var(--iconbg);
	width: 120px;
	height: 120px;
	justify-content: center;
	align-items: center;
	text-align: center;
	border-radius: 15%;
	font-size: 60px;
	color: var(--white)
}

.icon150b .icon1 {
	margin: 0 auto;
	display: flex;
	background: var(--iconbg);
	width: 80px;
	height: 80px;
	justify-content: center;
	align-items: center;
	text-align: center;
	border-radius: 15%;
	font-size: 60px;
	color: var(--white)
}

#industry .icon {
	display: flex;
	background: var(--iconbg);
	width: 80px;
	height: 80px;
	justify-content: center;
	align-items: center;
	text-align: center;
	border-radius: 15%;
	font-size: 45px;
	color: var(--white)
}

#construction1 .icon {
	display: flex;
	background: var(--iconbg);
	width: 80px;
	height: 80px;
	justify-content: center;
	align-items: center;
	text-align: center;
	border-radius: var(--icon-radius);
	font-size: 45px;
	color: var(--white)
}



#clients img{
	max-width: 75%;
	max-height: 75%;
	object-fit: contain;
	padding: 5px 25px;
	border: 1px solid #eee;
	/* filter: grayscale(100%);
	opacity: .7;
	transition: all 0.3s ease */
}




.cycle {
	color: var(--white);
	font-size: 34px;
	line-height: 72px;
	padding-top: 25px;
	border-radius: 150px;
	background: var(--iconbg);
	width: 120px;
	height: 120px;
	text-align: center;
	justify-content: center;
	margin: auto
}

#support {
	background: var(--bg-gray)
}

.support-icon {
	font-size: 3rem;
	color: var(--blue);
	margin-top: 20px;
	margin-bottom: 20px;
	text-align: center
}

.support-features {
	margin-top: 20px;
	padding-top: 20px;
	display: flex;
	flex-wrap: wrap;
	gap: 10px
}

.support-features span {
	background: #f8f9fa;
	padding: 6px 15px;
	border-radius: var(--border-radius);
	font-size: .9rem;
	color: #555
}

.support-features i {
	color: #28a745;
	margin-right: 5px
}

.service-process {
	margin: 50px 0;
	padding: 30px;
	border-radius: var(--border-radius);
	border: var(--border-color) solid 1px
}

.timeline {
	position: relative;
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap
}

.timeline::before {
	content: '';
	position: absolute;
	width: 80%;
	height: 3px;
	background: var(--blue);
	top: 30px;
	left: 10%;
	transform: translateY(-50%);
	z-index: 0
}

.timeline-item {
	flex: 1;
	min-width: 150px;
	text-align: center;
	position: relative;
	padding: 0 15px;
	z-index: 1
}

.timeline-icon {
	width: 60px;
	height: 60px;
	background: #fff;
	border: 3px solid var(--blue);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 15px;
	font-size: 1.5rem;
	color: var(--blue);
	position: relative;
	z-index: 1
}

.timeline-content h5 {
	color: #333;
	margin-bottom: 5px
}

.timeline-content p {
	color: #666;
	font-size: .9rem
}

#service-advantages {
	background: var(--bg-gray);
	padding: 60px
}

.advantage-item {
	padding: 20px;
	transition: transform 0.3s ease
}

.advantage-item:hover {
	transform: translateY(-5px)
}

.advantage-icon {
	width: 100px;
	height: 100px;
	background: var(--iconbg);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
	font-size: 1.8rem;
	color: #fff
}

.advantage-item h5 {
	color: #333;
	margin-bottom: 10px
}

.advantage-item p {
	color: #666;
	font-size: .9rem
}

#service-commitment {
	background: var(--bg-blue);
	padding: 60px;
	color: #fff
}

.commitment-card {
	display: flex;
	align-items: center;
	flex-wrap: wrap
}

.commitment-icon {
	flex: 0 0 100px;
	font-size: 4rem;
	margin-right: 30px;
	text-align: center
}

.commitment-content {
	flex: 1;
	min-width: 300px
}

.commitment-content h4 {
	font-size: 1.8rem;
	margin-bottom: 15px
}

.commitment-content p {
	font-size: 1.1rem;
	line-height: 1.6;
	margin-bottom: 20px;
	opacity: .9
}

.commitment-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 10px
}

.commitment-tags span {
	background: rgb(255 255 255 / .2);
	padding: 5px 15px;
	border-radius: 20px;
	font-size: .9rem;
	backdrop-filter: blur(10px)
}

@media (max-width:768px) {
	.timeline::before {
		display: none
	}

	.timeline-item {
		flex: 0 0 100%;
		margin-bottom: 30px
	}

	.timeline-icon {
		margin-bottom: 10px
	}

	.commitment-card {
		flex-direction: column;
		text-align: center
	}

	.commitment-icon {
		margin-right: 0;
		margin-bottom: 20px
	}

	.support-features {
		justify-content: center
	}
}

.benefit-badge {
	width: 60%;
	background-color: #ebebeb;
	border-radius: 10px;
	line-height: 40px;
	text-align: center;
	margin: 5px auto 0;
	display: block
}

.me-auto {
	margin-right: auto !important
}

.d-flex {
	display: flex !important
}

.fixed-top {
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	z-index: 1030
}

.top-line {
	border-top: #ebebeb 1px solid
}

#footer {
	background: linear-gradient(#ebecee 10%, #f5f5f7 90%)
}

#footer .footer-top {
	padding: 30px 0 10px 0
}

#footer .footer-top .footer-links p {
	margin-top: 0;
	margin-bottom: .5rem;
	text-transform: uppercase
}

#footer .footer-top .footer-links ul {
	list-style: none;
	padding: 0;
	margin: 0;
	font-size: 14px
}

#footer .footer-top .footer-links ul li {
	padding: 8px 0;
	display: flex;
	align-items: center
}

#footer .footer-top .footer-links ul a {
	color: var(--bs-dark);
	transition: 0.3s;
	display: inline-block;
	line-height: .8
}

#footer .footer-top .footer-links ul a:hover {
	text-decoration: none;
	color: #0064c8
}

#footer .footer-bottom {
	border-top: 1px solid #cbc9c9;
	padding-top: 10px;
	padding-bottom: 30px
}

#footer .copyright {
	text-align: center
}

@media (max-width:768px) {
	#footer .footer-bottom {
		padding-top: 20px;
		padding-bottom: 20px
	}

	#footer .copyright {
		text-align: center
	}
}

.feature-list {
	list-style: none;
	padding: 0;
	margin: 0
}

.feature-list li {
	padding: .3rem 0;
	padding-left: 1.5rem;
	position: relative
}

.feature-list li:before {
	content: "•";
	color: var(--blue);
	font-weight: 700;
	position: absolute;
	left: 0
}

.highlight-box {
	background: #f0f5ff;
	padding: 1.2rem;
	margin: 1.2rem 0;
	border-left: 3px solid var(--blue)
}