:root {
	--primary-color: #001A29;
	--secondary-color: #F4F8FA;
	--bg-color: #FFFFFF;
	--text-color: #74787C;
	--accent-color: #4AAB3D;
	--white-color: #FFFFFF;
	--divider-color: #001A291A;
	--dark-divider-color: #FFFFFF1A;
	--error-color: rgb(230, 87, 87);
	--default-font: "Inter", sans-serif;
	--accent-font: 'Plus Jakarta Sans', sans-serif;
}

html,
body {
	width: 100%;
	overflow-x: clip;
	background-color: var(--primary-color);
}

body {
	font-family: var(--default-font);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.65;
	color: var(--text-color);
	background: var(--bg-color);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	margin: 0;
	padding: 0;
}

::selection {
	color: var(--white-color);
	background-color: var(--accent-color);
	filter: invert(1);
}

p {
	line-height: 1.6em;
	margin-bottom: 1.5em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--accent-font);
	font-weight: 700;
	line-height: 1.25;
	color: var(--primary-color);
	margin: 0;
	letter-spacing: -0.02em;
}

figure {
	margin: 0;
}

img {
	max-width: 100%;
}

a {
	text-decoration: none;
}

a:hover {
	text-decoration: none;
	outline: 0;
}

a:focus {
	text-decoration: none;
	outline: 0;
}

.container {
	max-width: 1300px;
}

.container,
.container-fluid {
	padding-right: 15px;
	padding-left: 15px;
}

.image-anime {
	position: relative;
	overflow: hidden;
}

.image-anime:after {
	content: "";
	position: absolute;
	width: 200%;
	height: 0%;
	left: 50%;
	top: 50%;
	background-color: rgba(255, 255, 255, .3);
	transform: translate(-50%, -50%) rotate(-45deg);
	z-index: 1;
}

.image-anime:hover:after {
	height: 250%;
	transition: all 600ms linear;
	background-color: transparent;
}

.reveal {
	position: relative;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	visibility: hidden;
	overflow: hidden;
}

.reveal img {
	height: 100%;
	width: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-webkit-transform-origin: left;
	transform-origin: left;
}

.row {
	margin-right: -15px;
	margin-left: -15px;
}

.row>* {
	padding-right: 15px;
	padding-left: 15px;
}

.row.no-gutters {
	margin-right: 0px;
	margin-left: 0px;
}

.row.no-gutters>* {
	padding-right: 0px;
	padding-left: 0px;
}

.btn-default {
	position: relative;
	display: inline-block;
	font-family: var(--accent-font);
	font-size: 15px;
	font-weight: 600;
	line-height: 1.2;
	text-transform: capitalize;
	color: var(--white-color);
	background: var(--accent-color);
	border-radius: 50px;
	padding: 17px 50px 17px 25px;
	border: none;
	overflow: hidden;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 6px 20px rgba(74, 171, 61, 0.2);
	z-index: 1;
}

.btn-default::before {
	content: '';
	position: absolute;
	top: 50%;
	right: 20px;
	width: 20px;
	height: 20px;
	background-image: url('../images/arrow-white.svg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	transform: translateY(-50%);
	transition: all 0.4s ease-in-out;
}

.btn-default:hover::before {
	transform: translateY(-50%) rotate(45deg);
}

.btn-default::after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: 0;
	height: 100%;
	background: var(--primary-color);
	transition: all 0.4s ease-in-out;
	z-index: -1;
}

.btn-default:hover::after {
	right: auto;
	left: 0;
	width: 100%;
}

.whatsapp-btn {
	background: #e8fcf0 !important;
	color: #128C7E !important;
	border: 1.5px solid #25D366 !important;
	box-shadow: none;
	transition: all 0.3s ease !important;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-weight: 500;
	padding: 12px 28px !important;
	border-radius: 50px;
}

.whatsapp-btn i {
	margin-right: 8px;
	font-size: 1.25em;
	color: #25D366;
}

.whatsapp-btn:hover {
	background: #25D366 !important;
	color: #ffffff !important;
	transform: none;
	box-shadow: 0 4px 12px rgba(37, 211, 102, 0.15);
}

.whatsapp-btn:hover i {
	color: #ffffff;
}

.whatsapp-btn::before,
.whatsapp-btn::after {
	display: none;
}

.readmore-btn {
	position: relative;
	display: inline-block;
	font-family: var(--accent-font);
	font-weight: 500;
	line-height: 1em;
	text-transform: capitalize;
	color: var(--primary-color);
	padding: 5px 36px 5px 0;
}

.readmore-btn::before {
	content: '';
	position: absolute;
	top: 50%;
	right: 0;
	width: 26px;
	height: 26px;
	background-color: var(--accent-color);
	border-radius: 50%;
	transform: translateY(-50%);
	background-image: url('../images/arrow-white.svg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 16px auto;
	transition: all 0.4s ease-in-out;
}

.readmore-btn:hover::before {
	transform: translateY(-50%) rotate(45deg);
}

.preloader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1000;
	background: var(--primary-color);
	display: flex;
	align-items: center;
	justify-content: center;
}

.loading-container,
.loading {
	height: 100px;
	position: relative;
	width: 100px;
	border-radius: 100%;
}

.loading-container {
	margin: 40px auto;
}

.loading {
	border: 1px solid transparent;
	border-color: transparent var(--white-color) transparent var(--white-color);
	animation: rotate-loading 1.5s linear 0s infinite normal;
	transform-origin: 50% 50%;
}

.loading-container:hover .loading,
.loading-container .loading {
	transition: all 0.5s ease-in-out;
}

#loading-icon {
	position: absolute;
	top: 50%;
	left: 50%;
	max-width: 66px;
	transform: translate(-50%, -50%);
}

