html {
	font-family: 'Graphik';
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	scroll-behavior: smooth;
	scroll-padding-top: 100px;
}
:root {
	--primary-color: #F46C1B;
	--secondary-color: #ED0000;
	--text-color:#212121;
	--heading-color:#000000;
	--black: #000000;
	--white: #ffffff;
	--light-orange: #FFF7D4;
	--dark-blue: #09161D;
}
body {
	margin: 0;
	padding: 0;
	color: var(--text-color);
	font-size: 18px;
	line-height: 1.8;
	font-weight: 400;
}
body * {
	box-sizing: border-box;
	font-family: 'Graphik';
}
/* UK Policy */
.page-id-412 h1.p2 {
    margin-bottom: 20px;
}
.page-id-412 div#primary {
    padding: 150px 0;
}
.page-id-412 main#main {
    max-width: 1410px;
    margin: auto;
    padding: 15px;
}
.page-id-412 h2.p5 {
    font-size: 36px;
}
@font-face {
	font-family: 'Graphik';
	src: url('/wp-content/uploads/fonts/GraphikBold.otf');
	font-weight: 700;
}
@font-face {
	font-family: 'Graphik';
	src: url('/wp-content/uploads/fonts/GraphikSemibold.otf');
	font-weight: 600;
}
@font-face {
	font-family: 'Graphik';
	src: url('/wp-content/uploads/fonts/GraphikMedium.otf');
	font-weight: 500;
}
@font-face {
	font-family: 'Graphik';
	src: url('/wp-content/uploads/fonts/GraphikRegular.otf');
	font-weight: 400;
}
@font-face {
	font-family: 'Graphik';
	src: url('/wp-content/uploads/fonts/GraphikLight.otf');
	font-weight: 300;
}

::-webkit-scrollbar {
	width: 12px;
}
::-webkit-scrollbar-track {
	background-color: #a6a6a66e;
}
::-webkit-scrollbar-thumb {
	background-color: var(--primary-color);
	border-radius:5px;
}

/********************************
		  Global Css
********************************/
.container {
	max-width: 1410px;
	margin: auto;
	padding:15px;
}
.row {
	display: flex;
	gap:30px;
}
img {
	max-width: 100%;
	height: auto;
}
a{
	text-decoration: none;
	color: var(--primary-color);
	cursor: pointer;
}
h1 {
	font-size: 52px;
	line-height: 1.5;
	font-weight: 700;
	margin: 0;
}
h2 {
	font-size: 48px;
	line-height: 1.45;
	font-weight: 700;
}
h3 {
	font-size: 22px;
	line-height: 1.4;
	font-weight: 500;
}
h6 {
	font-size: 18px;
}
h2,h3,h4,h5,h6 {
	margin: 0px;
	color: var(--heading-color);
}
p:first-child {
	margin-top: 0px;
}
p:last-child {
	margin-bottom: 0px;
}
.button {
	padding: 16px 40px;
	text-decoration: none;
	transition: all .5s ease-out;
	color: white;
	display: flex;
	align-items: center;
	gap: 5px;
	width: fit-content;
	background-color: var(--primary-color);
	font-weight: 400;
	font-size: 18px;
	line-height: 1;
	border-radius: 4px;
}
.button:hover {
	background-color: #DE4820;
}
.button.white-btn {
	background-color: var(--white);
	color: var(--primary-color);
}
.button.white-btn:hover {
	background-color: #12141d;
	color: var(--white);
}
.button svg * {
	transition: all .5s ease-out;
}
.button.white-btn:hover svg path {
	stroke: #fff;
}

.text-button {
	display: flex;
	align-items: center;
	gap: 5px;
}
.heading-color {
	color: var(--primary-color);
}
.heading-divider {
	border-radius: 50px;
	display: block;
	width: 63px;
	height: 5px;
	background: #212121;
}
.text-center {
	text-align: center;
}
.mb-text {
	margin-bottom: 40px;
}
.head-color span {
	color: var(--primary-color);
}
/********************************
		  Header Css
********************************/
.site-header {
	transition: 0.5s all ease-in-out;
	position: fixed;
	width: 100%;
	z-index: 999;
}
.scroll-up {
	top: 0;
}
.logged-in .scroll-up {
	top: 32px;
}
.scroll-down {
	top: -100px;
}
.logged-in .site-header.mobile.scroll-up {
	 top: 0px;
}
.site-header.scrolled {
	background-color: var(--dark-blue);
}
/**/
.site-logo img {
	width: 196px;
}
.menu-logo-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 10px;
	border-bottom: 1px solid #8A8A8A99;
}