@keyframes rotate-loading {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

.dark-section {
	background-image: url('../images/dark-section-bg-image.png');
	background-color: #0a2c18;
	background-repeat: no-repeat;
	background-position: top center;
	background-size: cover;
}

.light-section {
	background-color: var(--secondary-color);
}

.section-row {
	margin-bottom: 80px;
}

.section-row .section-title {
	margin-bottom: 0;
}

.section-row .section-title.section-title-center {
	width: 100%;
	max-width: 700px;
	margin: 0 auto;
	text-align: center;
}

.section-title {
	margin-bottom: 40px;
}

.section-title .section-sub-title {
	position: relative;
	display: inline-block;
	font-family: var(--default-font);
	font-size: 14px;
	font-weight: 500;
	text-transform: capitalize;
	line-height: 1em;
	color: var(--primary-color);
	background: var(--secondary-color);
	border-radius: 100px;
	padding: 9px 16px 9px 31px;
	margin-bottom: 15px;
}

.section-title .section-sub-title::before {
	content: '';
	position: absolute;
	left: 16px;
	top: 50%;
	transform: translateY(-50%);
	background: var(--accent-color);
	border-radius: 50%;
	width: 5px;
	height: 5px;
}

.section-title h1 {
	font-size: 64px;
	line-height: 1.2;
	margin-bottom: 24px;
	letter-spacing: -0.03em;
}

.section-title h2 {
	font-size: 48px;
	line-height: 1.25;
	margin-bottom: 20px;
	letter-spacing: -0.02em;
}

.section-title p {
	margin-top: 20px;
	margin-bottom: 0;
}

.dark-section .section-title .section-sub-title {
	border-color: var(--dark-divider-color);
}

.dark-section .section-title .section-sub-title {
	color: var(--white-color);
	background: var(--dark-divider-color);
	backdrop-filter: blur(50px);
	-webkit-backdrop-filter: blur(50px);
}

.dark-section .section-title h1,
.dark-section .section-title h2,
.dark-section .section-title p {
	color: var(--white-color);
}

.light-section .section-title .section-sub-title {
	background-color: var(--white-color);
}

.help-block.with-errors ul {
	margin: 0;
	text-align: left;
}

.help-block.with-errors ul li {
	color: var(--error-color);
	font-weight: 500;
	font-size: 14px;
}

/************************************/
/**** 	    03. Header css		 ****/
/************************************/
.topbar {
	background: var(--accent-color);
	padding: 15px 0;
}

.topbar-contact-info ul {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px 30px;
	list-style: none;
	padding: 0;
	margin: 0;
}

.topbar-contact-info ul li {
	display: flex;
	align-items: center;
	font-weight: 600;
	color: var(--white-color);
	line-height: normal;
}

.topbar-contact-info ul li img {
	max-width: 20px;
	margin-right: 10px;
	transition: all 0.3s ease-in-out;
}

.topbar-contact-info ul li span {
	margin-right: 5px;
}

.topbar-contact-info ul li a {
	color: inherit;
	transition: all 0.3s ease-in-out;
}

.topbar-contact-info ul li a:hover {
	color: var(--primary-color);
}

.topbar-social-links {
	display: flex;
	flex-wrap: wrap;
	justify-content: end;
	align-items: center;
	gap: 15px;
}

.topbar-social-links p {
	color: var(--white-color);
	line-height: normal;
	margin: 0;
}

.topbar-social-links ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.topbar-social-links ul li {
	display: inline-block;
	font-size: 18px;
	line-height: 1em;
	border-right: 1px solid var(--white-color);
	margin-right: 10px;
	padding-right: 10px;
}

.topbar-social-links ul li:last-child {
	border-right: none;
	padding-right: 0;
	margin-right: 0;
}

.topbar-social-links ul li a {
	color: var(--white-color);
	transition: all 0.3s ease-in-out;
}

.topbar-social-links ul li a i {
	font-size: 18px;
	color: var(--white-color);
	transition: all 0.3s ease-in-out;
}

.topbar-social-links ul li a:hover i {
	color: var(--primary-color);
}

header.main-header {
	position: relative;
	left: 0;
	right: 0;
	z-index: 100;
}

header.main-header .header-sticky {
	position: relative;
	top: 0;
	background: var(--bg-color);
	z-index: 100;
}

header.main-header .header-sticky.active {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	transform: translateY(0);
	background: rgba(255, 255, 255, 0.90);
	backdrop-filter: blur(15px);
	-webkit-backdrop-filter: blur(15px);
	border-bottom: 1px solid rgba(0, 0, 0, 0.05);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
	border-radius: 0;
}

header.main-header .header-sticky.active .navbar {
	padding: 12px 0;
}

header.main-header .header-sticky.active .navbar-brand img {
	height: 80px !important;
}

.navbar {
	align-items: center;
	padding: 30px 0;
	transition: all 0.4s ease;
}

.navbar-brand {
	padding: 0;
	margin: 0;
	flex: 0 0 250px;
}

.navbar-brand img {
	height: 50px !important;
	width: auto !important;
	max-height: none !important;
	transition: all 0.4s ease;
}

.main-menu {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex: 1;
}

.header-btn {
	flex: 0 0 250px;
	text-align: right;
}

.main-menu .nav-menu-wrapper {
	flex: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 1.042vw;
}

.main-menu .nav-menu-wrapper>ul {
	align-items: center;
	display: flex;
	padding: 0;
	margin: 0;
	list-style: none;
}

.main-menu ul li {
	margin: 0 10px;
	position: relative;
}

.main-menu ul li a {
	font-family: var(--accent-font);
	font-size: 15px;
	font-weight: 600;
	line-height: 1.25;
	padding: 10px 18px !important;
	color: var(--primary-color);
	background: transparent;
	border-radius: 50px;
	text-transform: capitalize;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	letter-spacing: -0.01em;
}

.main-menu ul li.submenu>a:after {
	content: '\f107';
	font-family: 'FontAwesome';
	font-weight: 900;
	font-size: 14px;
	margin-left: 8px;
}

.main-menu ul li a:hover,
.main-menu ul li a:focus {
	color: var(--accent-color);
	background: rgba(74, 171, 61, 0.08);
	/* Light accent background */
}

.main-menu ul ul {
	position: absolute;
	left: 0;
	top: 100%;
	transform: translateY(10px) scale(0.95);
	transform-origin: top;
	width: 250px;
	background: var(--white-color);
	border: 1px solid rgba(0, 0, 0, 0.06);
	box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
	border-radius: 12px;
	list-style: none;
	padding: 15px 0;
	margin: 0;
	opacity: 0;
	visibility: hidden;
	transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
	text-align: left;
}

.main-menu ul li.submenu:first-child ul {
	width: 235px;
}

.main-menu ul ul ul {
	left: 100%;
	top: 0;
	text-align: left;
}

.main-menu ul li:hover>ul {
	visibility: visible;
	opacity: 1;
	transform: translateY(0) scale(1);
}

.main-menu ul li.submenu ul li.submenu>a:after {
	content: '\f105';
	float: right;
}

.main-menu ul ul li {
	margin: 0;
	padding: 0;
}

.main-menu ul ul li a {
	color: var(--primary-color) !important;
	font-weight: 500;
	padding: 10px 25px !important;
	border-radius: 0;
	background: transparent;
	transition: all 0.3s ease;
}

.main-menu ul ul li a:hover,
.main-menu ul ul li a:focus {
	color: var(--accent-color) !important;
	background-color: var(--secondary-color);
	padding-left: 30px !important;
}

.responsive-menu,
.navbar-toggle,
.custom-mobile-nav,
.custom-mobile-nav-toggle {
	display: none;
}

.responsive-menu {
	position: relative;
	top: 0;
}

.hero {
	position: relative;
	padding: 150px 0;
	overflow: hidden;
}

.hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(90deg, rgba(0, 10, 15, 0.95) 0%, rgba(0, 10, 15, 0.70) 50%, transparent 100%);
	width: 100%;
	height: 100%;
	z-index: 1;
}

.hero-content h1 {
	text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
	font-weight: 800;
	letter-spacing: -0.04em;
}

.hero-content p {
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
	font-size: 18px;
	color: rgba(255, 255, 255, 0.95) !important;
}

.hero-content .section-sub-title {
	color: var(--white-color) !important;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-size: 13px;
}

/* Hero Buttons */
.hero-btns {
	display: flex;
	gap: 15px;
	margin-top: 40px;
}

.btn-main {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 16px 35px;
	background-color: var(--accent-color);
	color: var(--white-color) !important;
	font-weight: 700;
	border-radius: 50px;
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	box-shadow: 0 8px 25px rgba(74, 171, 61, 0.3);
	text-transform: uppercase;
	font-size: 14px;
	letter-spacing: 1px;
}

.btn-main:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 35px rgba(74, 171, 61, 0.4);
	background-color: #3d8f32;
}

.btn-outline {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 16px 35px;
	background-color: rgba(255, 255, 255, 0.05);
	color: var(--white-color) !important;
	font-weight: 700;
	border: 2px solid rgba(255, 255, 255, 0.2);
	border-radius: 50px;
	transition: all 0.4s ease;
	text-transform: uppercase;
	font-size: 14px;
	letter-spacing: 1px;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}

.btn-outline:hover {
	background-color: var(--white-color);
	color: var(--primary-color) !important;
	border-color: var(--white-color);
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

/* Trust Badge */
.hero-trust-badge {
	margin-top: 45px;
}

.rating-info {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	background: rgba(255, 255, 255, 0.05);
	padding: 12px 25px;
	border-radius: 100px;
	border: 1px solid rgba(255, 255, 255, 0.15);
	backdrop-filter: blur(15px);
	-webkit-backdrop-filter: blur(15px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.star-icons {
	color: #FFD700;
	font-size: 16px;
	letter-spacing: 3px;
	text-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
}

.rating-text {
	color: var(--white-color);
	font-weight: 600;
	font-size: 14px;
	letter-spacing: 0.3px;
	opacity: 0.95;
}

.hero-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
}

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

.hero .container {
	position: relative;
	z-index: 2;
}

.hero-content {
	margin-right: 4.167vw;
}

/************************************/
/**** 	   05. About Us css		 ****/
/************************************/
.about-us {
	padding: 120px 0;
}

.about-us-image-box {
	display: flex;
	flex-wrap: wrap;
	align-items: end;
	margin-right: 15px;
}

@keyframes infiniterotate {
	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(360deg);
	}
}

.about-us-body {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.about-us-item-list {
	width: calc(100% - 220px);
	align-content: center;
}

.about-us-item {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	border-bottom: 1px solid var(--divider-color);
	padding-bottom: 30px;
	margin-bottom: 30px;
}

.about-us-item:last-child {
	border: none;
	padding: 0;
	margin: 0;
}

.about-us-item .icon-box {
	position: relative;
	width: 50px;
	height: 50px;
	background: var(--accent-color);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
}

.about-us-item .icon-box::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: var(--primary-color);
	border-radius: 50%;
	width: 100%;
	height: 100%;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

.about-us-item:hover .icon-box::before {
	transform: scale(1);
}

.about-us-item .icon-box img {
	position: relative;
	width: 100%;
	max-width: 24px;
	z-index: 1;
}

.about-us-item-content {
	width: calc(100% - 65px);
}

.about-us-item-content h3 {
	font-size: 22px;
}

.about-us-item-content p {
	margin: 10px 0 0;
}

.service-item {
	background: var(--white-color);
	border-radius: 14px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	padding: 20px;
}

.service-item-image {
	position: relative;
	border-radius: 14px;
	margin-bottom: 10px;
	overflow: hidden;
}

.service-item-image a {
	display: block;
	cursor: none;
}

.service-item-image figure {
	display: block;
	border-radius: 14px;
}

.service-item-image figure img {
	width: 100%;
	aspect-ratio: 1 / 0.6578;
	object-fit: cover;
	border-radius: 14px;
	transition: all 0.6s ease-in-out;
}

.service-item:hover .service-item-image figure img {
	transform: scale(1.06);
}

.service-item-image .icon-box {
	position: absolute;
	top: 30px;
	left: 30px;
	width: 50px;
	height: 50px;
	background: var(--accent-color);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
}

.service-item-image .icon-box::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: var(--primary-color);
	border-radius: 50%;
	width: 100%;
	height: 100%;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

.service-item:hover .service-item-image .icon-box::before {
	transform: scale(1);
}

.service-item-image .icon-box img {
	position: relative;
	width: 100%;
	max-width: 24px;
	z-index: 1;
}

.service-item-body {
	padding: 20px 10px 10px 10px;
}

.service-item-content h2 {
	font-size: 22px;
}

.service-item-content h2 a {
	color: inherit;
}

.service-item-content p {
	margin: 10px 0 0;
}

.service-item-btn {
	border-top: 1px solid var(--divider-color);
	padding-top: 20px;
	margin-top: 20px;
}

/************************************/
/**** 	 07. Why Choose Us css   ****/
/************************************/
.why-choose-us {
	padding: 120px 0;
}

.why-choose-us-content {
	height: 100%;
	align-content: center;
}

.why-choose-item {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	background: var(--secondary-color);
	border-left: 4px solid var(--accent-color);
	border-radius: 14px;
	padding: 20px;
}

.why-choose-item .icon-box {
	position: relative;
	width: 50px;
	height: 50px;
	background: var(--accent-color);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
}

.why-choose-item .icon-box::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: var(--primary-color);
	border-radius: 50%;
	width: 100%;
	height: 100%;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

.why-choose-item:hover .icon-box::before {
	transform: scale(1);
}

.why-choose-item .icon-box img {
	position: relative;
	width: 100%;
	max-width: 24px;
	z-index: 1;
}

.why-choose-item-content {
	width: calc(100% - 65px);
}

.why-choose-item-content h3 {
	font-size: 22px;
}

.why-choose-item-content p {
	margin: 10px 0 0;
}

.why-choose-counter-list {
	display: flex;
	flex-wrap: wrap;
	gap: 30px 40px;
	border-top: 1px solid var(--divider-color);
	padding-top: 40px;
	margin-top: 40px;
}

.why-choose-counter-item {
	position: relative;
	width: calc(33.33% - 26.66px);
}

.why-choose-counter-item::before {
	content: '';
	position: absolute;
	top: 0;
	right: -20px;
	width: 1px;
	height: 100%;
	background: var(--divider-color);
}

.why-choose-counter-item:nth-child(3n + 3):before,
.why-choose-counter-item:last-child:before {
	display: none;
}

.why-choose-counter-item h2 {
	font-size: 40px;
}

.why-choose-counter-item p {
	margin: 5px 0 0;
}

.why-choose-btn {
	border-top: 1px solid var(--divider-color);
	padding-top: 40px;
	margin-top: 40px;
}

.why-choose-us-image-box {
	height: 100%;
	display: flex;
	flex-direction: column;
	gap: 30px;
	margin-left: 15px;
}

.why-choose-image-box-1 {
	position: relative;
	height: 100%;
	overflow: hidden;
}

.why-choose-image-box-1 .why-choose-image {
	height: 100%;
}

.why-choose-image figure {
	display: block;
	height: 100%;
	border-radius: 14px;
}

.why-choose-image figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 14px;
}

.why-choose-image-box-1 .why-choose-image figure img {
	aspect-ratio: 1 / 0.5405;
}

.why-choose-scrolling-ticker {
	position: absolute;
	right: 0;
	bottom: 30px;
	left: 0;
}

.scrolling-ticker-box {
	--gap: 20px;
	position: relative;
	display: flex;
	overflow: hidden;
	user-select: none;
	gap: var(--gap);
	align-items: center;
}

.scrolling-content {
	flex-shrink: 0;
	display: flex;
	gap: var(--gap);
	min-width: 100%;
	animation: scroll 50s linear infinite;
}

@keyframes scroll {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(calc(-100% - var(--gap)));
	}
}

.scrolling-ticker-box:hover .scrolling-content {
	animation-play-state: paused;
}

.scrolling-content span {
	font-size: 14px;
	font-weight: 500;
	text-transform: capitalize;
	color: var(--white-color);
	background: var(--divider-color);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	padding: 9px 14px;
	border-radius: 5px;
}