.header-menu ul {
	display: flex;
	list-style: none;
	gap: 32px;
	margin: 0;
	padding-left: 0;
}
.header-menu li a {
	color: var(--white);
	text-decoration: none;
	font-size: 18px;
	position: relative;
	font-weight: 500;
}
.header-menu a:hover {
	color: var(--primary-color);
}
.header-menu .current-menu-item>a {
	color: var(--primary-color);
}
.desktop .header-menu>.menu>li.menu-item>a {
	position: relative;
	padding-block: 30px;
}
.desktop .header-menu>.menu>li.menu-item>a:after {
	content: "";
	background-color: var(--primary-color);
	position: absolute;
	width: 0%;
	left: 0;
	height: 3px;
	bottom: -1.5px;
	border-radius: 10px;
	transition:0.3s all ease;
}
.desktop .header-menu>.menu>li.menu-item.current-menu-item>a:after,
.desktop .header-menu>.menu>li.menu-item>a:hover:after {
	width: 100%;
}
.menu-item-has-children:not(.current-menu-item) .dropdown-arrow {
	filter: invert(100) brightness(100);
}
.menu-item-has-children a:hover .dropdown-arrow {
	filter: none;
}
.desktop .login-grms a {
	color: var(--primary-color);
	text-decoration: underline;
	text-underline-offset: 4px;
}
.desktop .login-grms a:hover:after {
	width: 0 !important;
}
/*submenu*/
.menu-item-has-children img.dropdown-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: -16px;
}
.menu-item-has-children {
	position: relative;
	padding-right: 10px;
}
.desktop ul.sub-menu {
	position: absolute;
	left: 0;
	opacity: 0;
	visibility: hidden;
	display: none !important;
}
.desktop .menu-item-has-children:hover>ul.sub-menu {
	opacity: 1;
	visibility: visible;
	display: block !important;
	background: #FFFBF6;
	padding: 20px;
	min-width: 300px;
	z-index: 99;
}
ul.sub-menu>li:not(:last-child) {
	padding-bottom: 5px !important;
}
.desktop ul.sub-menu li {
	line-height: 1;
	padding-bottom: 0px !important;
}
.desktop ul.sub-menu a {
	color: #000000;
	font-size: 14px;
	line-height: 1.5;
	display: inline-block !important;
	padding: 8px 0;
}
.desktop ul.sub-menu a:hover {
	color: var(--primary-color);
}
.rtl .desktop ul.sub-menu {
    left: auto;
}
/*language switcher*/
/*.header-btn {*/
/*	display: flex;*/
/*	align-items: center;*/
/*	gap: 15px;*/
/*}*/
/*.wpml-ls-legacy-dropdown {*/
/*	width: 100px !important;*/
/*}*/
/*.wpml-ls-legacy-dropdown a {*/
/*	display: flex;*/
/*	padding: 5px 5px !important;*/
/*	border: 0px !important;*/
/*	color: #fff !important;*/
/*	background: transparent !important;*/
/*}*/
/*.wpml-ls-legacy-dropdown a span {*/
/*	vertical-align: inherit !important;*/
/*	font-size: 13px;*/
/*}*/
/*.wpml-ls-legacy-dropdown .wpml-ls-current-language:hover>a, .wpml-ls-legacy-dropdown a:focus, .wpml-ls-legacy-dropdown a:hover {*/
/*	color: #000 !important;*/
/*	background: #eee !important;*/
/*}*/
/*.rtl .wpml-ls-legacy-dropdown {*/
/*	width: 80px !important;*/
/*}*/
/************************* mobile Menu ***********************/
.site-header.mobile {
	display: none;
	/*position: relative;*/
}
#menuToggle {
	display: block;
	-webkit-user-select: none;
	user-select: none;
}
#menuToggle a {
	text-decoration: none;
	color: #fff;
	transition: color 0.3s ease;
	position: relative;
	max-width: fit-content;
	display: block;
}
#menuToggle input {
	display: block;
	width: 30px;
	height: 30px;
	position: absolute;
	cursor: pointer;
	opacity: 0;
	z-index: 2;
	-webkit-touch-callout: none;
}
#menuToggle span {
	display: block;
	width: 33px;
	height: 4px;
	margin-bottom: 5px;
	position: relative;
	background: var(--primary-color);
	border-radius: 3px;
	z-index: 1;
	transform-origin: 4px 0px;
	transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1),
	background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.55s ease;
}
span.fs {
	width: 30px !important;
}
span.ls {
	width: 30px !important;
	float: right;
}
#menuToggle span:first-child {
	transform-origin: 0% 0%;
}
#menuToggle span:nth-last-child(2) {
	transform-origin: 0% 100%;
}
#menuToggle input:checked ~ span {
	opacity: 1;
	transform: rotate(45deg) translate(8px, -1px);
	background: var(--primary-color);
}
#menuToggle input:checked ~ span:nth-last-child(2) {
	opacity: 0;
	transform: rotate(0deg) scale(0.2, 0.2);
}
#menuToggle input:checked ~ span:nth-last-child(1) {
	transform: rotate(-45deg) translate(-2px, 2px);
	width: 30px;
}
.mobile .site-logo img {
	max-width: 150px;
}
#menuToggle input:checked ~ ul {
	transform: none;
}
.mobile .mobile-main-menu {
	display: none;
	position: absolute;
	z-index: 9 !important;
	background-color: var(--primary-color);
	left: 0;
	top: 0px;
	min-height: 100vh;
}
.mobile ul#menu {
	list-style: none;
	padding-top: 20px;
	padding-left: 0px;
	padding-right: 0px;
	width: 60vw;
}
.mobile-primary-menu .menu a {
	color: #fff;
	transition: color 0.3s ease;
	position: relative;
	max-width: fit-content;
	display: inline-block;
	padding: 8px 20px;
}
.mobile li.menu-item:hover .dropdown-arrow, .mobile li.menu-item.current-menu-item .dropdown-arrow{
	filter: brightness(0);
}
.mobile ul#menu>.current-menu-item, .mobile ul#menu>li:hover {
	background: #fff;
}
.mobile ul#menu>.current-menu-item>a, .mobile ul#menu>li:hover>a {
	color: var(--primary-color);
}
.mobile ul.sub-menu {
	position: relative;
	display: none;
	transition: min-height 0.3s ease;
	overflow: hidden;
	opacity: 1;
	visibility: visible;
	background: #fff;
	padding: 12px 40px 12px;
	list-style: disc;
}
.mobile ul.sub-menu li::marker {
	color: var(--primary-color);
}
.mobile ul.sub-menu a {
	color: var(--primary-color) !important;
	padding: 0;
}
.mobile .menu-item-has-children img.dropdown-arrow {
	top: 50%;
	transform: translateY(-50%);
	right: 0px;
}
/*.mobile .header-btn .button {*/
/*	background-color: #fff;*/
/*	color: #000000;*/
/*	min-width: 103px;*/
/*}*/
/*.mobile .header-btn {*/
/*	padding: 20px;*/
/*}*/
/*.mobile .site-logo {*/
/*	flex:1;*/
/*}*/
/*.mobile .language-switcher ,.mobile .mobile-primary-menu{*/
/*	flex: 0 0 auto;*/
/*}*/
/********************************
		  Site Footer
********************************/
footer.site-footer {
	margin-top: 150px;
	background-color: #12141D;
}
/* option 1 */
.above-footer-section {
	background: var(--primary-color);
	position: relative;
	border-radius: 8px;
	margin-top: -150px;
	overflow: hidden;
}
.sign-in-section-footer {
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 32px;
	padding: 80px;
}
.above-footer-section .above-footer-subtitle {
	font-size: 42px;
	font-weight: 500;
	color: var(--white);
	width: 90%;
}
.above-footer-section .above-footer-content {
	color: var(--white);
}
.aeroplane-absolute-image {
	position: absolute;
	right: -53px;
	bottom: -72px;
}
.above-footer-section .heading-divider {
	background: #fff;
}
/* option 2 */
.leadership-wrapper {
	align-items: center;
}
.leadership-col-content {
	padding: 80px 0px 80px 80px;
	color: #fff;
	width: 70%;
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.leadership-col-content  h2 {
	color: #fff;
}
/*main footer*/
.main-footer-row {
	gap: 80px;
	padding: 50px 0;
}
.footer-about {
	width: 40%;
}
.footer-first-col {
	width: 20%;
}
.footer-second-col {
	width: 20%;
}
.footer-third-col {
	width: 20%;
}
.main-footer-row h3 {
	color: var(--primary-color);
	font-size: 24px;
	font-weight: 500;
}
.footer-about {
	color: var(--white);
}
.footer-about p {
	font-size: 14px;
}
.footer-logo {
	max-width: 200px;
}
.footer-social-icons {
	display: flex;
	gap: 15px;
	margin-top: 30px;
}
.footer-social-icons svg {
	width: 36px;
	height: 36px;
}
.footer-social-icons a:hover svg circle  {
	fill: #F46C1B;
}
.footer-social-icons a:hover svg path {
	fill: #ffffff;
}
.footer-quick-links {
	display: flex;
	flex-direction: column;
	gap: 20px;
	margin-top: 25px;
}
.footer-quick-links a {
	color: var(--white);
	font-size: 14px;
}
.footer-quick-links a:hover {
	color: var(--primary-color);
}
.footer-sub-menu {
	display: none;
	list-style: none;
	padding: 0;
	margin-top: 5px;
	margin-bottom: 0px;
}
ul.footer-sub-menu a {
	font-size: 13px;
}
.ftr-submenu-toggle {
	padding: 2px 5px;
	cursor: pointer;
}
.footer-contact-info {
	display: flex;
	flex-direction: column;
	gap: 30px;
	margin-top: 25px;
}
.footer-contact-info a {
	display: inline-flex;
	gap: 20px;
	align-items: flex-start;
	color: var(--white);
	font-size: 14px;
}
.footer-divider {
	width: 100%;
	height: 1px;
	background: #8A8A8A;
}
.bottom-row {
	justify-content: space-between;
	align-items: center;
	padding-top: 15px;
}
.copyright {
	color: var(--white);
	font-size: 14px;
}
.privacy-terms-links {
	display: flex;
	gap: 20px;
	color: #fff;
}
.privacy-terms-links a{
	color: #fff;
	font-size: 14px;
}
/****************************************************************
		  				Popup Video
****************************************************************/
.popup-container {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100% !important;
	height: 100%;
	background-color: #000000cc;
	justify-content: center;
	align-items: center;
	z-index: 999 !important;
}
.no-scroll {
	overflow: hidden;
}
div#popup-content {
	padding: 40px 20px;
	max-width: 820px;
	margin: auto;
	border-radius: 10px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
span.close-button {
	position: absolute;
	top: 0px;
	right: 10px;
	font-size: 32px;
	cursor: pointer;
	font-weight: 800;
	color: #ffffff;
}
/********************************
		  Pages Css
********************************/
/* global padding */
.section-padding {
	padding: 60px 0px;
}
/* hero banner */
.hero-section {
	color: var(--white);
	padding-top: 120px;
	padding-bottom: 90px;
	background-position: center;
	background-size: cover;
	min-height: 99vh;
	display: flex;
	align-items: center;
	flex-direction: column;
	min-width: 100%;
	border-bottom-right-radius: 30px;
	border-bottom-left-radius: 30px;
	position: relative;
}
.hero-section>.container {
	width: 100%;
}
.banner-content-wrapper {
	display: flex;
	flex-direction: column;
	gap: 30px;
}
.hero-heading {
	color: #fff;
	font-size: 71px;
}
.hero-sub-title {
	color: #fff;
	font-size: 28px;
	font-weight: 300;
}
.banner-heading-divider {
	border-radius: 50px;
	display: block;
	width: 99px;
	height: 5px;
	background: #fff;
}
.scroll-down-btn {
	position: absolute;
	right: calc((100vw - 1410px) / 2);
	bottom: 50px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 30px;
}
.scroll-down-btn>a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 80px;
	height: 80px;
	border-radius: 50%;
	position: relative;
	cursor: pointer;
}
.scroll-down-btn>a::before {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	background: rgba(215, 90, 35, 0.5); /* Outer pulse color */
	border-radius: 50%;
	z-index: 0;
	animation: pulse 1.5s infinite;
}

@keyframes pulse {
	0% {
		transform: scale(1);
		opacity: 1;
	}
	50% {
		transform: scale(1.3);
		opacity: 0.5;
	}
	100% {
		transform: scale(1);
		opacity: 1;
	}
}
.scroll-down-btn>a::after {
	content: "";
	position: absolute;
	width: 115%;
	height: 115%;
	background: rgb(255 78 0 / 30%);
	border-radius: 50%;
	z-index: 0;
	animation: pulse2 1.5s infinite;
}
@keyframes pulse2 {
	0% {
		transform: scale(1);
		opacity: 0.8;
	}
	50% {
		transform: scale(1.5);
		opacity: 0.2;
	}
	100% {
		transform: scale(1);
		opacity: 0.8;
	}
}

/*====== Text Image Button section =========*/
.itb-content-wrapper.image-right {
	flex-direction: row-reverse;
}
.itb-content-wrapper {
	align-items: center;
	gap: 80px;
}
.itb-img-col {
	width: 45%;
	position: relative;
}
.itb-content-col {
	width: 55%;
	display: flex;
	flex-direction: column;
	gap: 30px;
}
.itb-content-wrapper.image-right .itb-img-col {
	text-align: right;
}
.itb-about-img {
	border-radius: 20px;
}
/* home services list*/
.services-home-list-section {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}
.services-home-list-wrapper {
	gap: 50px;
	align-items: center;
}
.services-home-list-wrapper .home-services-img-col {
	width: 55%;
}
.services-home-list-img {
	border-radius: 20px;
}
.services-home-list-wrapper .home-services-content-col {
	width: 45%;
	display: flex;
	flex-direction: column;
	gap: 30px;
}
.services-home-list {
	display: flex;
	align-items: center;
	gap: 20px;
	margin-bottom: 20px;
}
.services-home-list .shl-content {
	line-height: 1.6;
}
/*  featured Case Study  */
.featured-case-studies-wrapper {
	gap: 50px;
	align-items: center;
}
.featured-case-studies-wrapper .fcs-content-col {
	width: 55%;
	display: flex;
	flex-direction: column;
	gap: 30px;
}
.featured-case-studies-wrapper .fcs-img-col {
	width: 45%;
	text-align: right;
}
.featured-case-study-img {
	border-radius: 20px;
}
.case-study-inner-box {
	box-shadow: 0px 4px 15px 0px #0000001A;
	background: #FFFFFF;
	padding: 30px;
	position: relative;
}
.featured-case-studies-wrapper .case-study-inner-box {
	margin-bottom: 20px;
}
.case-study-inner-box h3 {
	font-weight: 500;
	font-size: 32px;
	width: 85%;
}
.case-study-number {
	font-weight: 500;
	font-size: 60px;
	color: rgb(244 108 27 / 40%);
	position: absolute;
	right: 30px;
	top: 20px;
	line-height: 1;
}
.case-study-content p {
	margin: 0;
}
.case-study-content h4 {
	font-weight: 500;
	font-size: 22px;
	line-height: 1.6;
	color: #F46C1B;
	margin: 14px 0 0px;
}
.case-study-content ul {
	padding: 0;
	margin: 0;
	list-style: none;
}
.case-study-content ul li {
	position: relative;
	padding-left: 18px;
}
.case-study-content ul li:before {
	content: "";
	background-image: url("/wp-content/uploads/2025/03/Polygon-1.svg");
	position: absolute;
	left: 0;
	width: 7px;
	height: 9px;
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	top: 10px;
}
/*========= Inner Banner ========*/
.inner-banner-section {
	padding-top: 120px;
	padding-bottom: 90px;
	background-position: center;
	background-size: cover;
	min-height: 50vh;
	display: flex;
	min-width: 100%;
	border-bottom-right-radius: 30px;
	border-bottom-left-radius: 30px;
	position: relative;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.inner-banner-section h1 {
	color: #fff;
}
.inner-banner-section .container {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
	max-width: 962px;
	text-align: center;
}
.banner-sub-title {
	color: #fff;
	text-align: center;
	font-weight: 500;
}
/*=====  Key Achivements =====*/
.key-achievements-section {
	background-position: bottom center;
}
.key-achievements-wrapper {
	align-items: center;
	gap: 60px;
}
.key-achievements-content-col {
	display: flex;
	flex-direction: column;
	gap: 30px;
	width: 50%;
}
.key-achievements-img-col {
	width: 50%;
}
.key-achievements-wrapper ul {
	padding: 0;
	margin: 0;
	list-style: none;
}
.key-achievements-wrapper ul li {
	position: relative;
	padding-left: 30px;
	font-weight: normal;
	font-size: 22px;
	line-height: 1.6;
}
.key-achievements-wrapper ul li:before {
	content: "";
	background-image: url("/wp-content/uploads/2025/03/Polygon-1.svg");
	position: absolute;
	left: 0;
	width: 12px;
	height: 14px;
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	top: 10px;
}
.key-achievements-wrapper ul li:not(:last-child) {
	margin-bottom: 24px;
}
.key-achievements-img {
	border-radius: 20px;
}
/*  our services page */
.head-content-div {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 30px;
	text-align: center;
	max-width: 1010px;
	margin:  0 auto;
}
.services-row-wrapper {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	column-gap: 20px;
	row-gap: 50px;
	padding-top: 50px;
}
.services-card {
	background: #FFFFFF;
	box-shadow: 0px 4px 15px 0px #0000001A;
	border-radius: 10px 10px 20px 20px;
	border: 1px solid #ffffff;
	overflow: hidden;
	transition: 0.5s all ease;
	position: relative;
}
.services-card:hover {
	border-color: #F46C1B;
}
.our-services-img-col {
	line-height: 1;
}
.our-services-content-col {
	padding: 20px 20px;
}
.services-card .text-button {
	font-size: 12px;
	line-height: 1;
	position: absolute;
	bottom: 20px;
}
.our-services-heading-div {
	display: flex;
	align-items: center;
	gap: 15px;
	min-height: 62px;
}
img.service-heading-icon {
	max-width: 40px;
}
.our-services-content-col hr {
	border: 1px solid #F3F3F3;
	margin: 14px 0;
}
.our-services-content-div h4 {
	font-size: 18px;
	font-weight: 500;
}
.our-services-content-div {
	font-size: 14px;
	font-weight: 500;
	color: #484848;
	padding-bottom: 20px;
}
.our-services-content-div p {
	margin-top: 0;
	font-size: 16px;
    font-weight: normal;
}


/*=== case study section ====*/
.case-studies-section {
	padding: 45px 0;
}
.case-studies-section:nth-child(2) {
	padding-top: 80px;
}
.case-studies-section:last-child {
	padding-bottom: 80px;
}
.case-studies-wrapper {
	gap: 80px;
	align-items: center;
}
.case-studies-wrapper .case-study-content-col {
	width: 52%;
}
.case-studies-wrapper .case-study-img-col {
	width: 48%;
	line-height: 1;
}
.case-studies-wrapper.image-right {
	flex-direction: row-reverse;
}
img.case-study-img {
	border-radius: 20px;
}
/*==== contact Us ====*/
.form-wrapper {
	box-shadow: 0px 4px 15px 0px #0000001A;
	background: #FFFFFF;
	border-radius: 10px;
	padding: 30px;
	margin-top:50px;
}
.form-sub-title-list {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 100px;
	margin-top: 20px;
}
.form-sub-title-list a {
	color: #121212;
	position: relative;
	padding-left: 30px;
	font-weight: 500;
	font-size: 20px;
	line-height: 1.6;
}
.form-sub-title-list a:before {
	content: "";
	background-image: url("/wp-content/uploads/2025/03/Polygon-1.svg");
	position: absolute;
	left: 0;
	width: 12px;
	height: 14px;
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	top: 50%;
	transform: translateY(-50%);
}
.spare-parts-wrapper {
	align-items: center;
	justify-content: space-between;
}
.spare-parts-wrapper .form-sub-title {
	padding-left: 20px;
}
.contact-info-wrapper {
	display: flex;
	justify-content: space-between;
	gap: 40px;
	background-color: #FFF7D4;
	border-radius: 15px;
	padding: 40px 40px;
	margin-top: 80px;
}
.cnt-info-card {
	display: flex;
	gap: 15px;
	align-items: center;
	max-width: 37%;
}
.cnt-info-card h3 {
	font-size: 18px;
	font-weight: 500;
}
.cnt-info-link {
	color: #000000;
	display: inline-block;
	line-height: 1.5;
	padding-top: 5px;
	font-size: 16px;
	font-weight: normal;
}
.vertical-divider-line {
	height: auto;
	width: 1px;
	background-color: rgb(244 108 27 / 79%);
}

/*=== Global Presence section ====*/
.interactive-hotspot-map {
	overflow: hidden;
}
#map-container {
	width: 100%;
	height: 500px;
	width: 1100px;
	margin: 0 auto;
	position: relative;
	cursor: grab;
	transform-origin: center;
	transition: transform 0.3s ease;
	overflow: auto;
	scrollbar-width: none;
	-ms-overflow-style: none;
}