.why-choose-image-box-2 {
	height: 100%;
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.why-choose-image-box-2 .why-choose-image {
	width: calc(50% - 15px);
}

.why-choose-image-box-2 .why-choose-image figure img {
	aspect-ratio: 1 / 0.9809;
}

.why-choose-info-box {
	width: calc(50% - 15px);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 30px;
	background: var(--accent-color);
	border-radius: 14px;
	padding: 30px;
}

.why-choose-info-image {
	max-width: 110px;
}

.why-choose-info-image figure {
	display: block;
	border-radius: 14px;
}

.why-choose-info-image figure img {
	width: 100%;
	object-fit: cover;
	border-radius: 14px;
}

.why-choose-info-content h3 {
	font-size: 22px;
	color: var(--white-color);
}

.why-choose-info-content p {
	color: var(--white-color);
	border-top: 1px solid var(--dark-divider-color);
	padding-top: 15px;
	margin: 15px 0 0;
}

/************************************/
/**** 	 12. How It Works css	 ****/
/************************************/

/************************************/
/**** 	   13. Our FAQs css		 ****/
/************************************/
.our-faqs {
	padding: 120px 0;
}

.faqs-content {
	position: sticky;
	top: 30px;
}

.our-faqs .faq-accordion {
	margin-left: 15px;
}

.faq-accordion .accordion-item {
	border-bottom: 1px solid var(--divider-color);
	padding-bottom: 30px;
	margin-bottom: 30px;
	overflow: hidden;
	transition: all 0.3s ease-in-out;
}

.faq-accordion .accordion-item:last-child {
	border-bottom: none;
	padding-bottom: 0;
	margin-bottom: 0;
}

.faq-accordion .accordion-header .accordion-button {
	font-size: 20px;
	font-weight: 500;
	line-height: 1.3em;
	color: var(--primary-color);
	padding: 2px 40px 2px 0;
	transition: all 0.3s ease-in-out;
}

.faq-accordion .accordion-item .accordion-button::after,
.faq-accordion .accordion-item .accordion-button.collapsed::after {
	content: '';
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%) rotate(135deg);
	height: 30px;
	width: 30px;
	background-color: var(--accent-color);
	border-radius: 50%;
	background-image: url('../images/arrow-white.svg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 16px auto;
	transition: all 0.3s ease-in-out;
}

.faq-accordion .accordion-item :not(.accordion-button.collapsed)::after {
	transform: translateY(-50%) rotate(-45deg);
}

.faq-accordion .accordion-item .accordion-body {
	padding: 20px 40px 0 0;
}

.faq-accordion .accordion-item .accordion-body p {
	margin: 0;
}

/************************************/
/**** 	    16. Footer css		 ****/
/************************************/
.main-footer {
	padding: 120px 0 0;
	overflow: hidden;
}

.main-footer-box {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 30px 80px;
}

.about-footer {
	max-width: 330px;
}

.footer-logo img {
	width: 100%;
	max-width: 159px;
}

.about-footer-content {
	margin-top: 20px;
}

.about-footer-content p {
	color: var(--white-color);
	margin-bottom: 0;
}

.footer-social-links {
	border-top: 1px solid var(--dark-divider-color);
	padding-top: 30px;
	margin-top: 30px;
}

.footer-social-links h2 {
	font-size: 22px;
	color: var(--white-color);
	margin-bottom: 25px;
}

.footer-social-links ul {
	list-style: none;
	display: flex;
	align-items: center;
	gap: 15px;
	padding: 0;
	margin: 0;
}

.footer-social-links ul li a {
	width: 36px;
	height: 36px;
	border: 1px solid var(--dark-divider-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.4s ease-in-out;
}

.footer-social-links ul li a:hover {
	background-color: var(--accent-color);
	border-color: var(--accent-color);
}

.footer-social-links ul li a i {
	position: relative;
	font-size: 18px;
	color: var(--white-color);
	z-index: 1;
}

.footer-links-box {
	width: calc(100% - 410px);
	background-color: var(--dark-divider-color);
	border-radius: 14px;
	backdrop-filter: blur(50px);
	-webkit-backdrop-filter: blur(50px);
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 30px;
	padding: 2.604vw;
}

.footer-links {
	max-width: 37%;
}

.footer-links h2 {
	font-size: 22px;
	color: var(--white-color);
	margin-bottom: 25px;
}

.footer-links ul {
	list-style: disc;
	padding: 0 0 0 20px;
	margin: 0;
}

.footer-links ul li {
	color: var(--white-color);
	line-height: 1.5em;
	margin-bottom: 15px;
}

.footer-links ul li:last-child {
	margin-bottom: 0;
}

.footer-links ul li::marker {
	color: var(--accent-color);
}

.footer-links ul li a {
	color: inherit;
	transition: all 0.4s ease-in-out;
}

.footer-links ul li a:hover {
	color: var(--accent-color);
}

.footer-newsletter-form p {
	color: var(--white-color);
	margin-bottom: 20px;
}

.footer-newsletter-form .form-group {
	position: relative;
	display: flex;
	border-bottom: 1px solid var(--dark-divider-color);
}

.footer-newsletter-form .form-group .form-control {
	width: calc(100% - 34px);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.3em;
	color: var(--white-color);
	background: transparent;
	border: none;
	border-radius: 0;
	outline: none;
	box-shadow: none;
	padding: 6px 20px 20px 0;
}

.footer-newsletter-form .form-group .form-control::placeholder {
	color: var(--white-color);
	opacity: 50%;
}

.footer-newsletter-form .form-group .newsletter-btn {
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: var(--accent-color);
	border: none;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease-in-out;
}

.footer-newsletter-form .form-group .newsletter-btn:hover {
	background: var(--white-color);
}

.footer-newsletter-form .form-group .newsletter-btn img {
	width: 100%;
	max-width: 18px;
	transition: all 0.3s ease-in-out;
}

.footer-newsletter-form .form-group .newsletter-btn:hover img {
	transform: rotate(45deg);
	filter: brightness(0) invert(0);
}

.footer-contact-items-list {
	border-top: 1px solid var(--dark-divider-color);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 20px 40px;
	padding-top: 40px;
	margin-top: 60px;
}

.footer-contact-item {
	position: relative;
	width: auto;
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: center;
	gap: 15px;
}

.footer-contact-item::before {
	content: '';
	position: absolute;
	top: 0;
	right: -20px;
	background: var(--dark-divider-color);
	width: 1px;
	height: 100%;
}

.footer-contact-item:last-child:before {
	display: none;
}

.footer-contact-item .icon-box {
	position: relative;
	width: 50px;
	height: 50px;
	background: var(--accent-color);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
}

.footer-contact-item .icon-box::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	background: var(--white-color);
	border-radius: 50%;
	width: 100%;
	height: 100%;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

.footer-contact-item:hover .icon-box::before {
	transform: scale(1);
}

.footer-contact-item .icon-box img {
	width: 100%;
	max-width: 24px;
	transition: all 0.4s ease-in-out;
}

.footer-contact-item:hover .icon-box img {
	filter: brightness(0) invert(0);
}

.footer-contact-item-content {
	width: auto;
}

.footer-contact-item-content p {
	color: var(--white-color);
	margin-bottom: 5px;
}

.footer-contact-item-content h3,
.footer-contact-item-content h4 {
	font-size: 22px;
	color: var(--white-color);
	margin-bottom: 0;
}

.footer-contact-item-content h3 a,
.footer-contact-item-content h4 a {
	color: inherit;
	transition: all 0.4s ease-in-out;
}

.footer-contact-item-content h3 a:hover,
.footer-contact-item-content h4 a:hover {
	color: var(--accent-color);
}

.footer-copyright-text {
	border-top: 1px solid var(--dark-divider-color);
	text-align: center;
	padding: 60px 0;
	margin-top: 40px;
	margin-bottom: 0;
}

.footer-copyright-text p {
	color: var(--white-color);
	margin-bottom: 0;
}

/************************************/
/**** 	 17. About Us Page css   ****/
/************************************/
.page-header {
	position: relative;
	background-image: url('../images/page-header-bg.jpg');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	padding: 150px 0;
	overflow: hidden;
}

.page-header:before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background: linear-gradient(270deg, transparent 27.45%, rgba(0, 26, 41, 0.90) 72.29%);
	z-index: 1;
}

.page-header-box {
	position: relative;
	text-align: center;
	z-index: 2;
}

.page-header-box h1 {
	display: inline-block;
	font-size: 60px;
	line-height: 1.1em;
	color: var(--white-color);
	margin-bottom: 15px;
	cursor: none;
}

.page-header-box ol {
	justify-content: center;
	margin: 0;
	padding: 0;
}

.page-header-box ol li.breadcrumb-item {
	font-size: 16px;
	font-weight: 400;
	line-height: normal;
	text-transform: capitalize;
	color: var(--white-color);
}

.page-header-box ol li.breadcrumb-item a {
	color: inherit;
}

.page-header-box ol .breadcrumb-item+.breadcrumb-item::before {
	color: var(--white-color);
}

.our-approach {
	background-repeat: no-repeat;
	background-position: bottom center;
	background-size: 100% auto;
	padding: 120px 0;
}

.our-approach-content {
	display: flex;
	flex-direction: column;
	height: calc(100% - 50px);
	margin-bottom: 50px;
}

.approach-item-list {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin-right: -190px;
	z-index: 1;
}

.approach-item {
	position: relative;
	width: calc(33.33% - 20px);
	min-height: 300px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 30px;
	background: var(--bg-color);
	border-radius: 14px;
	padding: 30px;
	overflow: hidden;
}

.approach-item::before {
	content: '';
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 0;
	background-color: var(--primary-color);
	transition: all 0.4s ease-in-out;
}

.approach-item:hover:before {
	top: auto;
	height: 100%;
	border-radius: 0;
}

.approach-item .icon-box {
	position: relative;
	width: 50px;
	height: 50px;
	background: var(--accent-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 1;
}

.approach-item .icon-box img {
	width: 100%;
	max-width: 24px;
}

.approach-item-content {
	position: relative;
	z-index: 1;
}

.approach-item-content h3 {
	font-size: 22px;
	transition: all 0.4s ease-in-out;
}

.approach-item-content p {
	border-top: 1px solid var(--divider-color);
	padding-top: 20px;
	margin: 20px 0 0;
	transition: all 0.4s ease-in-out;
}

.approach-item:hover .approach-item-content p,
.approach-item:hover .approach-item-content h3 {
	color: var(--white-color);
}

.approach-item:hover .approach-item-content p {
	border-color: var(--dark-divider-color);
}

.approach-image {
	height: 100%;
	margin-left: 15px;
}

.approach-image figure {
	display: block;
	height: 100%;
	border-radius: 14px;
}

.approach-image figure img {
	width: 100%;
	height: 100%;
	aspect-ratio: 1 / 1.2926;
	object-fit: cover;
	border-radius: 14px;
}

/************************************/
/**** 	 19. Service Single css  ****/
/************************************/
.page-service-single {
	padding: 120px 0;
}

.page-single-image {
	margin-bottom: 30px;
}

.page-single-image figure {
	display: block;
	border-radius: 14px;
}

.page-single-image img {
	width: 100%;
	aspect-ratio: 1 / 0.622;
	object-fit: cover;
	border-radius: 14px;
}

.service-entry {
	margin-bottom: 60px;
}

.service-entry p {
	margin-bottom: 20px;
}

.service-entry h2 {
	font-size: 48px;
	margin-bottom: 20px;
}

.service-entry h3 {
	font-size: 22px;
	line-height: 1.4em;
	margin-bottom: 10px;
}

.service-entry p:last-child,
.service-entry h3:last-child {
	margin: 0;
}

.service-entry ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.service-entry ul li {
	position: relative;
	color: var(--primary-color);
	line-height: 1.5em;
	padding-left: 25px;
	margin-bottom: 15px;
}

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

.service-entry ul li::before {
	content: '\f058';
	position: absolute;
	font-family: 'Font Awesome 7 Free';
	font-size: 18px;
	font-weight: 900;
	color: var(--accent-color);
	top: 0;
	left: 0;
}

.service-offer-box {
	margin-top: 60px;
}

.service-offer-box-list {
	margin: 40px 0;
}

.service-offer-box-list ul {
	display: flex;
	flex-wrap: wrap;
	gap: 15px 20px;
}

.service-offer-box-list ul li {
	width: calc(50% - 10px);
	margin-bottom: 0;
}

/************************************/
/***   31. Contact Us Page css    ***/
/************************************/
.page-contact-us {
	padding: 120px 0 60px;
}

.contact-us-content {
	height: 100%;
	background-color: var(--primary-color);
	border-radius: 14px;
	display: flex;
	flex-direction: column;
	gap: 40px;
	padding: 10px;
}

.contact-us-image {
	height: 100%;
}

.contact-us-image figure {
	display: block;
	height: 100%;
	border-radius: 14px;
}

.contact-us-image figure img {
	width: 100%;
	height: 100%;
	aspect-ratio: 1 / 0.76;
	object-fit: cover;
	border-radius: 14px;
}

.contact-us-body {
	padding: 0 30px 30px;
}

.contact-us-body-title {
	border-bottom: 1px solid var(--dark-divider-color);
	padding-bottom: 30px;
	margin-bottom: 30px;
}

.contact-us-body-title h2 {
	font-size: 22px;
	color: var(--white-color);
}

.contact-info-item {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 15px;
	margin-bottom: 30px;
}

.contact-info-item:last-child {
	margin-bottom: 0;
}

.contact-info-item .icon-box {
	position: relative;
	width: 50px;
	height: 50px;
	background: var(--accent-color);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
}

.contact-info-item .icon-box::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	background: var(--white-color);
	border-radius: 50%;
	width: 100%;
	height: 100%;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

.contact-info-item:hover .icon-box::before {
	transform: scale(1);
}

.contact-info-item .icon-box img {
	width: 100%;
	max-width: 24px;
	transition: all 0.4s ease-in-out;
}

.contact-info-item:hover .icon-box img {
	filter: brightness(0) invert(0);
}

.contact-info-item-content {
	width: calc(100% - 65px);
}

.contact-info-item-content p {
	color: var(--white-color);
	margin-bottom: 5px;
}

.contact-info-item-content h3 {
	font-size: 22px;
	color: var(--white-color);
}

.contact-info-item-content h3 a {
	color: inherit;
	transition: all 0.4s ease-in-out;
}

.contact-info-item-content h3 a:hover {
	color: var(--accent-color);
}

.contact-us-form {
	height: 100%;
	align-content: center;
	background-color: var(--secondary-color);
	border-radius: 14px;
	padding: 3.125vw;
	margin-left: 15px;
}

.contact-form label {
	font-family: var(--accent-font);
	font-size: 13px;
	font-weight: 600;
	color: var(--primary-color);
	margin-bottom: 10px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	opacity: 0.8;
}

.contact-form .form-control {
	font-size: 15px;
	font-weight: 400;
	line-height: 1.6;
	color: var(--primary-color);
	background: #ffffff;
	border: 1px solid rgba(0, 0, 0, 0.05);
	border-radius: 12px;
	padding: 16px 20px;
	box-shadow: none;
	outline: none;
	transition: all 0.3s ease;
}

.contact-form .form-control:focus {
	border-color: var(--accent-color);
	background: #fff;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.contact-form .form-control::placeholder {
	font-size: 14px;
	color: var(--text-color);
}

.google-map {
	padding: 60px 0 120px;
}

.google-map-iframe {
	width: 100%;
	height: 600px;
	border-radius: 14px;
	overflow: hidden;
}

.google-map-iframe iframe {
	width: 100%;
	height: 100%;
}

/************************************/
/***    32. 404 Error Page css    ***/
/************************************/
.error-page {
	padding: 120px 0;
}

.error-page-image {
	text-align: center;
	margin-bottom: 30px;
}

.error-page-image img {
	width: 100%;
	max-width: 540px;
}

.error-page-content {
	text-align: center;
}

.error-page-content .section-title {
	margin-bottom: 15px;
}

/************************************/
/***      33. Responsive css      ***/
/************************************/
@media only screen and (max-width: 1024px) {
	.topbar-contact-info ul li span {
		display: none;
	}

	.main-menu ul li {
		margin: 0;
	}

	.hero-content {
		margin-right: 0;
	}

	.about-us-image-box {
		max-width: 615px;
		margin: 0 auto 30px;
	}

	.why-choose-counter-item {
		text-align: center;
	}

	.why-choose-us-content {
		height: auto;
		margin-bottom: 30px;
	}

	.why-choose-us-image-box {
		height: auto;
		margin: 0;
	}

	.why-choose-image-box-1,
	.why-choose-image-box-1 .why-choose-image,
	.why-choose-image-box-2 {
		height: auto;
	}

	.why-choose-image-box-2 .why-choose-image figure img {
		aspect-ratio: 1 / 0.65;
	}

	.faqs-content {
		position: inherit;
		margin-bottom: 30px;
	}

	.our-faqs .faq-accordion {
		margin: 0;
	}

	.about-footer {
		width: 100%;
		max-width: 100%;
	}

	.about-footer-content {
		margin-top: 15px;
	}

	.footer-social-links h2 {
		margin-bottom: 15px;
	}

	.footer-links-box {
		width: 100%;
	}

	.footer-contact-items-list {
		gap: 30px 40px;
		padding-top: 30px;
		margin-top: 30px;
	}

	.footer-contact-item {
		width: auto;
	}

	.footer-contact-item::before {
		right: -20px;
	}

	.footer-contact-item-content h3 {
		font-size: 20px;
	}

	.footer-copyright-text {
		margin-top: 30px;
		padding: 30px 0;
	}

	.our-approach-content {
		height: auto;
		margin-bottom: 30px;
	}

	.approach-item-list {
		margin-right: 0;
	}

	.approach-image {
		height: auto;
		margin: 0;
	}

	.approach-image figure {
		height: auto;
	}

	.approach-image figure img {
		height: auto;
		aspect-ratio: 1 / 0.6;
	}

	.service-entry {
		margin-bottom: 40px;
	}

	.service-offer-box {
		margin-top: 40px;
	}

	.service-offer-box-list {
		margin: 30px 0;
	}

	.contact-us-content {
		height: auto;
		margin-bottom: 30px;
	}

	.contact-us-image,
	.contact-us-image figure {
		height: auto;
	}

	.contact-us-image figure img {
		height: auto;
		aspect-ratio: 1 / 0.65;
	}

	.contact-us-form {
		height: auto;
		margin-left: 0;
	}

	.google-map-iframe {
		height: 500px;
	}
}

@media only screen and (max-width: 991px) {
	.btn-default {
		padding: 15px 42px 15px 15px;
	}

	.btn-default::before {
		right: 15px;
		width: 18px;
		height: 18px;
	}

	.readmore-btn {
		padding: 3px 32px 3px 0;
	}

	.readmore-btn::before {
		width: 22px;
		height: 22px;
		background-size: 12px auto;
	}

	.topbar-contact-info ul {
		gap: 20px;
	}

	.topbar-contact-info ul li {
		font-size: 16px;
	}

	.topbar-contact-info ul li img {
		max-width: 18px;
	}

	.topbar-social-links p {
		display: none;
	}

	.topbar-social-links ul li a i {
		font-size: 16px;
	}

	header.main-header .header-sticky,
	header.main-header .header-sticky.active {
		width: 100%;
	}

	.navbar .container {
		display: flex;
		justify-content: space-between;
		align-items: center;
		flex-wrap: wrap;
	}

	.main-menu {
		display: none !important;
	}

	.navbar-brand {
		flex: 0 0 auto;
		max-width: 160px;
	}

	.custom-mobile-nav-toggle {
		display: flex !important;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		width: 44px;
		height: 44px;
		border: none;
		border-radius: 8px;
		cursor: pointer;
		gap: 5px;
		padding: 0;
		order: 2;
		transition: all 0.3s ease;
	}

	.custom-mobile-nav-toggle .bar {
		display: block;
		width: 22px;
		height: 2px;
		background: #0b7701;
		box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
		border-radius: 2px;
		transition: all 0.3s ease;
	}

	.custom-mobile-nav-toggle:hover {
		background: var(--primary-color);
	}

	.custom-mobile-nav {
		position: fixed;
		top: 0;
		right: -100%;
		width: 100%;
		height: 100%;
		background: #ffffff;
		z-index: 10000;
		transition: all 0.4s cubic-bezier(0.77, 0.2, 0.05, 1);
		display: flex;
		flex-direction: column;
		padding: 30px;
		overflow-y: auto;
	}

	.custom-mobile-nav.active {
		display: flex !important;
		right: 0;
	}

	.mobile-nav-header {
		display: flex;
		justify-content: space-between;
		align-items: center;
		margin-bottom: 40px;
	}

	.mobile-logo img {
		height: 40px;
	}

	.mobile-menu-close {
		background: none;
		border: none;
		font-size: 40px;
		color: var(--primary-color);
		cursor: pointer;
		line-height: 1;
	}

	.mobile-menu-list {
		list-style: none;
		padding: 0;
		margin: 0;
	}

	.mobile-menu-list>li {
		margin-bottom: 20px;
		border-bottom: 1px solid rgba(0, 0, 0, 0.05);
		padding-bottom: 15px;
	}

	.mobile-menu-list>li>a {
		font-size: 20px;
		font-weight: 600;
		color: var(--primary-color);
		display: flex;
		justify-content: space-between;
		align-items: center;
	}

	.mobile-menu-list .submenu {
		display: none;
		list-style: none;
		padding: 15px 0 0 20px;
	}

	.mobile-menu-list li.open .submenu {
		display: block;
	}

	.mobile-menu-list .submenu li {
		margin-bottom: 12px;
	}

	.mobile-menu-list .submenu li a {
		font-size: 16px;
		color: var(--text-color);
	}

	.mobile-nav-footer {
		margin-top: auto;
		padding-top: 30px;
	}

	.mobile-nav-footer .whatsapp-btn {
		width: 100%;
		justify-content: center;
	}

	.navbar-toggle {
		display: none !important;
	}

	.header-btn {
		display: none;
	}

	.section-row {
		margin-bottom: 40px;
	}

	.section-title {
		margin-bottom: 30px;
	}

	.section-title .section-sub-title {
		padding: 7px 12px 7px 25px;
		margin-bottom: 10px;
	}

	.section-title .section-sub-title::before {
		left: 12px;
	}

	.section-title h1 {
		font-size: 44px;
	}

	.section-title h2 {
		font-size: 38px;
	}

	.section-title p {
		margin-top: 10px;
	}

	.hero {
		padding: 150px 0;
	}

	.about-us {
		padding: 60px 0;
	}

	.about-us-item-content h3 {
		font-size: 20px;
	}

	.service-item {
		padding: 10px;
	}

	.service-item-image .icon-box {
		top: 20px;
		left: 20px;
	}

	.service-item-body {
		padding: 10px;
	}

	.service-item-content h2 {
		font-size: 20px;
	}

	.why-choose-us {
		padding: 60px 0;
	}

	.why-choose-item-content h3 {
		font-size: 20px;
	}

	.why-choose-counter-list {
		padding-top: 30px;
		margin-top: 30px;
	}

	.why-choose-counter-item h2 {
		font-size: 34px;
	}

	.why-choose-btn {
		padding-top: 30px;
		margin-top: 30px;
	}

	.why-choose-info-content h3 {
		font-size: 20px;
	}

	.our-faqs {
		padding: 60px 0;
	}

	.faq-accordion .accordion-item {
		padding-bottom: 20px;
		margin-bottom: 20px;
	}

	.faq-accordion .accordion-header .accordion-button {
		padding: 1px 35px 1px 0;
	}

	.faq-accordion .accordion-item .accordion-button::after,
	.faq-accordion .accordion-item .accordion-button.collapsed::after {
		width: 28px;
		height: 28px;
		background-size: 16px auto;
	}

	.faq-accordion .accordion-item .accordion-body {
		padding: 15px 35px 0 0;
	}

	.main-footer {
		padding: 60px 0 0;
	}

	.footer-social-links {
		padding-top: 20px;
		margin-top: 20px;
	}

	.footer-social-links h2 {
		font-size: 20px;
	}

	.footer-links h2 {
		font-size: 20px;
		margin-bottom: 20px;
	}

	.footer-contact-items-list {
		gap: 20px 30px;
	}

	.footer-contact-item::before {
		display: none;
	}

	.page-header {
		padding: 90px 0;
	}

	.page-header-box h1 {
		font-size: 44px;
		margin-bottom: 10px;
	}

	.our-approach {
		padding: 60px 0;
	}

	.approach-item-list {
		gap: 20px;
	}

	.approach-item {
		width: calc(33.33% - 13.33px);
		min-height: auto;
		gap: 20px;
		padding: 20px;
	}

	.approach-item-content h3 {
		font-size: 20px;
	}

	.approach-item-content p {
		padding-top: 15px;
		margin: 15px 0 0;
	}

	.page-service-single {
		padding: 60px 0;
	}

	.service-entry h2 {
		font-size: 38px;
		margin-bottom: 15px;
	}

	.service-entry h3 {
		font-size: 20px;
	}

	.service-entry p {
		margin-bottom: 15px;
	}

	.service-entry ul li {
		margin-bottom: 10px;
	}

	.service-entry ul li::before {
		font-size: 16px;
	}

	.page-single-image {
		margin-bottom: 20px;
	}

	.service-offer-box-list ul li {
		margin-bottom: 0;
	}

	.page-contact-us {
		padding: 60px 0 30px;
	}

	.contact-us-content {
		gap: 30px;
	}

	.contact-us-body {
		padding: 0 20px 20px;
	}

	.contact-us-body-title {
		padding-bottom: 20px;
		margin-bottom: 20px;
	}

	.contact-us-body-title h2 {
		font-size: 20px;
	}

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

	.contact-info-item-content h3 {
		font-size: 20px;
	}

	.contact-us-form {
		padding: 30px;
	}

	.contact-form .form-control {
		padding: 15px;
	}

	.google-map {
		padding: 30px 0 60px;
	}

	.error-page {
		padding: 60px 0px;
	}

	.error-page-image {
		margin-bottom: 20px;
	}
}

@media only screen and (max-width: 767px) {
	.topbar {
		padding: 10px 0;
	}

	.topbar-contact-info ul {
		justify-content: center;
		gap: 10px 15px;
	}

	.topbar-contact-info ul li {
		font-size: 14px;
	}

	.topbar-contact-info ul li img {
		max-width: 16px;
		margin-right: 5px;
	}

	.topbar-social-links {
		display: none;
	}

	.section-row {
		margin-bottom: 30px;
	}

	.section-title h1 {
		font-size: 28px;
	}

	.section-title h2 {
		font-size: 26px;
	}

	.hero {
		padding: 100px 0;
	}

	.about-us-item-list {
		width: 100%;
	}

	.about-us-item {
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

	.about-us-item-content h3 {
		font-size: 18px;
	}

	.about-us-item-content p {
		margin: 5px 0 0;
	}

	.service-item-content h2 {
		font-size: 18px;
	}

	.service-item-content p {
		margin: 5px 0 0;
	}

	.service-item-btn {
		padding-top: 15px;
		margin-top: 15px;
	}

	.why-choose-item {
		padding: 15px;
	}

	.why-choose-item-content {
		width: 100%;
	}

	.why-choose-item-content h3 {
		font-size: 18px;
	}

	.why-choose-item-content p {
		margin: 5px 0 0;
	}

	.why-choose-counter-list {
		gap: 20px;
	}

	.why-choose-counter-item {
		min-width: auto;
		width: calc(33.33% - 13.33px);
	}

	.why-choose-counter-item::before {
		right: -10px;
	}

	.why-choose-counter-item h2 {
		font-size: 28px;
	}

	.why-choose-counter-item p {
		font-size: 14px;
	}

	.why-choose-us-image-box {
		gap: 20px;
	}

	.why-choose-scrolling-ticker {
		bottom: 20px;
	}

	.scrolling-ticker-box {
		--gap: 15px;
	}

	.scrolling-content span {
		padding: 6px 12px;
	}

	.why-choose-image-box-2 .why-choose-image {
		width: calc(45% - 10px);
	}

	.why-choose-image-box-2 {
		gap: 20px;
	}

	.why-choose-info-box {
		width: calc(55% - 10px);
		gap: 15px;
		padding: 15px;
	}

	.why-choose-info-image {
		max-width: 80px;
	}

	.why-choose-info-content h3 {
		font-size: 16px;
	}

	.why-choose-info-content p {
		font-size: 14px;
		padding-top: 10px;
		margin: 10px 0 0;
	}

	.faq-accordion .accordion-header .accordion-button {
		font-size: 18px;
	}

	.faq-accordion .accordion-item .accordion-body {
		padding-right: 0;
	}

	.footer-links-box {
		padding: 20px;
	}

	.footer-links {
		max-width: 100%;
	}

	.footer-social-links h2,
	.footer-links h2 {
		font-size: 18px;
		margin-bottom: 15px;
	}

	.footer-links ul li {
		margin-bottom: 10px;
	}

	.footer-newsletter-form p {
		margin-bottom: 15px;
	}

	.footer-contact-item {
		width: 100%;
	}

	.footer-contact-item-content h3 {
		font-size: 18px;
	}

	.footer-copyright-text {
		padding: 15px 0;
	}

	.page-header-box h1 {
		font-size: 28px;
	}

	.approach-item {
		width: 100%;
	}

	.approach-item-content h3 {
		font-size: 18px;
	}

	.approach-image figure img {
		aspect-ratio: 1 / 1;
	}

	.service-entry h2 {
		font-size: 26px;
	}

	.service-entry h3 {
		font-size: 18px;
		margin-bottom: 5px;
	}

	.service-offer-box-list ul {
		gap: 10px;
	}

	.service-offer-box-list ul li {
		width: 100%;
	}

	.contact-us-body {
		padding: 0 10px 10px;
	}

	.contact-us-body-title h2 {
		font-size: 18px;
	}

	.contact-info-item-content h3 {
		font-size: 18px;
	}

	.contact-us-form {
		padding: 20px;
	}

	.google-map-iframe {
		height: 350px;
	}
}

@keyframes infiniterotateroyal {
	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(360deg);
	}
}

.how-it-work-royal {
	overflow: hidden;
}

.how-it-work-royal .container-fluid {
	padding: 0;
}

.how-work-content-royal {
	height: 100%;
	align-content: center;
	padding: 5.208vw;
}

.how-work-items-list-royal {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.how-work-item-royal {
	position: relative;
	width: calc(50% - 15px);
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	background-color: var(--bg-color);
	border-radius: 14px;
	padding: 30px;
	overflow: hidden;
}

.how-work-item-royal::before {
	content: '';
	position: absolute;
	top: 0;
	right: auto;
	bottom: 0;
	left: 0;
	width: 0;
	height: 100%;
	background: var(--primary-color);
	transition: all 0.4s ease-in-out;
}

.how-work-item-royal:hover:before {
	width: 100%;
}

.how-work-item-number-royal {
	position: relative;
	z-index: 1;
}

.how-work-item-number-royal h2 {
	width: 55px;
	font-size: 40px;
	color: var(--accent-color);
}

.how-work-item-content-royal {
	position: relative;
	width: calc(100% - 70px);
	z-index: 1;
}

.how-work-item-content-royal h3 {
	font-size: 22px;
	transition: all 0.4s ease-in-out;
}

.how-work-item-content-royal p {
	margin: 10px 0 0;
	transition: all 0.4s ease-in-out;
}

.how-work-item-royal:hover .how-work-item-content-royal h3,
.how-work-item-royal:hover .how-work-item-content-royal p {
	color: var(--white-color);
}

@media only screen and (max-width: 1440px) {
	.how-work-content-royal {
		padding: 60px 30px;
	}

	.how-work-item-royal {
		padding: 20px;
	}
}

@media only screen and (max-width: 1024px) {
	.how-work-content-royal {
		padding: 60px 15px;
	}
}

@media only screen and (max-width: 991px) {
	.how-work-item-number-royal h2 {
		width: 45px;
		font-size: 34px;
	}

	.how-work-item-content-royal {
		width: calc(100% - 60px);
	}

	.how-work-item-content-royal h3 {
		font-size: 20px;
	}
}

@media only screen and (max-width: 767px) {
	.how-work-items-list-royal {
		gap: 20px;
	}

	.how-work-item-royal {
		width: 100%;
		gap: 10px;
	}

	.how-work-item-number-royal h2 {
		width: 35px;
		font-size: 24px;
	}

	.how-work-item-content-royal {
		width: calc(100% - 45px);
	}

	.how-work-item-content-royal h3 {
		font-size: 18px;
	}

	.how-work-item-content-royal p {
		margin: 5px 0 0;
	}
}

.our-service-prime {
	background-repeat: no-repeat;
	background-position: bottom center;
	background-size: 100% auto;
	padding: 120px 0;
}

@media only screen and (max-width: 991px) {
	.our-service-prime {
		padding: 60px 0;
	}
}

.page-header-section {
	position: relative;
	padding: 140px 0;
	background-size: cover !important;
	background-position: center center !important;
	background-repeat: no-repeat !important;
	overflow: hidden;
	z-index: 1;
}

.page-header-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(0, 26, 41, 0.85) 0%, rgba(0, 26, 41, 0.7) 100%);
	z-index: -1;
}

.page-header-content {
	position: relative;
	z-index: 2;
}

.page-header-title {
	color: var(--white-color);
	font-size: 56px;
	font-weight: 700;
	margin-bottom: 24px;
	text-transform: capitalize;
	letter-spacing: -0.03em;
	line-height: 1.2;
}

.page-header-description {
	color: rgba(255, 255, 255, 0.85);
	font-size: 18px;
	max-width: 700px;
	margin: 0 auto;
	line-height: 1.6;
}

.breadcrumb-nav {
	margin-bottom: 15px;
}

.breadcrumb-list {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 8px;
	list-style: none;
	padding: 0;
	margin: 0;
}

.breadcrumb-list li {
	font-size: 16px;
	font-weight: 500;
	display: flex;
	align-items: center;
}

.breadcrumb-list li a {
	color: #ffb800;
	/* Keeping original brand yellow-orange */
	text-decoration: none;
	transition: all 0.3s ease;
}

.breadcrumb-list li a:hover {
	color: var(--white-color);
}

.breadcrumb-list li.current {
	color: var(--white-color);
	opacity: 0.8;
}

.breadcrumb-list li .separator {
	margin: 0 5px;
	color: rgba(255, 255, 255, 0.5);
	font-weight: 300;
}

@media (max-width: 991px) {
	.page-header-section {
		padding: 100px 0;
	}

	.page-header-title {
		font-size: 42px;
	}
}

.custom-soft-banner {
	position: relative;
	width: 100%;
	height: 400px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	background: linear-gradient(145deg, #0a2f10 0%, #1b431e 50%, #0d3514 100%);
	z-index: 1;
}

.custom-soft-banner::before {
	content: '';
	position: absolute;
	width: 150%;
	height: 150%;
	background: radial-gradient(circle, rgba(46, 125, 50, 0.15) 0%, transparent 70%);
	top: -25%;
	left: -25%;
	animation: slowRotate 20s linear infinite;
	z-index: -1;
}

.banner-content {
	padding: 40px;
	max-width: 900px;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	margin: 0 auto;
	z-index: 2;
	animation: softFadeIn 1.5s ease-out;
}

.banner-content h2 {
	font-size: 48px;
	color: #ffffff;
	font-weight: 700;
	margin-bottom: 30px;
	line-height: 1.3;
	letter-spacing: -0.02em;
	text-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.banner-content p {
	color: #c8e6c9;
	font-size: 18px;
	margin-bottom: 40px;
	font-weight: 400;
	opacity: 0.9;
}

.banner-btn-wrapper {
	display: flex;
	justify-content: center;
	gap: 20px;
}

.banner-btn {
	display: inline-block;
	padding: 16px 45px;
	background-color: #ffffff;
	color: #1b5e20;
	font-weight: 600;
	font-size: 16px;
	border-radius: 100px;
	text-decoration: none !important;
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
	border: 2px solid transparent;
}

.banner-btn:hover {
	background-color: transparent;
	color: #ffffff;
	border-color: #ffffff;
	transform: translateY(-5px);
	box-shadow: 0 15px 40px rgba(255, 255, 255, 0.1);
}

@keyframes softFadeIn {
	from {
		opacity: 0;
		transform: scale(0.95) translateY(30px);
		filter: blur(10px);
	}

	to {
		opacity: 1;
		transform: scale(1) translateY(0);
		filter: blur(0);
	}
}

@keyframes slowRotate {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

@media (max-width: 991px) {
	.banner-content h2 {
		font-size: 38px;
	}
}

@media (max-width: 768px) {
	.custom-soft-banner {
		height: 350px;
	}

	.banner-content h2 {
		font-size: 32px;
	}

	.banner-content p {
		font-size: 16px;
	}

	.banner-btn {
		padding: 14px 35px;
	}
}

.service-offer-box-list ul {
	list-style: none !important;
	padding-left: 0 !important;
}

.service-offer-box-list ul li:before {
	display: none !important;
}

.about-us-img-box {
	width: 90%;
	display: block;
}

.rel-pos {
	position: relative;
}

.m-0 {
	margin: 0 !important;
}

.about-main-img {
	width: 100%;
	height: auto;
	border-radius: 20px;
	display: block;
}

.icon-white {
	color: white !important;
}

.how-it-work-royal {
	padding: 0;
	overflow: hidden;
}

.how-work-content-royal {
	padding: 100px 80px;
}

.how-work-image-col {
	padding: 0;
	align-self: stretch;
}

.how-work-full-image-royal {
	width: 100%;
	height: 100%;
	position: relative;
	overflow: hidden;
}

.how-work-full-image-royal img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	position: absolute;
	top: 0;
	left: 0;
}

@media (max-width: 1199px) {
	.how-work-image-col {
		height: 400px;
	}

	.how-work-content-royal {
		padding: 60px 40px;
	}
}

.our-service-prime .service-item-image {
	width: 100%;
	height: 150px;
	overflow: hidden;
	position: relative;
}

/* ======= USER UI FIXES ======= */
.navbar {
	padding-top: 25px !important;
	padding-bottom: 25px !important;
	transition: all 0.3s ease;
}

.btn-default {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 30px;
	background-color: var(--accent-color, #4AAB3D);
	color: var(--white-color, #fff) !important;
	border-radius: 100px;
	font-weight: 600;
	text-decoration: none !important;
	transition: all 0.3s ease;
	border: 2px solid transparent;
}
.btn-default:hover {
	background-color: var(--primary-color, #001A29);
	color: var(--white-color, #fff) !important;
}

/* Soft Prominent WhatsApp Button */
.btn-default.whatsapp-btn {
	background-color: #e8f5e9 !important;
	color: #2e7d32 !important;
	border: 1px solid #c8e6c9 !important;
	box-shadow: 0 4px 10px rgba(46, 125, 50, 0.1) !important;
	text-decoration: none !important;
}
.btn-default.whatsapp-btn i {
	color: #25d366;
	font-size: 18px;
}
.btn-default.whatsapp-btn:hover {
	background-color: #c8e6c9 !important;
	color: #1b5e20 !important;
	box-shadow: 0 6px 15px rgba(46, 125, 50, 0.2) !important;
	transform: translateY(-2px);
}

/* Submenu Arrow Fix */
.nav-item.submenu > .nav-link {
	display: inline-flex;
	align-items: center;
	gap: 5px;
}

/* Navbar Centering Fix */
@media (min-width: 992px) {
	.navbar .container {
		position: relative;
	}
	.main-menu {
		display: flex;
		justify-content: flex-end;
		align-items: center;
		width: 100%;
		position: static !important;
	}
	.nav-menu-wrapper {
		position: absolute;
		left: 50%;
		top: 50%;
		transform: translate(-50%, -50%);
		margin: 0;
	}
}