#map-container::-webkit-scrollbar {
	display: none; /* For Chrome, Safari, and Opera */
}
#map-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0);
	z-index: 2;
}
#map-wrapper {
	width: 100%;
	height: auto;
	position: absolute;
	transform-origin: center;
	transition: transform 0.1s ease-out;
	cursor: grab;
}
.zoom-controls {
	position: absolute;
	bottom: 10px;
	left: 10px;
	z-index: 10;
}
.zoom-controls button {
	font-size: 23px;
	cursor: pointer;
	width: 32px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--primary-color);
	color: #fff;
	border: 0;
	line-height: 1;
}
.zoom-controls #zoom-out {
	margin-top: 5px;
	font-size: 30px;
}
.interactive-hotspot-map-wrapper {
	position: relative;
	overflow: hidden;
	margin-top: 40px;
}


.zoom-in {
	transform: scale(1.2);
}
.zoom-out {
	transform: scale(1);
}
.map-pin {
	position: absolute;
	cursor: pointer;
	user-select: none;
}
.map-pin .map-pin-img {
	width: 20px;
}
.pin-country-title {
	font-size: 10px;
}
.pin-title {
	gap: 5px;
	display: flex;
	align-items: center;
	z-index: 3;
	position: relative;
}
.pin-country-title {
	user-select: none;
    font-size: 9px;
    font-weight: 500;
    color: #474647;
    background-color: #ddd;
    border-radius: 50px;
    padding: 0px 5px;
    z-index: 9;
}
/* Positioning Logic */
.pin-hover-box.left  { right: 30px; }
.pin-hover-box.right { left: 30px; }
.pin-hover-box.top   { bottom: 30px; }
.pin-hover-box.bottom { top: 30px; }

/* Show on Hover */
/*.map-pin:hover .pin-hover-box {*/
/*	display: block;*/
/*}*/
.pin-hover-box {
	position: absolute;
	display: none;
	background: rgb(255 255 255);
	border-radius: 10px;
	z-index: 10;
	width: 318px;
	padding: 10px;
	border: 1px solid #F46C1B;
	font-size: 10px;
	font-weight: 500;
	color: #484848;
	z-index: 10;
	cursor: auto;
	zoom: 0.8;
}
.pin-hover-box button.close-btn {
	position: absolute;
	top: 0;
	right: 5px;
	border: 0;
	background: transparent;
	padding: 3px;
	color: var(--primary-color);
	cursor: pointer;
	font-size: 20px;
}
.pin-hover-box h4 {
	font-size: 12px;
	font-weight: 500;
	color: #646464;
}
.pin-hover-box ul li {
    font-size: 14px;
}
.pin-hover-box p {
	margin: 0;
}
.pin-hover-box .map-pin-btn {
	font-size: 12px;
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: 10px;
}
.pin-hover-box:after {
	content: "";
	background-image: url(https://adgsdev.wpenginepowered.com//wp-content/uploads/2025/03/pin-hover-arrow-1.svg);
	position: absolute;
	width: 14px;
	height: 10px;
	top: -10px;
	right: 9px;
	background-size: contain;
	background-repeat: no-repeat;
	transform: rotate(0deg);
}
.pin-hover-box.right.bottom:after {
	right: auto;
	left: 9px;
}
.pin-hover-box.top:after {
	transform: rotate(180deg);
	top: auto;
	bottom: -10px;
	left: 9px;
}
.pin-hover-box.left.top:after {
	left: auto;
}

.map-pin h3 {
    color: #000;
    font-weight: 500!important;
	margin-bottom: 0;
	font-size: 20px;
}
.map-pin ul li{
	position: relative;
	color: #000;
	font-weight: normal;
}
.map-pin ul {
    padding: 0 20px;
}
.map-pin li:before {
    content: "";
    background-image: url(/wp-content/uploads/2025/03/Polygon-1.svg);
    position: absolute;
    left: -15px;
    width: 8px;
    height: 17px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    top: 4px;
}
@media screen and (max-width:767px){
	.map-pin li:before {
		content: "";
		background-image: url(/wp-content/uploads/2025/03/Polygon-1.svg);
		position: absolute;
		left: -15px;
		width: 12px;
		height: 14px;
		background-size: contain;
		background-position: center;
		background-repeat: no-repeat;
		top: 4px;
	}
}
/*============== Services Individual page ===============*/
.content-col {
	display: flex;
	flex-direction: column;
	gap: 25px;
}
.single-services-detail .full-width-service-image {
	margin: 50px 0;
	border-radius: 10px;
}
.services-two-rows .content-col {
	width: 50%;
}
.services-two-rows {
	gap: 60px;
	margin-top: 50px;
}
.content-col ul {
	padding: 0;
	margin: 0;
	list-style: none;
}
.content-col ul li {
	position: relative;
	padding-left: 18px;
}
.content-col ul li:before {
	content: "";
	background-image: url("/wp-content/uploads/2025/03/Polygon-1.svg");
	position: absolute;
	left: 0;
	width: 7px;
	height: 9px;
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	top: 10px;
}

.simple-text-inner-content ul {
	column-count: 2;
}
/*=========case studies page ==========*/
.case-studies-grid {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	column-gap: 20px;
	row-gap: 40px;
}
.case-study-item {
	background: #FFFFFF;
	box-shadow: 0px 4px 15px 0px #0000001A;
	border: 1px solid #E2E8F0;
	overflow: hidden;
	transition: 0.5s all ease;
}
.case-study-item .case-study-image img {
	height: 254px;
	object-fit: cover;
}
.case-study-item .case-study-content-div {
	padding: 24px 16px;
	font-size: 14px;
	color: #484848;
}
.case-study-item .case-study-heading {
	border-bottom: 1px solid #F3F3F3;
	padding-bottom: 14px;
	margin-bottom: 14px;
}
.case-study-item .case-study-image {
	line-height: 1;
}
.case-study-item .case-study-content-div h3 {
	color: #121212;
}
.case-study-item .case-study-content-div ul {
	padding: 0 15px;
	margin: 0;
}
.case-study-item .case-study-content-div ul li {
	position: relative;
	padding-left: 18px;
}
.case-study-item .case-study-content-div ul li:before {
	content: "";
	background-image: url("/wp-content/uploads/2025/03/Polygon-1.svg");
	position: absolute;
	left: 0;
	width: 7px;
	height: 9px;
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	top: 6px;
}
.case-study-item .case-study-content-div h4 {
	font-weight: 500;
	font-size: 16px;
	line-height: 1.6;
	color: #212121;
	margin: 14px 0 0px;
}
.case-study-item .case-study-content-div p {
	margin: 0;
}
.case-study-read-more {
	display: flex;
	align-items: center;
	gap: 5px;
	font-weight: 500;
	font-size: 12px;
}
.case-study-btn-tags {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-top: 20px;
}
.case-study-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}
.case-study-tag {
	border-radius: 50px;
	padding: 5px 10px;
	background-color: var(--primary-color);
	font-size: 12px;
	color: #fff;
	line-height: 1.5;
}
.case-study-pagination {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	margin-top: 50px;
}
.case-study-pagination .page-numbers {
	display: flex;
	justify-content: center;
	width: 32px;
	height: 32px;
	border-radius: 8px;
	text-decoration: none;
	text-align: center;
	transition: background 0.3s, color 0.3s;
	border: 1px solid black;
	color: #000;
	align-items: center;
	font-size: 13px;
	line-height: initial;
}
.case-study-pagination .page-numbers.current {
	background: var(--primary-color);
	color: white;
	border-color: var(--primary-color);
}
.case-study-pagination .next.page-numbers, .case-study-pagination .prev.page-numbers {
	font-weight: 500;
	font-size: 15px;
}

/*=====*/
.case-study-item .case-study-content-div ul li {
	padding-left: 0;
}
.case-study-item .case-study-content-div ul li:before {
	display:none;
}
/*
.case-study-overview, .case-study-outcome{
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
} */
.case-study-item .case-study-content-div h3 {
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}
.case-study-item .case-study-heading {
	border-bottom: 1px solid #F3F3F3;
	padding-bottom: 14px;
	margin-bottom: 14px;
	height: 70px;
	display: flex;
	align-items: center;
}
/*=====================================================
              		 Arabic Version
=====================================================*/

/**********************************************************************************************************************
									Media Query
**********************************************************************************************************************/
@media (max-width:1660px) {
	.container {
		max-width: 1200px;
	}
	.hero-heading {
		font-size: 52px;
	}
	.hero-sub-title {
		font-size: 22px;
	}
	.header-menu li a {
		font-size: 14px;
	}
	.scroll-down-btn {
		right: calc((100vw - 1200px) / 2);
	}
	h1 {
		font-size: 48px;
	}
	h2 {
		font-size: 40px;
	}
	h3 {
		font-size: 20px;
	}
	body{
		font-size: 16px;
	}
	.button {
		padding: 16px 35px;
		font-size: 16px;;
	}
	.above-footer-section .above-footer-subtitle {
		font-size: 36px;
		width: 100%;
	}
	.key-achievements-wrapper ul li {
		font-size: 16px;
	}
	.case-study-inner-box h3 {
		font-size: 26px;
	}
	.case-study-number {
		font-size: 50px;
	}
	.case-study-content h4 {
		font-size: 20px;
	}
	.form-sub-title-list a {
		font-size: 16px;
	}
	.cnt-info-card {
		max-width: 40%;
	}
	img.cnt-info-icon {
		max-width: 60px;
	}
	.pin-hover-box {
		width: 340px;
		zoom: 0.7;
	}
	.case-study-item .case-study-image img {
		height: 220px;
	}
	.desktop .header-menu>.menu>li.menu-item>a:after {
		bottom:-2px;
	}
	.main-footer-row {
		gap: 50px;
	}
	.main-footer-row h3 {
		font-size: 22px;
	}
}
@media (max-width:1260px) {
	.desktop .header-menu li a {
		font-size: 12px;
	}
	.scroll-down-btn {
		right: 50px;
		gap: 15px;
		font-size: 12px;
	}
	.scroll-down-btn img {
		width: 50px;
	}
	.scroll-down-btn>a {
		width: 50px;
		height: 50px;
	}
}
@media (max-width:1200px) {
	.site-header.mobile {
		display: block;
	}
	.site-header.desktop {
		display: none;
	}
	h1 {
		font-size: 40px;
	}
	h2 {
		font-size: 32px;
	}
	h3 {
		font-size: 18px;
	}
	.button {
		padding: 10px 14px;
		font-size: 12px;
	}
	.link_button {
		font-size: 12px;
	}
	.hero-section {
		padding-top: 60px;
		padding-bottom: 60px;
		min-height: 60vh;
	}
	.hero-heading {
		font-size: 40px;
	}
	.hero-sub-title {
		font-size: 16px;
	}
	.case-study-inner-box h3 {
		font-size: 20px;
	}
	.case-study-number {
		font-size: 40px;
	}
	.above-footer-section .above-footer-subtitle {
		font-size: 24px;
	}
	.services-home-list-icon svg {
		width: 51px;
		height: 50px;
	}
	.services-home-list .shl-content {
		font-size: 14px;
	}
	.main-footer-row {
		flex-wrap: wrap;
		gap: 30px;
	}
	.footer-about {
		width: 100%;
	}
	.footer-first-col {
		width: 30%;
	}
	.footer-second-col {
		width: 30%;
	}
	.footer-third-col {
		width: 30%;
	}
	.aeroplane-absolute-image {
		max-width: 200px;
		right: -38px;
		bottom: -52px;
	}
	.main-footer-row h3 {
		font-size: 18px;
	}
	.footer-quick-links a {
		font-size: 14px;
	}
	.footer-quick-links {
		gap: 12px;
	}
	.copyright {
		font-size: 12px;
	}
	.privacy-terms-links a {
		font-size: 12px;
	}
	.cnt-info-link {
		font-size: 11px;
	}
	.cnt-info-card h3 {
		font-size: 14px;
	}
	.form-sub-title-list {
		gap: 30px;
	}
	.form-sub-title-list a {
		font-size: 14px;
		padding-left: 20px;
	}
	.spare-parts-wrapper .form-sub-title {
		padding-left: 0px;
	}
	.leadership-col-content {
		padding: 50px 0px 50px 50px;
	}
	.leadership-col-image {
		width: 40%;
	}
	.services-two-rows {
		gap: 30px;
	}

}
@media (max-width:920px) {
	h1 {
		font-size: 34px;
	}
	h2 {
		font-size: 26px;
	}
	h3 {
		font-size: 16px;
	}
	body {
		font-size: 12px;
		line-height: 1.5;
	}
	.hero-heading {
		font-size: 34px;
	}
	.hero-sub-title {
		font-size: 14px;
	}
	.section-padding {
		padding: 40px 0px;
	}
	.key-achievements-wrapper ul li {
		font-size: 14px;
		padding-left: 20px;
	}
	.key-achievements-wrapper ul li:not(:last-child) {
		margin-bottom: 10px;
	}
	.key-achievements-wrapper ul li:before {
		top: 10px;
		width: 9px;
		height: 11px;
	}
	.services-row-wrapper {
		grid-template-columns: 1fr 1fr;
	}
	.case-studies-wrapper {
		gap: 30px;
	}
	.case-study-inner-box h3 {
		font-size: 18px;
	}
	.case-study-number {
		font-size: 30px;
	}
	.case-study-content h4 {
		font-size: 16px;
	}
	.case-study-inner-box {
		padding: 20px;
	}
	.case-studies-section {
		padding: 20px 0;
	}
	.case-studies-section:nth-child(2) {
		padding-top: 50px;
	}
	.case-studies-section:last-child {
		padding-bottom: 50px;
	}
	.contact-info-wrapper {
		flex-direction: column;
		margin-top: 40px;
		gap: 30px;
	}
	.cnt-info-card {
		max-width: 100%;
	}
	.contact-info-wrapper .vertical-divider-line {
		display: none;
	}
	.above-footer-section .above-footer-subtitle {
		font-size: 20px;
	}
	.sign-in-section-footer {
		padding: 40px;
		gap: 15px;
	}
	.head-content-div {
		gap: 15px;
	}
	.heading-divider {
		width: 40px;
		height: 4px;
	}
	.case-studies-grid {
		grid-template-columns: 1fr 1fr;
		row-gap: 30px;
	}
	.case-study-item .case-study-content-div h4 {
		font-size: 14px;
	}
	.case-study-tag {
		padding: 4px 8px;
		font-size: 10px;
	}
	.content-col ul li:before {
		top: 4px;
	}
	.content-col {
		gap: 15px;
	}
	.single-services-detail .full-width-service-image {
		margin: 30px 0;
	}
}
/*mobile*/
@media (max-width:767px) {
	h1 {
		font-size: 26px;
	}
	h2 {
		font-size: 22px;
	}
	h3 {
		font-size: 14px;
	}
	body {
		font-size: 12px;
	}
	.row {
		flex-direction: column;
		gap: 20px;
	}
	.head-content-div {
		gap: 15px;
	}
	.scroll-down-btn {
		right: 20px;
		bottom: 20px;
	}
	.hero-heading {
		font-size: 26px;
	}
	.banner-content-wrapper {
		gap: 15px;
	}
	.itb-content-wrapper.image-right {
		flex-direction: column;
	}
	.itb-content-wrapper.image-right .itb-img-col {
		width: 100%;
		text-align: center;
	}
	.itb-content-col {
		width: 100%;
		gap: 15px;
	}
	.services-home-list-wrapper .home-services-img-col {
		width: 100%;
	}
	.services-home-list-wrapper .home-services-content-col {
		width: 100%;
	}
	.services-home-list-section {
		background-position: right;
	}
	.featured-case-studies-wrapper .fcs-content-col {
		width: 100%;
		gap: 15px;
	}
	.featured-case-studies-wrapper .fcs-img-col {
		width: 100%;
	}
	.featured-case-studies-wrapper .case-study-inner-box {
		margin-bottom: 0;
	}
	.featured-case-studies-wrapper {
		flex-direction: column-reverse;
	}
	.inner-banner-section {
		padding-top: 80px;
		padding-bottom: 50px;
		min-height: 300px;
	}
	.form-sub-title-list {
		flex-direction: column;
		align-items: flex-start;
		gap: 10px;
	}
	.form-sub-title-list a {
		font-size: 12px;
	}
	.spare-parts-wrapper {
		align-items: flex-start;
	}
	.form-wrapper {
		margin-top: 30px;
		padding: 20px;
	}
	.contact-info-wrapper {
		padding: 20px;
	}
	.aeroplane-absolute-image {
		max-width: 100px;
		right: -18px;
		bottom: -25px;
	}
	.footer-about p {
		font-size: 12px;
	}
	.footer-social-icons {
		margin-top: 20px;
	}
	.main-footer-row {
		gap: 30px !important;
		padding: 30px 0;
	}
	.footer-quick-links {
		margin-top: 12px;
	}
	.footer-first-col {
		width: 100%;
	}
	.footer-second-col {
		width: 100%;
	}
	.footer-third-col {
		width: 100%;
	}
	.footer-contact-info a {
		font-size: 12px;
	}
	.footer-contact-info {
		gap: 15px;
		margin-top: 12px;
	}
	.footer-contact-info img {
		width: 15px;
	}
	.copyright {
		font-size: 10px;
	}
	.privacy-terms-links a {
		font-size: 10px;
	}
	.case-studies-wrapper {
		gap: 30px !important;
		flex-direction: column-reverse;
	}
	.case-studies-wrapper.image-right {
		flex-direction: column-reverse;
	}
	.case-studies-wrapper .case-study-img-col{
		width: 100%;
	}
	.case-studies-wrapper .case-study-content-col {
		width: 100%;
	}
	.case-studies-section {
		padding: 10px 0;
	}
	.case-study-number {
		font-size: 20px;
		right: 25px;
	}
	.services-row-wrapper {
		grid-template-columns: 1fr;
	}
	.our-services-content-div {
		font-size: 12px;
	}
	.our-services-content-div h4 {
		font-size: 14px;
		font-weight: 500;
	}
	.our-services-heading-div {
		min-height: 50px;
	}
	.above-footer-section .above-footer-subtitle {
		font-size: 16px;
	}
	.itb-img-col {
		width: 100%;
		gap: 15px;
	}
	.key-achievements-wrapper {
		flex-direction: column-reverse;
	}
	.key-achievements-content-col {
		width: 100%;
		gap: 15px;
	}
	.key-achievements-img-col {
		width: 100%;
	}
	.key-achievements-section {
		background-position: left;
	}
	.interactive-hotspot-map-wrapper {
		overflow: auto;
	}
	.interactive-hotspot-map-wrapper::-webkit-scrollbar {
		height:5px;
	}
	div#map-container {
		min-width: 900px;
		zoom: 0.7;
	}
	.leadership-wrapper {
		padding: 30px;
	}
	.leadership-col-content {
		padding: 0;
		width: 100%;
		gap: 10px;
	}
	.leadership-col-image {
		width: 50%;
	}
	.case-studies-grid {
		grid-template-columns: 1fr;
	}
	.case-study-item .case-study-content-div h4 {
		font-size: 12px;
	}
	.case-study-item .case-study-content-div {
		font-size: 11px;
	}
	.case-study-read-more {
		font-size: 10px;
	}
	.case-study-tag {
		font-size: 8px;
	}
	.services-two-rows .content-col {
		width: 100%;
	}
}


.map-legend ul {
  list-style: none;
  display: flex;
  justify-content: center; /* centers the list horizontally */
  gap: 20px;
  padding: 0;
  margin: 20px auto;
  align-items: center;
}
.map-legend li {
    position: relative;
    padding-left: 20px;
    font-size: 14px;
    color: #222;
    font-weight: 500;
}

.map-legend li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: gray;
}

/* Specific colors for each item */
.map-legend li:nth-child(1)::before { background-color: #E8D6B9; } /* Africa */
.map-legend li:nth-child(2)::before { background-color: #694166; } /* North & South America */
.map-legend li:nth-child(3)::before { background-color: #1A7163; } /* Asia Pacific */
.map-legend li:nth-child(4)::before { background-color: #85A9CE; } /* Europe */
.map-legend li:nth-child(5)::before { background-color: #F29E1F; } /* Middle East */

@media screen and (max-width: 767px){
	.map-legend ul{
		display: block!important;
	}
}