/* ----------------------------------------------------------------------------------------
* ---------------------------------------------------------------------------------------- */
/* INDEX
----------------------------------------------------------------------------------------
01. Global Variables
02. General css
03. Header css
04. Hero css
05. Our Scrolling Ticker css
06. About Us css
07. Our Services css
08. Why Choose Us css
09. What We Do css
10. Company Success css
11. Scrolling Ticker Text css
12. Our Benefits css
13. How It Work css
14. Our Testimonials css
15. Our Pricing css
16. Our FAQs css
17. Our Blog css
18. Footer css
19. About Us Page css
20. Services Page css
21. Service Single css
22. Blog Archive css
23. Blog Single css
24. Projects Page css
25. Project Single css
26. Team Page css
27. Team Single css
28. Pricing Page css
29. Testimonials Page css
30. Image Gallery css
31. Video Gallery css
32. FAQs Page css
33. Contact Us Page css
34. 404 Error Page css
35. Responsive css
-------------------------------------------------------------------------------------- */

/************************************/
/*** 	 01. Global Variables	  ***/
/************************************/

:root {
	--primary-color: #000000;
	--secondary-color: #FAFAFA;
	--text-color: #666666;
	--accent-color: #222222;
	--accent-secondary-color: #ad2025;
	--white-color: #FFFFFF;
	--divider-color: #6666661A;
	--dark-divider-color: #FFFFFF1A;
	--error-color: rgb(230, 87, 87);
	--default-font: "Cairo", sans-serif;
}

/************************************/
/*** 	   02. General css		  ***/
/************************************/

.hero-btn-head {
	position: relative;
	display: inline-block;
}

/* السهم تحت الزر ويتحرك لأعلى وأسفل */
.hero-btn-head::before {
	content: '';
	position: absolute;
	left: 50%;
	/* في المنتصف */
	bottom: -60px;
	/* تحت الزر */
	transform: translateX(-50%) rotate(90deg);
	/* يدور للأسفل */
	background: url('../images/hero-btn-arrow.svg') no-repeat center center;
	background-size: cover;
	width: 55px;
	height: 30px;
	animation: ctaarrowdown 2s infinite linear;
}

@keyframes ctaarrowdown {
	0% {
		transform: translate(-50%, -5px) rotate(270deg);
		opacity: 0.7;
	}

	50% {
		transform: translate(-50%, 10px) rotate(270deg);
		opacity: 1;
	}

	100% {
		transform: translate(-50%, -5px) rotate(270deg);
		opacity: 0.7;
	}
}

.btn-arrow-down {
	position: relative;
	display: inline-block;
	width: 48px;
	height: 48px;
	border: none;
	border-radius: 50%;
	color: #fff;
	background-color: var(--white-color);
	background-image: url('../images/bottom-arrow.svg');
	/* your down arrow icon */
	background-repeat: no-repeat;
	background-position: center;
	background-size: 20px auto;
	cursor: pointer;
	transition: all 0.3s ease-in-out;
}

.btn-arrow-down:hover {
	background-color: var(--secondary-color);
	transform: translateY(3px);
}


/* ===== PAGE HEADER ===== */
.page-header-temp {
	background-color: #c1c1c1;
	color: var(--white-color);
	min-height: 360px;
	font-family: var(--default-font);
	overflow: hidden;
	/* border-bottom-left-radius: 100px; */
}

/* ===== LEFT TEXT CONTENT ===== */
.page-title {
	font-size: 3rem;
	font-weight: 800;
	letter-spacing: 1px;
	text-transform: capitalize;
	color: var(--secondary-color);
	animation: slideInLeft 0.9s ease-out;
}

.underline {
	width: 280px;
	height: 4px;
	background-color: var(--accent-secondary-color);
	border-radius: 2px;
	transition: width 0.4s ease;
	animation: grow 1.2s ease-in-out;
}

.header-content:hover .underline {
	width: 300px;
}

.page-subtitle {
	font-size: 1.1rem;
	color: var(--secondary-color);
	max-width: 450px;
	line-height: 1.6;
	animation: fadeInUp 1.2s ease-in-out;
}

/* ===== DECORATIVE SHAPE ===== */
.decorative-shape {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 10px;
	animation: fadeIn 1.6s ease;
	flex-direction: row-reverse;
}

.decorative-shape .circle {
	width: 14px;
	height: 14px;
	background-color: var(--accent-secondary-color);
	border-radius: 50%;
	box-shadow: 0 0 10px rgba(173, 32, 37, 0.6);
}

.decorative-shape .line {
	width: 120px;
	height: 3px;
	background: linear-gradient(90deg, var(--accent-secondary-color), var(--white-color));
	border-radius: 2px;
}

/* ===== IMAGE SECTION ===== */
.header-image {
	overflow: hidden;
	/* border-top-left-radius: 100px; */
	clip-path: polygon(0% 0, 1% 0, 324% 51%, 0% 100%);
}

.header-image img {
	object-fit: cover;
	transition: transform 0.8s ease;
}

.header-image:hover img {
	transform: scale(1.05);
}

/* Optional dark overlay on image for better text contrast */
.image-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.05));
}

/* ===== ANIMATIONS ===== */
@keyframes slideInLeft {
	from {
		opacity: 0;
		transform: translateX(-40px);
	}

	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@keyframes grow {
	from {
		width: 0;
	}

	to {
		width: 280px;
	}
}

/* ===== RESPONSIVE ===== */
@media (max-width: 767px) {
	.page-header {
		border-bottom-left-radius: 50px;
		padding: 2rem 1rem;
	}

	.page-title {
		font-size: 2rem;
	}

	.page-subtitle {
		font-size: 1rem;
	}

	.underline {
		width: 60px;
	}

	.decorative-shape {
		justify-content: center;
	}

	.header-image {
		display: none;
	}
}


.iti {
	width: 100%;
}

.iti__flag-container {
	position: absolute;
	left: 10px;
	top: 50%;
	transform: translateY(-50%);
}

input[type=tel] {
	padding-left: 90px !important;
	/* مساحة للعلم والكود */
	direction: ltr;
	/* عشان الأرقام تطلع صح */
	text-align: left;
}

/* Go To Top Button */
#goTopBtn {
	position: fixed;
	bottom: 25px;
	right: 25px;
	z-index: 9999;
	background-color: var(--primary-color);
	color: #fff;
	border: none;
	outline: none;
	width: 45px;
	height: 45px;
	border-radius: 50%;
	cursor: pointer;
	/* display: none; */
	/* hidden by default */
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
	transition: all 0.3s ease;
}

#goTopBtn:hover {
	background-color: #3b3b3b;
	transform: scale(1.1);
}

/* Icon inside the button */
#goTopBtn i {
	font-size: 18px;
}

body {
	font-family: var(--default-font);
	font-size: 16px;
	font-weight: 400;
	line-height: 1em;
	color: var(--text-color);
	background-color: var(--white-color);
}

::-webkit-scrollbar-track {
	background-color: var(--primary-color);
	border-left: 1px solid var(--primary-color);
}

::-webkit-scrollbar {
	width: 7px;
	background-color: var(--primary-color);
}

::-webkit-scrollbar-thumb {
	background: var(--accent-secondary-color);
}

::selection {
	color: var(--secondary-color);
	background-color: var(--primary-color);
	filter: invert(1);
}

p {
	line-height: 1.6em;
	margin-bottom: 1.25em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	font-weight: 600;
	line-height: 1.1em;
	color: var(--primary-color);
}

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;
}

html,
body {
	width: 100%;
	overflow-x: clip;
}

.container {
	max-width: 1300px;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
	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-size: 16px;
	font-weight: 700;
	line-height: 1em;
	text-transform: capitalize;
	background: var(--primary-color);
	color: var(--white-color);
	border: none;
	border-radius: 12px;
	padding: 18px 54px 18px 20px;
	overflow: hidden;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.btn-default:hover {
	background: transparent;
}

.btn-default::before {
	content: '';
	position: absolute;
	top: 50%;
	right: 10px;
	width: 34px;
	height: 34px;
	background-color: var(--white-color);
	background-image: url('../images/arrow-primary.svg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 20px auto;
	border-radius: 8px;
	transform: translateY(-50%);
	transition: all 0.4s ease-in-out;
}

.btn-default:hover::before {
	background-color: var(--white-color);
}

.btn-default::after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: 0;
	height: 100%;
	background: var(--primary-color);
	z-index: -1;
	transition: all 0.4s ease-in-out;
}

.btn-default:hover::after {
	right: auto;
	left: 0;
	width: 100%;
}

.btn-default.btn-highlighted {
	background: var(--secondary-color);
	color: var(--primary-color);
	border: 1px solid var(--primary-color);
}

.btn-default.btn-highlighted:hover {
	color: var(--white-color);
}

.btn-default.btn-highlighted::before {
	background-color: var(--primary-color);
	background-image: url('../images/arrow-white.svg');
}

.btn-default.btn-highlighted:hover::before {
	background-color: var(--accent-secondary-color);
}

.btn-default.btn-highlighted::after {
	background-color: var(--primary-color);
}

.readmore-btn {
	position: relative;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.4em;
	color: var(--accent-color);
	text-transform: capitalize;
	display: inline-block;
	padding-right: 30px;
	transition: all 0.3s ease-in-out;
}

.readmore-btn::before {
	content: '';
	position: absolute;
	top: 50%;
	right: 0;
	width: 22px;
	height: 22px;
	background-image: url('../images/arrow-accent.svg');
	background-repeat: no-repeat;
	background-position: center right;
	background-size: cover;
	transform: translate(-3px, -50%);
	transition: all 0.4s ease-in-out;
}

.readmore-btn:hover {
	color: var(--primary-color);
}

.readmore-btn:hover::before {
	filter: brightness(0) invert(0);
	transform: translate(0, -50%);
}

.cb-cursor:before {
	background: var(--accent-secondary-color);
}

.preloader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1000;
	background: var(--secondary-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(--accent-secondary-color) transparent var(--accent-secondary-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);
	}
}

.section-row {
	margin-bottom: 80px;
}

.section-row .section-title {
	margin-bottom: 0;
}

.section-title {
	margin-bottom: 40px;
}

.section-title h3 {
	position: relative;
	display: inline-block;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.4em;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--accent-color);
	padding-right: 15px;
	margin-bottom: 10px;
}

.section-title h3::before {
	content: '';
	position: absolute;
	top: 50%;
	right: 0;
	width: 6px;
	height: 6px;
	background: var(--accent-secondary-color);
	border-radius: 50%;
	transform: translateY(-50%);
}

.section-title h1 {
	font-size: 80px;
	font-weight: 700;
	letter-spacing: -0.02em;
	margin-bottom: 0;
	cursor: none;
}

.section-title h2 {
	font-size: 46px;
	letter-spacing: -0.02em;
	margin-bottom: 0;
	cursor: none;
	line-height: 70px;
}

.section-title h1 span,
.section-title h2 span {
	color: var(--accent-secondary-color);
}

.section-title p {
	margin-top: 20px;
	margin-bottom: 0;
}

.dark-section .section-title h3,
.dark-section .section-title h1,
.dark-section .section-title h2,
.dark-section .section-title p {
	color: var(--primary-color);
}

.dark-section .section-title h1 span,
.dark-section .section-title h2 span {
	color: var(--accent-secondary-color);
}

.section-title-content p {
	margin: 0;
}

.section-btn {
	text-align: left;
}

.section-content-btn .section-btn {
	text-align: left;
	margin-top: 30px;
}

.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-secondary-color);*/
	background: #3b3b3b;
	padding: 14px 0;
}

.topbar-contact-info ul {
	list-style: none;
	padding: 0;
	margin: 0;
	line-height: 1em;
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.topbar-contact-info ul li a {
	color: var(--secondary-color);
	transition: all 0.3s ease-in-out;
}

.topbar-contact-info ul li a:hover {
	color: var(--primary-color);
}

.topbar-contact-info ul li a i {
	font-size: 16px;
	color: inherit;
	margin-left: 8px;
}

.topbar-social-links {
	text-align: left;
}

.topbar-social-links ul {
	list-style: none;
	line-height: 1em;
	padding: 0;
	margin: 0;
}

.topbar-social-links ul li {
	display: inline-block;
	border-left: 1px solid var(--primary-color);
	margin-left: 15px;
	padding-left: 15px;
}

.topbar-social-links ul li:last-child {
	margin-right: 0;
	padding-right: 0;
	border-left: none;
}

.topbar-social-links ul li a {
	display: inline-flex;
	align-items: center;
	font-weight: 500;
	text-transform: capitalize;
	color: var(--secondary-color);
	transition: all 0.3s ease-in-out;
}

.topbar-social-links ul li a:hover {
	color: var(--primary-color);
}

.topbar-social-links ul li a i {
	font-size: 18px;
	color: inherit;
	margin-left: 8px;
}

header.main-header {
	position: sticky !important;
	top: 0 !important;
	background-color: var(--secondary-color);
	border-bottom: 1px solid #66666638;
	z-index: 100;
}

header.main-header .header-sticky {
	position: relative;
	top: 0;
	z-index: 100;
}

header.main-header .header-sticky.hide {
	transform: translateY(-100%);
	transition: transform 0.4s ease-in-out;
}

header.main-header .header-sticky.active {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	border-radius: 0;
	transform: translateY(0);
	background-color: var(--accent-color);
	border-bottom: 1px solid var(--dark-divider-color);
}

.navbar {
	padding: 25px 0;
	align-items: center;
}

.navbar-brand {
	padding: 0;
	margin: 0;
}

.main-menu .nav-menu-wrapper {
	flex: 1;
	text-align: center;
	margin: 0 20px;
}

.main-menu .nav-menu-wrapper>ul {
	align-items: center;
	display: inline-flex;
}

.main-menu ul li {
	margin: 0;
	position: relative;
}

.main-menu ul li.nav-item a {
	font-size: 14px;
	font-weight: 600;
	line-height: normal;
	text-align: right;
	padding: 15px 5px !important;
	color: var(--primary-color);
	text-transform: capitalize;
	transition: all 0.3s ease-in-out;
}

.main-menu ul li.submenu>a:after {
	content: '\f107';
	font-family: 'FontAwesome';
	font-weight: 900;
	font-size: 14px;
	margin-left: 8px;
	margin-top: 2px;
}

.main-menu ul li a:hover,
.main-menu ul li a:focus {
	color: var(--primary-color);
}

.main-menu ul ul {
	visibility: hidden;
	opacity: 0;
	transform: scale(1, 0.8);
	transform-origin: top;
	padding: 0;
	margin: 0;
	list-style: none;
	width: 230px;
	border-radius: 12px;
	position: absolute;
	left: 0;
	top: 100%;
	background: var(--accent-secondary-color);
	text-align: left;
	transition: all 0.3s ease-in-out;
}

.main-menu ul li.submenu:first-child ul {
	width: 230px;
}

.main-menu ul ul ul {
	left: 100%;
	top: 0;
	text-align: left;
}

.main-menu ul li:hover>ul {
	visibility: visible;
	opacity: 1;
	transform: scale(1, 1);
	padding: 5px 0;
}

.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.nav-item a {
	color: var(--white-color);
	padding: 8px 20px !important;
	transition: all 0.3s ease-in-out;
}

.main-menu ul li:hover>ul {
	visibility: visible;
	opacity: 1;
	transform: scaleY(1);
	padding: 5px 0;
}

.main-menu ul ul li a:hover,
.main-menu ul ul li a:focus {
	color: var(--secondary-color);
	/* padding-right: 1rem !important; */
	margin: 8px !important;
	background-color: transparent;
	padding: 8px 20px 8px 23px !important;
}

.main-menu ul li.highlighted-menu {
	display: none;
}

.responsive-menu,
.navbar-toggle {
	display: none;
}

.responsive-menu {
	top: 0;
	position: relative;
}

.slicknav_btn {
	background: var(--accent-secondary-color);
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	margin: 0;
	border-radius: 8px;
	transition: all 0.3s ease-in-out;
}

.slicknav_icon .slicknav_icon-bar {
	display: block;
	width: 100%;
	height: 3px;
	width: 22px;
	background-color: var(--white-color);
	border-radius: 8px;
	margin: 4px auto !important;
	transition: all 0.1s ease-in-out;
}

.slicknav_icon .slicknav_icon-bar:first-child {
	margin-top: 0 !important;
}

.slicknav_icon .slicknav_icon-bar:last-child {
	margin-bottom: 0 !important;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(1) {
	transform: rotate(-45deg) translate(-5px, 5px);
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(2) {
	opacity: 0;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(3) {
	transform: rotate(45deg) translate(-5px, -5px);
}

.slicknav_menu {
	position: absolute;
	width: 100%;
	padding: 0;
	background: var(--accent-secondary-color);
}

.slicknav_menu ul {
	margin: 5px 0;
}

.slicknav_menu ul ul {
	margin: 0;
}

.slicknav_nav .slicknav_row,
.slicknav_nav li a {
	position: relative;
	font-size: 16px;
	font-weight: 600;
	text-transform: capitalize;
	padding: 8px 20px;
	color: var(--primary-color);
	line-height: normal;
	margin: 0;
	border-radius: 0 !important;
	transition: all 0.3s ease-in-out;
}

.slicknav_nav a:hover,
.slicknav_nav a:focus,
.slicknav_nav .slicknav_row:hover {
	background-color: transparent;
	color: var(--accent-color);
}

.slicknav_menu ul ul li a {
	padding: 8px 20px 8px 30px;
}

.slicknav_arrow {
	font-size: 0 !important;
}

.slicknav_arrow:after {
	content: '\f107';
	font-family: 'FontAwesome';
	font-weight: 900;
	font-size: 12px;
	margin-left: 8px;
	color: var(--primary-color);
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translateY(-50%);
	transition: all 0.3s ease-out;
}

.slicknav_open>a .slicknav_arrow:after {
	transform: translateY(-50%) rotate(-180deg);
	color: var(--accent-color);
}

/************************************/
/***        04. Hero css	      ***/
/************************************/

.hero {
	background: var(--secondary-color) url('../images/hero-bg.svg') no-repeat;
	background-position: center center;
	background-size: 100% auto;
	padding: 70px 0 0;
}

.hero.hero-bg-image {
	position: relative;
	background: url('../images/hero-bg.jpg') no-repeat;
	background-position: center center;
	background-size: cover;
	padding: 170px 0;
}

.hero.hero-bg-image::before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: var(--primary-color);
	opacity: 70%;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.hero.hero-bg-image.hero-video .hero-bg-video {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
}

.hero.hero-bg-image.hero-video .hero-bg-video video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero.hero-bg-image.hero-slider-layout {
	background: none;
	padding: 0;
}

.hero.hero-bg-image.hero-slider-layout .hero-slide {
	position: relative;
	padding: 170px 0;
}

.hero.hero-bg-image.hero-slider-layout .hero-slide::before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: var(--text-color);
	opacity: 70%;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.hero.hero-bg-image.hero-slider-layout .hero-slide .hero-slider-image {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
}

.hero.hero-bg-image.hero-slider-layout .hero-slide .hero-slider-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero.hero-bg-image.hero-slider-layout .hero-pagination {
	position: absolute;
	bottom: 50px;
	text-align: center;
	z-index: 2;
}

.hero.hero-bg-image.hero-slider-layout .hero-pagination .swiper-pagination-bullet {
	width: 12px;
	height: 12px;
	background: var(--dark-divider-color);
	opacity: 1;
	transition: all 0.3s ease-in-out;
	margin: 0 5px;
}

.hero.hero-bg-image.hero-slider-layout .hero-pagination .swiper-pagination-bullet-active {
	background-color: var(--accent-color);
}

.hero-content {
	position: relative;
	text-align: center;
	margin-bottom: 30px;
	z-index: 2;
}

.hero.hero-bg-image .hero-content {
	margin-bottom: 0;
}

.hero-body {
	width: 100%;
	max-width: 80%;
	margin: 0 auto;
	margin-bottom: 60px;
}

.hero-body ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 20px 40px;
	justify-content: center;
}

.hero-body ul li {
	position: relative;
	color: var(--primary-color);
	line-height: 1.5em;
	padding-right: 30px;
}

.hero-body ul li:before {
	content: '\f058';
	position: absolute;
	font-family: 'Font Awesome 6 Free';
	font-weight: 900;
	font-size: 20px;
	color: #3b3b3b;
	top: 0px;
	right: 0;
}

.hero-btn {
	position: relative;
	display: inline-block;
}

.hero-btn::before {
	content: '';
	position: absolute;
	right: -110px;
	top: -20px;
	background: url('../images/hero-btn-arrow.svg') no-repeat;
	background-position: center center;
	background-size: cover;
	width: 100px;
	height: 70px;
	animation: ctaarrow 3s infinite linear;
}

@keyframes ctaarrow {
	50% {
		right: -140px;
	}
}

.hero-image {
	text-align: center;
}

.hero-image img {
	width: 100%;
	max-width: 80%;
	aspect-ratio: 1 / 0.66;
	object-fit: cover;
}

.hero-content {}

.hero-content .section-title h3 {
	font-size: 24px;
}

.hero-content .section-title h1 {
	font-size: 60px;
	line-height: 1.5em;
}




/************************************/
/*** 05. Our Scrolling Ticker css ***/
/************************************/

.our-scrolling-ticker {
	background: #3b3b3b;
	padding: 25px 0;
}

.scrolling-ticker-box {
	--gap: 80px;
	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 30s linear infinite;
}

@keyframes scroll {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(calc(-100% - var(--gap)));
	}
}

.scrolling-content img {
	width: 100%;
	filter: brightness(0) invert(1);
	max-width: 160px;
	height: 50px;
}

/************************************/
/*** 	   06. About Us css 	  ***/
/************************************/

.about-us {
	padding: 100px 0;
}

.about-us-images {
	display: flex;
	flex-wrap: wrap;
	gap: 0 10px;
}

.about-image-box-1 {
	width: calc(39% - 5px);
}

.about-image figure {
	display: block;
	border-radius: 20px;
}

.about-image img {
	width: 100%;
	aspect-ratio: 1 / 0.96;
	object-fit: cover;
	border-radius: 20px;
}

.successful-circle-img {
	margin-bottom: 20px;
	text-align: center;
}

.successful-circle-img img {
	width: 100%;
	max-width: 170px;
	border-radius: 50%;
	animation: infiniterotate 20s infinite linear;
}

@keyframes infiniterotate {
	to {
		transform: rotate(360deg);
	}
}

.about-image-box-2 {
	width: calc(61% - 5px);
	text-align: right;
}

.about-image-box-2 .about-image img {
	aspect-ratio: 1 / 1.349;
}

.about-image-box-3 {
	display: flex;
	align-items: end;
	gap: 10px;
	margin-top: -80px;
	margin-left: -10px;
}

.about-image-box-3 .about-image {
	position: relative;
	width: 100%;
	max-width: 407px;
	z-index: 1;
	overflow: hidden;
}

.about-image-box-3 .about-image figure {
	border: 10px solid var(--white-color);
	border-radius: 30px;
}

.about-image-box-3 .about-image img {
	aspect-ratio: 1 / 0.49;
}

.years-experience-box {
	position: relative;
	width: 100%;
	max-width: 200px;
	display: inline-flex;
	gap: 10px;
	justify-content: space-between;
	align-items: center;
	text-align: left;
	background-color: var(--accent-secondary-color);
	border-radius: 12px;
	padding: 20px;
	margin: 20px 0;
	overflow: hidden;
}

.years-experience-box:before {
	content: '';
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 0;
	background: var(--accent-color);
	z-index: 0;
	transition: all 0.4s ease-in-out;
}

.years-experience-box:hover::before {
	height: 100%;
}

.years-experience-box h2,
.years-experience-box p {
	position: relative;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.years-experience-box h2 {
	font-size: 44px;
	font-weight: 600;
	width: calc(40% - 5px);
}

.years-experience-box p {
	width: calc(60% - 5px);
	margin-bottom: 0;
}

.years-experience-box:hover h2,
.years-experience-box:hover p {
	color: var(--white-color);
}

.about-us-content {
	margin-left: 20px;
}

.about-body-item {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 40px;
}

.about-body-item:last-child {
	margin-bottom: 0;
}

.about-body-item .icon-box {
	position: relative;
	height: 50px;
	width: 50px;
	background-color: var(--secondary-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 20px;
	z-index: 1;
}

.about-body-item .icon-box:before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: var(--accent-color);
	border-radius: 50%;
	height: 100%;
	width: 100%;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

.about-body-item:hover .icon-box::before {
	transform: scale(1);
}

.about-body-item .icon-box img {
	position: relative;
	width: 100%;
	max-width: 28px;
	transition: all 0.3s ease-in-out;
	z-index: 1;
}

.about-body-item:hover .icon-box img {
	filter: brightness(0) invert(1);
}

.about-body-item-content {
	position: relative;
	width: calc(100% - 70px);
	z-index: 1;
}

.about-body-item-content h3 {
	font-size: 20px;
	margin-bottom: 10px;
}

.about-body-item-content p {
	margin: 0;
}

.about-btn {
	margin-top: 40px;
}

/************************************/
/*** 	  07. Our Services css	  ***/
/************************************/

.our-services {
	background: var(--secondary-color) url('../images/service-bg.svg') no-repeat;
	background-size: 100% auto;
	background-position: center center;
	padding: 100px 0;
}

.service-item {
	position: relative;
	background-color: var(--white-color);
	border: 1px solid var(--divider-color);
	border-radius: 20px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	padding: 30px;
	overflow: hidden;
}

.service-item::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--accent-color);
	border-radius: 500px 500px 0 0;
	height: 0;
	width: 100%;
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

.service-item.active::after,
.service-item:hover::after {
	height: 100%;
	border-radius: 0;
}

.service-item .icon-box {
	position: relative;
	height: 50px;
	width: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--secondary-color);
	border-radius: 50%;
	margin-bottom: 40px;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.service-item .icon-box img {
	width: 100%;
	max-width: 28px;
}

.service-item-content {
	position: relative;
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 20px;
	padding-bottom: 20px;
	transition: all 0.3s ease-in-out;
	z-index: 1;
}

.service-item.active .service-item-content,
.service-item:hover .service-item-content {
	border-bottom-color: var(--dark-divider-color);
}

.service-item-content h3 {
	font-size: 20px;
	margin-bottom: 15px;
	transition: all 0.3s ease-in-out;
}

.service-item-content h3 a {
	color: inherit;
}

.service-item-content p {
	margin-bottom: 0;
	transition: all 0.3s ease-in-out;
}

.service-readmore-btn {
	position: relative;
	z-index: 1;
}

.service-item.active .service-item-content h3,
.service-item:hover .service-item-content h3,
.service-item.active .service-item-content p,
.service-item:hover .service-item-content p,
.service-item.active .service-readmore-btn .readmore-btn,
.service-item:hover .service-readmore-btn .readmore-btn {
	color: var(--white-color);
}

.service-item.active .readmore-btn::before,
.service-item:hover .readmore-btn::before {
	filter: brightness(0) invert(1);
}

.section-footer-text {
	margin-top: 30px;
	text-align: center;
}

.section-footer-text p {
	font-size: 18px;
	margin-bottom: 0;
}

.section-footer-text span {
	font-size: 16px;
	font-weight: 700;
	text-transform: capitalize;
	color: var(--white-color);
	background: var(--accent-color);
	padding: 4px 10px;
	border-radius: 4px;
	margin-right: 10px;
}

.section-footer-text p a {
	font-weight: 600;
	text-transform: capitalize;
	text-decoration: underline;
	text-underline-offset: 3px;
	color: var(--accent-color);
	transition: all 0.3s ease-in-out;
}

.section-footer-text p a:hover {
	color: var(--primary-color);
}

/************************************/
/*** 	 08. Why Choose us css	  ***/
/************************************/

.why-choose-us {
	padding: 100px 0;
}

.why-choose-content {
	margin-right: 15px;
}

.why-choose-list ul {
	position: relative;
	display: flex;
	gap: 20px 30px;
	flex-wrap: wrap;
	list-style: none;
	margin: 0;
	padding: 0;
}

.why-choose-list ul li {
	position: relative;
	width: calc(50% - 15px);
	line-height: 1.5em;
	text-transform: capitalize;
	padding-right: 30px;
}

.why-choose-list ul li::before {
	content: '\f058';
	position: absolute;
	font-family: 'FontAwesome';
	font-weight: 900;
	right: 0;
	top: 0;
	font-size: 20px;
	color: var(--accent-color);
}

.why-choose-image {
	position: relative;
}

.why-choose-image figure {
	display: block;
	border-radius: 20px;
}

.why-choose-image figure img {
	width: 100%;
	aspect-ratio: 1 / 0.68;
	object-fit: cover;
	filter: brightness(70%);
	border-radius: 20px;
}

.chairman figure img {
	aspect-ratio: 1;
}

.video-play-button {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 1;
}

.video-play-button a {
	display: block;
	background-color: var(--accent-secondary-color);
	border-radius: 50%;
	width: 70px;
	height: 70px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: none;
}

.video-play-button i {
	font-size: 30px;
	margin-left: 3px;
	color: var(--white-color);
}

.video-play-button a:before {
	content: '';
	position: absolute;
	top: -30%;
	left: -30%;
	width: 160%;
	height: 160%;
	border: 50px solid var(--white-color);
	opacity: 40%;
	border-radius: 50%;
	transform: scale(0.6);
	z-index: -1;
	animation: border-zooming 1.2s infinite linear;
}

.video-play-button a:after {
	content: '';
	position: absolute;
	top: -30%;
	left: -30%;
	width: 160%;
	height: 160%;
	border: 50px solid var(--white-color);
	opacity: 40%;
	border-radius: 50%;
	transform: scale(0.6);
	z-index: -1;
	animation: border-zooming 1.2s infinite linear;
	animation-delay: .3s;
}

@keyframes border-zooming {
	100% {
		transform: scale(1);
		opacity: 0;
	}
}

.why-choose-item-list {
	display: flex;
	gap: 30px 80px;
	flex-wrap: wrap;
	margin-top: 80px;
}

.why-choose-item {
	position: relative;
	width: calc(25% - 60px);
}

.why-choose-item::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	right: -40px;
	background-color: var(--divider-color);
	height: 100%;
	width: 1px;
}

/*.why-choose-item:nth-child(4n + 4):before,*/
/*.why-choose-item:last-child:before{*/
/*	display: none;*/
/*}*/

.why-choose-item .icon-box {
	position: relative;
	height: 50px;
	width: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--secondary-color);
	border-radius: 50%;
	margin-bottom: 40px;
}

.why-choose-item .icon-box:before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: var(--accent-color);
	border-radius: 50%;
	height: 100%;
	width: 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: 28px;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.why-choose-item:hover .icon-box img {
	filter: brightness(0) invert(1);
}

.why-choose-item-content h3 {
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 15px;
}

.why-choose-item-content p {
	margin-bottom: 0;
}

/************************************/
/*** 	  09. What We Do css 	  ***/
/************************************/

.what-we-do .container-fluid {
	padding: 0;
}

.what-we-do-image {
	height: 100%;
}

.what-we-do-image figure {
	display: block;
	height: 100%;
}

.what-we-do-image img {
	width: 100%;
	height: 100%;
	aspect-ratio: 1 / 0.8;
	object-fit: cover;
}

.what-we-do-content {
	background-color: var(--accent-color);
	height: 100%;
	align-content: center;
	padding: 100px 5.208vw;
}

.what-do-body-list {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.what-do-body-item {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	width: calc(50% - 15px);
}

.what-do-body-item .icon-box {
	position: relative;
	height: 50px;
	width: 50px;
	background-color: var(--dark-divider-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-left: 20px;
	z-index: 1;
}

.what-do-body-item .icon-box:before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: var(--accent-secondary-color);
	border-radius: 50%;
	height: 100%;
	width: 100%;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

.what-do-body-item:hover .icon-box::before {
	transform: scale(1);
}

.what-do-body-item .icon-box img {
	position: relative;
	width: 100%;
	max-width: 28px;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.what-do-body-item:hover .icon-box img {
	filter: brightness(0) invert(0);
}

.what-do-body-content {
	position: relative;
	width: calc(100% - 70px);
	z-index: 1;
}

.what-do-body-content h3 {
	font-size: 20px;
	line-height: 1.3em;
	text-transform: capitalize;
	color: var(--white-color);
}

.what-we-do-footer {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px;
	border-top: 1px solid var(--dark-divider-color);
	margin-top: 50px;
	padding-top: 50px;
}

.what-we-do-list {
	width: calc(100% - 180px);
}

.what-we-do-list ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.what-we-do-list ul li {
	position: relative;
	line-height: 1.5em;
	color: var(--white-color);
	text-transform: capitalize;
	padding-right: 30px;
	margin-bottom: 25px;
}

.what-we-do-list ul li:last-child {
	margin-bottom: 0;
}

.what-we-do-list ul li::before {
	content: '\f058';
	position: absolute;
	font-family: 'FontAwesome';
	font-weight: 900;
	right: 0;
	top: 0;
	font-size: 20px;
	color: var(--accent-secondary-color);
}

.what-we-do-circle a {
	border-radius: 50%;
	display: block;
}

.what-we-do-circle img {
	width: 100%;
	max-width: 160px;
	border-radius: 50%;
	animation: infiniterotate 20s infinite linear;
}

/************************************/
/*** 	10. Company Success css	  ***/
/************************************/

.company-success {
	padding: 100px 0 70px;
}

.company-success-item {
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.company-success-header {
	display: flex;
	align-items: center;
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 30px;
	padding-bottom: 30px;
}

.company-success-header .icon-box {
	position: relative;
	height: 50px;
	width: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--accent-color);
	border-radius: 50%;
	margin-right: 15px;
	transition: all 0.6s ease-in-out;
}

.company-success-item:hover .company-success-header .icon-box {
	background: transparent;
}

.company-success-header .icon-box:before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: var(--accent-secondary-color);
	border-radius: 50%;
	height: 100%;
	width: 100%;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

.company-success-item:hover .company-success-header .icon-box::before {
	transform: scale(1);
}

.company-success-header .icon-box img {
	position: relative;
	width: 100%;
	max-width: 28px;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.company-success-item:hover .company-success-header .icon-box img {
	filter: brightness(0) invert(0);
}

.company-success-title {
	width: calc(100% - 65px);
}

.company-success-title h3 {
	font-size: 20px;
}

.company-success-content h2 {
	font-size: 60px;
	margin-bottom: 10px;
}

.company-success-content p {
	margin-bottom: 0;
}

/*************************************/
/*** 11. Scrolling Ticker Text css ***/
/*************************************/

.scrolling-ticker-text {
	margin-bottom: -10px;
}

.scrolling-ticker-text-box {
	--gap: 40px;
	display: flex;
	overflow: hidden;
	user-select: none;
	gap: var(--gap);
	align-items: center;
}

.scrolling-ticker-text-content {
	flex-shrink: 0;
	display: flex;
	gap: var(--gap);
	min-width: 100%;
	animation: scroll 70s linear infinite;
}

.scrolling-ticker-text-content span {
	display: flex;
	align-items: center;
	text-transform: uppercase;
	font-size: 80px;
	font-weight: 600;
	line-height: 100px;
	letter-spacing: -0.02em;
	color: var(--white-color);
	background: var(--text-color);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-stroke: 2px transparent;
}

.scrolling-ticker-text-content span img {
	width: 40px;
	margin-left: 40px;
}

/************************************/
/*** 	 12. Our Benefits css	  ***/
/************************************/

.our-benefits {
	background: var(--secondary-color) url('../images/benefits-bg.svg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 100% auto;
	padding: 100px 0 70px;
}

.benefits-content {
	margin-right: 20px;
}

.benefits-body {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin-bottom: 30px;
}

.benefits-body-item {
	width: calc(50% - 15px);
	background: var(--white-color);
	border: 1px solid var(--divider-color);
	border-radius: 20px;
	padding: 20px;
}

.benefits-body-item h3 {
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 15px;
}

.benefits-body-item p {
	margin-bottom: 0;
}

.benefits-body-list {
	width: 100%;
}

.benefits-body-list ul {
	position: relative;
	display: flex;
	gap: 20px 30px;
	flex-wrap: wrap;
	list-style: none;
	margin: 0;
	padding: 0;
}

.benefits-body-list ul li {
	position: relative;
	width: calc(50% - 15px);
	line-height: 1.5em;
	text-transform: capitalize;
	padding-left: 30px;
}

.benefits-body-list ul li::before {
	content: '\f058';
	position: absolute;
	font-family: 'FontAwesome';
	font-weight: 900;
	left: 0;
	top: 0;
	font-size: 20px;
	color: var(--accent-color);
}

.benefits-images {
	display: flex;
	flex-wrap: wrap;
	justify-content: end;
}

.benefit-image-1 {
	position: relative;
	width: 100%;
	margin-right: 207px;
}

.benefit-image figure {
	display: block;
	border-radius: 20px;
}

.benefit-image img {
	width: 100%;
	aspect-ratio: 1 / 0.775;
	object-fit: cover;
	border-radius: 20px;
}

.benefit-image-circle {
	position: absolute;
	right: 0;
	top: 50px;
	transform: translateX(50%);
}

.benefit-image-circle a {
	display: block;
	border-radius: 50%;
}

.benefit-image-circle img {
	width: 100%;
	max-width: 140px;
	border-radius: 50%;
	animation: infiniterotate 20s infinite linear;
}

.benefit-image-2 {
	position: relative;
	margin-top: -90px;
	z-index: 1;
}

.benefit-image-2 .benefit-image {
	width: 100%;
	max-width: 544px;
	border: 10px solid var(--secondary-color);
	border-radius: 30px;
}

.benefit-image-2 .benefit-image img {
	aspect-ratio: 1 / 0.611;
}

.benefit-project-info {
	position: absolute;
	bottom: 80px;
	left: -75px;
	width: 100%;
	max-width: 235px;
	display: flex;
	align-items: center;
	background: var(--white-color);
	box-shadow: 0px 0px 20px 0px #0000001A;
	border: 1px solid var(--divider-color);
	border-radius: 20px;
	padding: 18px;
	animation: infiniteboxmove 2.5s infinite linear alternate;
	overflow: hidden;
	z-index: 1;
}

@keyframes infiniteboxmove {
	50% {
		left: -30px;
	}
}

.benefit-project-info::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--accent-secondary-color);
	height: 0;
	width: 100%;
	transition: all 0.4s ease-in-out;
	z-index: -1;
}

.benefit-project-info:hover::after {
	height: 100%;
}

.benefit-project-info .icon-box {
	width: 50px;
	height: 50px;
	background-color: var(--accent-color);
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	margin-right: 15px;
	transition: all 0.4s ease-in-out;
}

.benefit-project-info:hover .icon-box {
	background: var(--primary-color);
}

.benefit-project-info .icon-box img {
	max-width: 25px;
}

.benefit-project-content {
	width: calc(100% - 65px);
}

.benefit-project-content h3 {
	font-size: 22px;
	color: var(--primary-color);
	margin-bottom: 5px;
}

.benefit-project-content p {
	color: var(--dark-color);
	margin-bottom: 0;
	transition: all 0.4s ease-in-out;
}

.benefit-project-info:hover .benefit-project-content p {
	color: var(--primary-color);
}

/************************************/
/*** 	 13. How It Work css	  ***/
/************************************/

.how-it-work {
	padding: 100px 0;
}

.how-work-content {
	position: sticky;
	margin-right: 20px;
	top: 30px;
}

.work-process-item {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 30px;
	border: 1px solid var(--divider-color);
	padding: 30px;
	border-radius: 20px;
	margin-bottom: 40px;
}

.work-process-item:last-child {
	margin-bottom: 0;
}

.work-process-content {
	width: calc(51% - 15px);
}

.work-process-content h3 {
	font-size: 14px;
	font-weight: 500;
	color: var(--accent-color);
	text-transform: uppercase;
	display: inline-block;
	background: var(--secondary-color);
	border-radius: 10px;
	padding: 10px 20px;
	margin-bottom: 20px;
	transition: all 0.3s ease-in-out;
}

.work-process-item:hover .work-process-content h3 {
	background: var(--accent-secondary-color);
}

.work-process-content h2 {
	font-size: 20px;
	margin-bottom: 15px;
}

.work-process-content p {
	margin-bottom: 0;
}

.work-process-image {
	width: calc(49% - 15px);
}

.work-process-image figure {
	display: block;
	border-radius: 20px;
}

.work-process-image img {
	width: 100%;
	aspect-ratio: 1 / 0.775;
	object-fit: cover;
	border-radius: 20px;
	transition: all 0.4s ease-in-out;
}

.work-process-item:hover .work-process-image img {
	transform: scale(1.1);
}

/************************************/
/***   14. Our Testimonials css   ***/
/************************************/

.our-testimonials {
	background: url('../images/testimonials-bg.png'), var(--accent-color);
	background-repeat: repeat-x;
	background-size: cover;
	animation: testimonialbgmove 60s infinite linear;
	padding: 100px 0;
}

@keyframes testimonialbgmove {
	from {
		background-position: right center;
	}

	to {
		background-position: right 200vw center;
	}
}

.testimonial-slider .swiper-wrapper {
	cursor: none;
}

.testimonial-rating {
	margin-bottom: 20px;
}

.testimonial-rating i {
	font-size: 18px;
	color: var(--accent-secondary-color);
}

.testimonial-content {
	margin-bottom: 40px;
}

.testimonial-content p {
	color: var(--white-color);
	font-size: 20px;
	margin: 0;
}

.testimonial-author {
	display: flex;
	align-items: center;
}

.author-image {
	position: relative;
	margin-left: 15px;
}

.author-image figure {
	display: block;
	border-radius: 50%;
}

.author-image figure img {
	width: 100%;
	max-width: 60px;
	border-radius: 50%;
}

.testimonial-quote {
	position: absolute;
	width: 16px;
	height: 16px;
	background-color: var(--accent-secondary-color);
	border: 1px solid var(--accent-color);
	border-radius: 50%;
	right: 0;
	bottom: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.testimonial-quote img {
	width: 100%;
	max-width: 10px;
}

.author-content {
	width: calc(100% - 75px);
}

.author-content h3 {
	font-size: 20px;
	margin-bottom: 5px;
	color: var(--white-color);
	text-transform: capitalize;
}

.author-content p {
	color: var(--white-color);
	text-transform: capitalize;
	margin: 0;
}

.testimonial-pagination {
	position: absolute;
	bottom: 0;
	right: 0;
	display: flex;
	align-items: center;
	justify-content: left;
	z-index: 2;
}

.testimonial-pagination .swiper-pagination-bullet {
	height: 14px;
	width: 14px;
	background: var(--dark-divider-color);
	border-radius: 50%;
	opacity: 1;
	margin: 0 3px;
	transition: all 0.4s ease-in-out;
}

.testimonial-pagination .swiper-pagination-bullet-active {
	background: var(--accent-secondary-color);
	border-radius: 50%;
}

.testimonials-counter-list {
	display: flex;
	flex-wrap: wrap;
	gap: 20px 30px;
	border-top: 1px solid var(--dark-divider-color);
	margin-top: 80px;
	padding-top: 80px;
}

.testimonials-counter-item {
	width: calc(25% - 22.5px);
	display: flex;
	align-items: center;
}

.testimonials-counter-item h2 {
	/*width: 60%;*/
	color: var(--white-color);
	font-size: 60px;
	margin-left: 20px;
}

.testimonials-counter-item p {
	color: var(--white-color);
	text-transform: capitalize;
	margin: 0;
}


.services-pagination {
	position: absolute;
	bottom: 0 !important;
	right: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 2;
}

.services-pagination .swiper-pagination-bullet {
	height: 14px;
	width: 14px;
	/*background: var(--dark-divider-color);*/
	border-radius: 50%;
	opacity: 1;
	margin: 0 3px;
	transition: all 0.4s ease-in-out;
}

.services-pagination .swiper-pagination-bullet-active {
	background: var(--accent-secondary-color);
	border-radius: 50%;
}

/************************************/
/*** 	 15. Our Pricing css	  ***/
/************************************/

.our-pricing {
	padding: 100px 0;
}

.pricing-item {
	height: calc(100% - 30px);
	background: var(--secondary-color);
	border-radius: 20px;
	margin-bottom: 30px;
	padding: 40px;
}

.pricing-header {
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 30px;
	padding-bottom: 30px;
}

.pricing-header img {
	width: 100%;
	max-width: 50px;
	margin-bottom: 30px;
}

.pricing-header h3 {
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 15px;
}

.pricing-header p {
	margin-bottom: 30px;
}

.pricing-header h2 {
	font-size: 46px;
	color: var(--accent-color);
}

.pricing-header sub {
	font-size: 16px;
	font-weight: 400;
	text-transform: capitalize;
	color: var(--text-color);
	bottom: 0;
}

.pricing-body {
	margin-bottom: 30px;
}

.pricing-body ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.pricing-body ul li {
	position: relative;
	line-height: 1.5em;
	text-transform: capitalize;
	padding-left: 30px;
	margin-bottom: 15px;
}

.pricing-body ul li:last-child {
	margin-bottom: 0;
}

.pricing-body ul li::before {
	content: '\f058';
	position: absolute;
	font-family: 'FontAwesome';
	font-weight: 900;
	left: 0;
	top: 0;
	font-size: 18px;
	color: var(--accent-color);
}

.pricing-footer .btn-default {
	padding: 18px 20px;
	display: block;
	text-align: center;
}

.pricing-footer .btn-default::before {
	display: none;
}

.pricing-item.highlighted-box {
	background: var(--accent-color);
}

.pricing-item.highlighted-box .pricing-header {
	border-bottom-color: var(--dark-divider-color);
}

.pricing-item.highlighted-box .pricing-header img {
	filter: brightness(0) invert(1);
}

.pricing-item.highlighted-box .pricing-header h3,
.pricing-item.highlighted-box .pricing-header p,
.pricing-item.highlighted-box .pricing-header h2,
.pricing-item.highlighted-box .pricing-header h2 sub,
.pricing-item.highlighted-box .pricing-body ul li {
	color: var(--white-color);
}

.pricing-item.highlighted-box .pricing-body ul li::before {
	color: var(--accent-secondary-color);
}

.pricing-benefit-list {
	margin-top: 30px;
}

.pricing-benefit-list ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px 40px;
}

.pricing-benefit-list ul li {
	color: var(--primary-color);
	display: inline-flex;
	align-items: center;
}

.pricing-benefit-list ul li img {
	max-width: 20px;
	margin-right: 15px;
}

/************************************/
/*** 	  16. Our Faqs css  	  ***/
/************************************/

.our-faqs {
	padding: 100px 0;
	background: url('../images/faqs-bg.svg'), var(--secondary-color);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 100% auto;
}

.faqs-image {
	position: relative;
	padding: 10px 35px 0 0;
	margin-right: 20px;
}

.faqs-img figure {
	display: block;
	border-radius: 20px;
}

.faqs-img img {
	width: 100%;
	aspect-ratio: 1 / 1.034;
	object-fit: cover;
	border-radius: 20px;
}

.faq-contact-circle {
	position: absolute;
	top: 0;
	right: 0;
	border: 10px solid var(--secondary-color);
	border-radius: 50%;
	overflow: hidden;
	z-index: 1;
}

.faq-contact-circle a {
	display: block;
	border-radius: 50%;
}

.faq-contact-circle img {
	width: 100%;
	max-width: 160px;
	animation: infiniterotate 20s infinite linear;
}

.faqs-cta-box {
	width: 260px;
	position: absolute;
	display: flex;
	align-items: center;
	bottom: 20px;
	left: 20px;
	background-color: var(--accent-secondary-color);
	border-radius: 20px;
	padding: 20px;
	overflow: hidden;
	z-index: 1;
}

.faqs-cta-box:before {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 0;
	background: var(--accent-color);
	z-index: 0;
	transition: all 0.4s ease-in-out;
}

.faqs-cta-box:hover:before {
	height: 100%;
}

.faqs-cta-box .icon-box {
	position: relative;
	margin-left: 15px;
	z-index: 1;
}

.faqs-cta-box .icon-box img {
	width: 100%;
	filter: brightness(0) invert(1);
	max-width: 40px;
	transition: all 0.3s ease-in-out;
}

.faqs-cta-box:hover .icon-box img {
	filter: brightness(0) invert(1);
}

.faqs-cta-box-content {
	position: relative;
	width: calc(100% - 55px);
	z-index: 1;
}

.faqs-cta-box-content h3 {
	font-size: 16px;
	line-height: 1.3em;
	text-transform: capitalize;
	color: var(--white-color);
	transition: all 0.4s ease-in-out;
}

.faqs-cta-box:hover .faqs-cta-box-content h3 {
	color: var(--white-color);
}

.faq-accordion .accordion-item {
	position: relative;
	border: 1px solid var(--divider-color);
	background: var(--white-color);
	border-radius: 10px;
	margin-bottom: 25px;
	padding: 0;
	transition: all 0.3s ease-in-out;
	overflow: hidden;
}

.faq-accordion .accordion-item:last-child {
	margin-bottom: 0;
}

.faq-accordion .accordion-header .accordion-button {
	font-size: 20px;
	font-weight: 600;
	line-height: 1.4em;
	background: var(--accent-color);
	color: var(--white-color);
	padding: 20px 60px 20px 30px;
	transition: all 0.3s ease-in-out;
}

.faq-accordion .accordion-header .accordion-button.collapsed {
	color: var(--primary-color);
	background: transparent;
}

.faq-accordion .accordion-button:not(.collapsed) {
	padding-bottom: 14px;
}

.faq-accordion .accordion-item .accordion-button::after,
.faq-accordion .accordion-item .accordion-button.collapsed::after {
	content: '';
	position: absolute;
	right: 30px;
	top: 22px;
	transform: rotate(-90deg);
	height: 24px;
	width: 24px;
	background-color: var(--accent-secondary-color);
	background-image: url('../images/arrow-primary.svg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 16px auto;
	border-radius: 50%;
	transition: all 0.4S ease-in-out;
}

.faq-accordion .accordion-item .accordion-button.collapsed::after {
	background-color: var(--accent-color);
	background-image: url('../images/arrow-white.svg');
	transform: rotate(90deg);
}

.faq-accordion .accordion-item .accordion-body {
	background: var(--accent-color);
	border-top: 1px solid var(--dark-divider-color);
	padding: 14px 60px 30px 30px;
}

.faq-accordion .accordion-item .accordion-body p {
	color: var(--white-color);
	margin: 0;
}

/************************************/
/*** 	   17. Our Blog css 	  ***/
/************************************/

.our-blog {
	padding: 100px 0 70px;
}

.post-item {
	border: 1px solid var(--divider-color);
	border-radius: 20px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	overflow: hidden;
}

.post-featured-image a {
	display: block;
	cursor: none;
}

.post-featured-image figure {
	overflow: hidden;
}

.post-featured-image img {
	width: 100%;
	aspect-ratio: 1 / 0.695;
	object-fit: cover;
	transition: all 0.4s ease-in-out;
}

.post-item:hover .post-featured-image img {
	transform: scale(1.1);
}

.blog-item-body {
	padding: 30px 25px;
}

.post-item-content {
	margin-bottom: 20px;
}

.post-item-content h2 {
	font-size: 20px;
	line-height: 1.4em;
}

.post-item-content h2 a {
	color: inherit;
}

/************************************/
/*** 	 	18. Footer css		  ***/
/************************************/

.footer-scrolling-ticker .scrolling-ticker-box {
	--gap: 25px;
}

.footer-scrolling-ticker .scrolling-content span {
	display: flex;
	align-items: center;
	font-size: 26px;
	font-weight: 700;
	letter-spacing: -0.02em;
	text-transform: capitalize;
	line-height: 1.1em;
	color: var(--white-color);
}

.footer-scrolling-ticker .scrolling-content span img {
	max-width: 20px;
	height: 100%;
	margin-left: 25px;
	filter: brightness(0) invert(1);
}

.main-footer {
	background-color: var(--accent-color);
	background-image: url('../images/footer-bg.svg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 100% auto;
	padding: 100px 0 0;
}

.footer-header {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
	border-bottom: 1px solid var(--dark-divider-color);
	margin-bottom: 40px;
	padding-bottom: 40px;
}

.footer-logo img {
	width: 100%;
	max-width: 209px;
}

.footer-social-links {
	display: flex;
	align-items: center;
	gap: 20px;
}

.footer-social-links span {
	font-size: 20px;
	font-weight: 600;
	color: var(--white-color);
}

.footer-social-links ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-social-links ul li {
	display: inline-block;
	margin-left: 15px;
}

.footer-social-links ul li:last-child {
	margin-right: 0;
}

.footer-social-links ul li a {
	display: flex;
	justify-content: center;
	align-items: center;
	background: var(--white-color);
	color: var(--accent-color);
	width: 40px;
	height: 40px;
	border-radius: 50%;
	transition: all 0.4s ease-in-out;
}

.footer-social-links ul li a:hover {
	background-color: var(--accent-secondary-color);
	color: var(--primary-color);
}

.footer-social-links ul li a i {
	color: inherit;
	font-size: 18px;
}

.footer-links h3 {
	font-size: 20px;
	text-transform: capitalize;
	color: var(--white-color);
	margin-bottom: 20px;
}

.footer-links p {
	color: var(--white-color);
	margin-bottom: 30px;
}

.footer-links p:last-child {
	margin-bottom: 0;
}

.footer-links ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.footer-links ul li {
	color: var(--white-color);
	text-transform: capitalize;
	line-height: 1.6em;
	margin-bottom: 10px;
}

.footer-links ul li:last-child {
	margin-bottom: 0;
}

.footer-links ul li a {
	color: inherit;
	transition: all 0.4s ease-in-out;
}

.footer-links ul li a:hover {
	color: var(--primary-color);
}

.footer-contact-item {
	display: flex;
	align-items: baseline;
	margin-bottom: 20px;
}

.footer-contact-item:last-child {
	margin-bottom: 0;
}

.footer-contact-item .icon-box {
	width: 30px;
	height: 30px;
	display: flex;
	justify-content: center;
	align-items: center;
	border: 1px solid var(--white-color);
	border-radius: 50%;
	margin-left: 15px;
}

.footer-contact-item .icon-box i {
	font-size: 12px;
	color: var(--white-color);
}

.footer-contact-content {
	width: calc(100% - 45px);
}

.footer-contact-content p {
	color: var(--white-color);
	margin: 0;
}

.footer-contact-content p a {
	color: inherit;
	transition: all 0.4s ease-in-out;
}

.footer-contact-content p a:hover {
	color: var(--primary-color);
}

.newsletter-form .form-group {
	display: flex;
	border-radius: 8px;
	overflow: hidden;
}

.newsletter-form .form-group .form-control {
	width: 85%;
	border: none;
	border-radius: 0;
	font-size: 16px;
	line-height: 1.2em;
	font-weight: 400;
	color: var(--text-color);
	outline: none;
	box-shadow: none;
	padding: 15px 0 15px 15px;
}

.newsletter-form .form-group .form-control::placeholder {
	color: var(--text-color);
}

.newsletter-form .form-group .newsletter-btn {
	background-color: var(--white-color);
	width: 15%;
	border: none;
	padding: 0;
}

.newsletter-form .form-group .newsletter-btn img {
	max-width: 20px;
	transition: all 0.3s ease-in-out;
}

.newsletter-form .form-group .newsletter-btn:hover img {
	filter: brightness(0) invert(0);
}

.footer-copyright-text {
	border-top: 1px solid var(--dark-divider-color);
	padding: 60px 0;
	margin-top: 60px;
	text-align: center;
}

.footer-copyright-text p {
	color: var(--white-color);
	margin: 0;
}

/************************************/
/*** 	 19. About Us Page css	  ***/
/************************************/

.page-header {
	background: url('../images/page-header-bg.svg'), var(--accent-color);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 100% auto;
	padding: 80px 0;
}

.page-header-box {
	text-align: center;
}

.page-header-box h1 {
	display: inline-block;
	color: var(--white-color);
	font-size: 40px;
	font-weight: 700;
	line-height: 1.1em;
	letter-spacing: -0.02em;
	margin-bottom: 10px;
	cursor: none;
}

.page-header-box h1 span {
	color: var(--accent-secondary-color);
}

.page-header-box ol {
	margin: 0;
	padding: 0;
	justify-content: center;
}

.page-header-box ol li.breadcrumb-item {
	font-size: 16px;
	font-weight: 600;
	text-transform: capitalize;
	line-height: normal;

	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-mission-vision {
	background: var(--secondary-color) url('../images/mission-vision-bg.svg') no-repeat;
	background-position: center center;
	background-size: 100% auto;
	padding: 100px 0;
}

.mission-vision-box {
	display: flex;
	flex-wrap: wrap;
	align-items: start;
	gap: 30px;
}

.mission-vision-content {
	position: sticky;
	top: 30px;
	width: calc(33% - 20px);
}

.mission-vision-content .section-title {
	margin-bottom: 0;
}

.mission-vision-list {
	width: calc(60% - 20px);
	background-color: var(--white-color);
	border-radius: 20px;
	overflow: hidden;
}

.mission-vision-item {
	position: relative;
	display: flex;
	border-bottom: 1px solid var(--divider-color);
	padding: 30px;
	overflow: hidden;
}

.mission-vision-item:last-child {
	border-bottom: none;
}

.mission-vision-item:before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 0;
	background: var(--accent-secondary-color);
	z-index: 0;
	transition: all 0.4s ease-in-out;
}

.mission-vision-item:hover:before,
.mission-vision-item.active:before {
	top: auto;
	height: 100%;
}

.mission-vision-item .icon-box {
	position: relative;
	height: 50px;
	width: 50px;
	background-color: var(--secondary-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-left: 20px;
	z-index: 1;
}

.mission-vision-item .icon-box img {
	position: relative;
	width: 100%;
	max-width: 28px;
	z-index: 1;
}

.mission-vision-item-content {
	position: relative;
	width: calc(100% - 70px);
	z-index: 1;
}

.mission-vision-item-content h3 {
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 15px;
}

.mission-vision-item-content p {
	margin: 0;
}

.mission-vision-image {
	width: calc(27% - 20px);
}

.mission-vision-image figure {
	display: block;
	border-radius: 20px;
}

.mission-vision-item.active p,
.mission-vision-item.active h3 {
	color: #fff;
}

.mission-vision-image img {
	width: 100%;
	aspect-ratio: 1 / 1.39;
	object-fit: cover;
	border-radius: 20px;
}

.our-commitment {
	padding: 100px 0;
}

.our-commitment-image {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.our-commitment-img-1,
.our-commitment-img-2 {
	width: calc(50% - 15px);
}

.our-commitment-img-2 {
	padding-top: 50px;
}

.our-commitment-img-1 figure,
.our-commitment-img-2 figure {
	display: block;
	border-radius: 20px;
}

.our-commitment-img-1 img,
.our-commitment-img-2 img {
	width: 100%;
	aspect-ratio: 1 / 1.64;
	object-fit: cover;
	border-radius: 20px;
}

.commitment-contact-circle {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	border: 10px solid var(--white-color);
	border-radius: 50%;
	overflow: hidden;
	z-index: 1;
}

.commitment-contact-circle a {
	display: block;
	border-radius: 50%;
}

.commitment-contact-circle a img {
	width: 100%;
	max-width: 160px;
	border-radius: 50%;
	animation: infiniterotate 20s infinite linear;
}

.our-commitment-content {
	margin-left: 15px;
}

.our-commitment-list {
	margin-bottom: 40px;
}

.our-commitment-list ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.our-commitment-list ul li {
	position: relative;
	line-height: 1.5em;
	padding-left: 30px;
	margin-bottom: 20px;
}

.our-commitment-list ul li:last-child {
	margin-bottom: 0;
}

.our-commitment-list ul li:before {
	content: '\f058';
	position: absolute;
	font-family: 'Font Awesome 6 Free';
	font-weight: 900;
	font-size: 20px;
	color: var(--accent-color);
	top: 0px;
	left: 0;
}

.our-commitment-body {
	display: flex;
	flex-wrap: wrap;
	background-color: var(--accent-color);
	border-radius: 20px;
	overflow: hidden;
}

.commitment-intro-video {
	position: relative;
	width: 50%;
}

.commitment-intro-video figure {
	height: 100%;
}

.commitment-intro-video img {
	width: 100%;
	height: 100%;
	aspect-ratio: 1 / 0.61;
	object-fit: cover;
}

.commitment-intro-video .video-play-button a {
	height: 50px;
	width: 50px;
}

.commitment-intro-video .video-play-button i {
	font-size: 20px;
}

.commitment-intro-video .video-play-button a:after,
.commitment-intro-video .video-play-button a:before {
	top: -50%;
	left: -50%;
}

.commitment-body-content {
	width: 50%;
	padding: 20px;
	align-content: center;
}

.commitment-body-content img {
	width: 100%;
	max-width: 32px;
	margin-bottom: 15px;
}

.commitment-body-content h3 {
	color: var(--white-color);
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 15px;
}

.commitment-body-content p {
	color: var(--white-color);
	margin: 0;
}

.our-team {
	padding: 100px 0 70px;
}

.team-item {
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.team-item .team-image {
	position: relative;
	margin-bottom: 20px;
}

.team-item .team-social-icon {
	position: absolute;
	right: 30px;
	bottom: 0;
	left: 30px;
	opacity: 0;
	visibility: hidden;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.team-item:hover .team-social-icon {
	bottom: 30px;
	opacity: 1;
	visibility: visible;
}

.team-social-icon ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 10px 20px;
}

.team-social-icon ul li a {
	width: 40px;
	height: 40px;
	color: var(--accent-color);
	background: var(--white-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.4s ease-in-out;
}

.team-social-icon ul li a:hover {
	background: var(--accent-secondary-color);
	color: var(--primary-color);
}

.team-social-icon ul li a i {
	color: inherit;
	font-size: 18px;
}

.team-item .team-social-icon ul {
	justify-content: center;
}

.team-item .team-social-icon ul a {
	display: flex;
	cursor: pointer;
}

.team-item .team-image a {
	border-radius: 20px;
	display: block;
	cursor: none;
	overflow: hidden;
}

.team-item .team-image img {
	width: 100%;
	aspect-ratio: 1 / 1.19;
	object-fit: cover;
	transition: all 0.4s ease-in-out;
}

.team-item:hover .team-image img {
	transform: scale(1.1);
}

.team-item .team-content {
	text-align: center;
	margin-bottom: 0;
}

.team-item .team-content h2 {
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 5px;
}

.team-item .team-content h2 a {
	color: inherit;
}

.team-item .team-content p {
	text-transform: capitalize;
	margin: 0;
}

.our-values {
	padding: 100px 0;
}

.values-list {
	margin-bottom: 40px;
}

.values-list ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.values-list ul li {
	position: relative;
	color: var(--primary-color);
	font-size: 20px;
	font-weight: 500;
	line-height: 1.5em;
	padding-left: 30px;
	margin-bottom: 15px;
}

.values-list ul li:last-child {
	margin-bottom: 0;
}

.values-list ul li:before {
	content: '\f058';
	position: absolute;
	font-family: 'Font Awesome 6 Free';
	font-weight: 900;
	font-size: 20px;
	color: var(--accent-color);
	top: 0px;
	left: 0;
}

.values-body {
	background: var(--white-color);
	border: 1px solid var(--divider-color);
	border-radius: 20px;
	padding: 30px;
	display: flex;
	flex-wrap: wrap;
	gap: 20px 30px;
}

.values-body-item {
	width: calc(50% - 15px);
	display: flex;
	align-items: center;
}

.values-body-item .icon-box {
	position: relative;
	height: 50px;
	width: 50px;
	background-color: var(--secondary-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 20px;
	z-index: 1;
}

.values-body-item .icon-box:before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: var(--accent-color);
	border-radius: 50%;
	height: 100%;
	width: 100%;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

.values-body-item:hover .icon-box::before {
	transform: scale(1);
}

.values-body-item .icon-box img {
	position: relative;
	width: 100%;
	max-width: 28px;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.values-body-item:hover .icon-box img {
	filter: brightness(0) invert(1);
}

.values-body-item-content {
	width: calc(100% - 70px);
}

.values-body-item-content h3 {
	font-size: 20px;
	line-height: 1.3em;
	text-transform: capitalize;
}

.values-image {
	position: relative;
	background: url('../images/values-image-bg.svg') no-repeat;
	background-position: bottom 85px right 62px;
	background-size: auto;
	padding-right: 111px;
	margin-left: 15px;
}

.values-image:before {
	content: '';
	position: absolute;
	top: 0;
	right: 60px;
	width: 40px;
	height: 240px;
	background-color: var(--accent-secondary-color);
	border-radius: 12px;
}

.values-img figure {
	display: block;
	border-radius: 20px;
}

.values-img img {
	width: 100%;
	aspect-ratio: 1 / 1.05;
	object-fit: cover;
	border-radius: 20px;
}

.award-winning-box {
	position: absolute;
	right: 0;
	bottom: 30px;
	display: flex;
	align-items: center;
	background-color: var(--accent-color);
	border: 5px solid var(--white-color);
	border-radius: 20px;
	padding: 15px;
	overflow: hidden;
	z-index: 1;
}

.award-winning-box:before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: 0;
	height: 100%;
	background: var(--accent-secondary-color);
	z-index: 0;
	transition: all 0.4s ease-in-out;
}

.award-winning-box:hover:before {
	right: auto;
	left: 0;
	width: 100%;
}

.award-winning-box .icon-box {
	margin-right: 10px;
}

.award-winning-box .icon-box img {
	position: relative;
	width: 100%;
	max-width: 60px;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.award-winning-box:hover .icon-box img {
	filter: brightness(0) invert(0);
}

.award-winning-content {
	position: relative;
	width: calc(100% - 70px);
	z-index: 1;
}

.award-winning-content h3 {
	color: var(--white-color);
	font-size: 20px;
	text-transform: capitalize;
	transition: all 0.4s ease-in-out;
}

.award-winning-box:hover .award-winning-content h3 {
	color: var(--primary-color);
}

/************************************/
/*** 	 20. Services Page css	  ***/
/************************************/

.page-services {
	padding: 100px 0 70px;
}

/************************************/
/*** 	 21. Service Single css	  ***/
/************************************/

.page-service-single {
	padding: 100px 0;
}

.page-single-sidebar {
	position: sticky;
	top: 20px;
	margin-right: 20px;
}

.page-catagery-list {
	background-color: var(--secondary-color);
	border-radius: 30px;
	margin-bottom: 60px;
	padding: 30px;
	overflow: hidden;
}

.page-catagery-list h3 {
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 30px;
}

.page-catagery-list ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.page-catagery-list ul li {
	margin-bottom: 20px;
}

.page-catagery-list ul li:last-child {
	margin: 0;
}

.page-catagery-list ul li a {
	position: relative;
	display: block;
	line-height: normal;
	text-transform: capitalize;
	color: var(--text-color);
	background-color: var(--white-color);
	border-radius: 12px;
	line-height: 1.5em;
	padding: 16px 50px 16px 20px;
	transition: all 0.4s ease-in-out;
	overflow: hidden;
	z-index: 1;
}

.page-catagery-list ul li:hover a {
	color: var(--white-color);
}

.page-catagery-list ul li a::before {
	content: '';
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translate(0px, -50%);
	background-image: url('../images/arrow-accent.svg');
	background-color: var(--secondary-color);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 20px auto;
	border-radius: 4px;
	width: 24px;
	height: 24px;
	transition: all 0.3s ease-in-out;
	transform: translate(0px, -50%) rotate(180deg);

}

.page-catagery-list ul li a::after {
	content: '';
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 0;
	background: var(--accent-color);
	transition: all 0.4s ease-in-out;
	z-index: -1;
}

.page-catagery-list ul li:hover a::after {
	top: 0;
	height: 100%;
}

.sidebar-cta-box {
	position: relative;
	background: url('../images/sidebar-cta-bg.jpg') no-repeat;
	background-position: center center;
	background-size: cover;
	border-radius: 30px;
	padding: 30px;
	overflow: hidden;
}

.sidebar-cta-box:before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: var(--primary-color);
	opacity: 60%;
	width: 100%;
	height: 100%;
	z-index: 0;
}

.sidebar-cta-logo,
.sidebar-cta-content {
	position: relative;
	z-index: 1;
}

.sidebar-cta-logo {
	margin-bottom: 120px;
}

.sidebar-cta-logo img {
	width: 100%;
	max-width: 60px;
	/*border-radius: 50%;*/
}

.sidebar-cta-content h3 {
	font-size: 20px;
	line-height: 1.3em;
	text-transform: capitalize;
	color: var(--white-color);
	margin-bottom: 40px;
}

.sidebar-cta-content .btn-default img {
	width: 100%;
	max-width: 20px;
	margin-right: 10px;
}

.page-single-image {
	margin-bottom: 40px;
}

.page-single-image figure {
	display: block;
	border-radius: 20px;
}

.page-single-image img {
	width: 50%;
	aspect-ratio: 1 / 0.542;
	object-fit: cover;
	border-radius: 20px;
}

.service-entry {
	margin-bottom: 60px;
}

.service-entry p {
	margin-bottom: 20px;
}

.service-entry p:last-child {
	margin-bottom: 0;
}

.service-entry h2 {
	font-size: 46px;
	letter-spacing: -0.02em;
	margin-bottom: 20px;
}

.service-entry h2 span {
	color: var(--accent-color);
}

.service-entry ul {
	display: flex;
	flex-wrap: wrap;
	gap: 20px 30px;
	background: var(--secondary-color);
	border-radius: 20px;
	list-style: none;
	margin-bottom: 20px;
	padding: 20px;
}

.service-entry ul li {
	position: relative;
	width: calc(100% - 20px);
	text-transform: capitalize;
	line-height: 1.5em;
	padding-inline-start: 30px;
}

.service-entry ul li::before {
	content: '\f058';
	position: absolute;
	font-family: 'Font Awesome 6 Free';
	font-weight: 900;
	font-size: 20px;
	color: var(--accent-color);
	top: 0;
	inset-inline-start: 0;
}

.service-expert-box,
.service-approach-box,
.service-solution-box {
	margin-top: 60px;
}

.service-expert-list {
	display: flex;
	gap: 30px;
	flex-wrap: wrap;
	margin-top: 40px;
}

.service-expert-list .about-body-item {
	width: calc(50% - 15px);
	margin-bottom: 0;
}

.service-approach-box ul {
	margin-top: 40px;
}

.service-solution-image-content,
.service-solution-item-list {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin-top: 40px;
}

.service-solution-image-content {
	align-items: center;
}

.service-solution-image,
.service-solution-image-content .why-choose-item {
	width: calc(50% - 15px);
}

.service-solution-image figure {
	display: block;
	border-radius: 20px;
}

.service-solution-image img {
	width: 100%;
	aspect-ratio: 1 / 0.66;
	object-fit: cover;
	border-radius: 20px;
}

.service-solution-image-content .why-choose-item::before,
.service-solution-item-list .why-choose-item::before {
	display: none;
}

.service-solution-item-list .why-choose-item {
	width: calc(33.33% - 20px);
}

/************************************/
/*** 	 22. Blog Archive css	  ***/
/************************************/

.page-blog {
	padding: 100px 0;
}

.page-pagination {
	margin-top: 30px;
	text-align: center;
}

.page-pagination ul {
	justify-content: center;
	padding: 0;
	margin: 0;
}

.page-pagination ul li a,
.page-pagination ul li span {
	display: flex;
	text-decoration: none;
	justify-content: center;
	align-items: center;
	background: var(--secondary-color);
	color: var(--primary-color);
	border-radius: 10px;
	width: 40px;
	height: 40px;
	margin: 0 5px;
	font-weight: 700;
	line-height: 1em;
	transition: all 0.3s ease-in-out;
}

.page-pagination ul li.active a,
.page-pagination ul li a:hover {
	color: var(--secondary-color);
	background: var(--accent-color);
}

/************************************/
/*** 	 23. Blog Single css	  ***/
/************************************/

.page-single-post {
	padding: 100px 0;
}

.post-single-meta ol li {
	font-size: 18px;
	color: var(--white-color);
	margin-right: 15px;
}

.post-single-meta ol li:last-child {
	margin-right: 0;
}

.post-single-meta ol li i {
	font-size: 18px;
	color: var(--white-color);
	margin-right: 5px;
}

.post-image {
	position: relative;
	margin-bottom: 30px;
}

.post-image figure {
	display: block;
	border-radius: 20px;
	overflow: hidden;
}

.post-image img {
	width: 100%;
	aspect-ratio: 1 / 0.50;
	object-fit: cover;
	border-radius: 20px;
}

.post-content {
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
}

.post-entry {
	border-bottom: 1px solid var(--divider-color);
	padding-bottom: 30px;
	margin-bottom: 30px;
}

.post-entry:after {
	content: '';
	display: block;
	clear: both;
}

.post-entry a {
	color: var(--accent-color);
}

.post-entry h1,
.post-entry h2,
.post-entry h3,
.post-entry h4,
.post-entry h5,
.post-entry h6 {
	font-weight: 600;
	letter-spacing: -0.02em;
	line-height: 1.2em;
	margin: 0 0 0.417em;
}

.post-entry h1 {
	font-size: 80px;
}

.post-entry h2 {
	font-size: 46px;
}

.post-entry h3 {
	font-size: 40px;
}

.post-entry h4 {
	font-size: 30px;
}

.post-entry h5 {
	font-size: 24px;
}

.post-entry h6 {
	font-size: 20px;
}

.post-entry p {
	margin-bottom: 20px;
}

.post-entry p:last-child {
	margin-bottom: 0;
}

.post-entry p strong {
	color: var(--primary-color);
	font-size: 18px;
	font-weight: 600;
}

.post-entry ol {
	margin: 0 0 30px;
}

.post-entry ul {
	padding: 0;
	margin: 20px 0 20px;
	padding-left: 20px;
}

.post-entry ol li,
.post-entry ul li {
	position: relative;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.5em;
	color: var(--text-color);
	margin-bottom: 15px;
}

.post-entry ul li:last-child {
	margin-bottom: 0;
}

.post-entry ul ul,
.post-entry ul ol,
.post-entry ol ol,
.post-entry ol ul {
	margin-top: 20px;
	margin-bottom: 0;
}

.post-entry ul ul li:last-child,
.post-entry ul ol li:last-child,
.post-entry ol ol li:last-child,
.post-entry ol ul li:last-child {
	margin-bottom: 0;
}

.post-entry blockquote {
	background: url('../images/icon-blockquote.svg'), var(--accent-secondary-color);
	background-repeat: no-repeat;
	background-position: 30px 30px;
	background-size: 45px;
	border-radius: 20px;
	padding: 30px 30px 30px 90px;
	margin-bottom: 30px;
}

.post-entry blockquote p {
	font-size: 22px;
	font-weight: 600;
	line-height: 1.5em;
	color: var(--primary-color);
}

.post-entry blockquote p:last-child {
	margin-bottom: 0;
}

.tag-links {
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	color: var(--primary-color);
	display: inline-flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 15px;
}

.post-tags .tag-links a {
	display: inline-block;
	font-size: 16px;
	font-weight: 700;
	text-transform: capitalize;
	line-height: 1em;
	background: var(--accent-color);
	color: var(--white-color);
	border-radius: 12px;
	padding: 12px 20px;
	transition: all 0.3s ease-in-out;
}

.post-tags .tag-links a:hover {
	background: var(--primary-color);
}

.post-social-sharing {
	text-align: right;
}

.post-social-sharing ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.post-social-sharing ul li {
	display: inline-block;
	margin-right: 10px;
}

.post-social-sharing ul li:last-child {
	margin-right: 0;
}

.post-social-sharing ul li a {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	background: var(--accent-color);
	color: var(--white-color);
	border-radius: 12px;
	width: 40px;
	height: 40px;
	transition: all 0.3s ease-in-out;
}

.post-social-sharing ul li:hover a {
	background: var(--primary-color);
}

.post-social-sharing ul li a i {
	font-size: 18px;
	color: inherit;
}

/************************************/
/*** 	 24. Projects Page css	  ***/
/************************************/

.page-projects {
	padding: 100px 0 70px;
}

.project-item {
	position: relative;
	border-radius: 20px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	overflow: hidden;
}

.project-image a,
.project-image figure {
	display: block;
	cursor: none;
}

.project-image figure::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 60.16%, rgba(0, 0, 0, 0.9) 100%);
	width: 100%;
	height: 100%;
	z-index: 1;
}

.project-image img {
	width: 100%;
	aspect-ratio: 1 / 0.83;
	object-fit: cover;
	transition: all 0.4s ease-in-out;
}

.project-item:hover .project-image img {
	transform: scale(1.1);
}

.project-body {
	position: absolute;
	left: 20px;
	bottom: 20px;
	right: 20px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	z-index: 1;
}

.project-item-content {
	width: calc(100% - 60px);
}

.project-item-content h3 {
	color: var(--white-color);
	font-size: 20px;
	line-height: 1.4em;
}

.project-item-content h3 a {
	color: inherit;
}

.project-readmore-btn a {
	width: 40px;
	height: 40px;
	background: var(--accent-secondary-color);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease-in-out;
}

.project-readmore-btn a:hover {
	background: var(--white-color);
}

.project-readmore-btn a img {
	width: 100%;
	max-width: 24px;
}

/************************************/
/*** 	 25. Project Single css	  ***/
/************************************/

.page-project-single {
	padding: 100px 0;
}

.project-catagery-list {
	background: var(--secondary-color);
	border-radius: 20px;
	padding: 30px;
	text-align: center;
	margin-bottom: 60px;
}

.project-catagery-list h3 {
	font-size: 20px;
	margin-bottom: 30px;
}

.project-catagery-list ul {
	background-color: var(--white-color);
	border-radius: 20px;
	text-align: left;
	padding: 30px;
	margin-bottom: 30px;
}

.project-catagery-list ul li {
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	line-height: 1.5em;
	color: var(--primary-color);
	display: flex;
	justify-content: space-between;
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 16px;
	padding-bottom: 16px;
}

.project-catagery-list ul li:last-child {
	margin-bottom: 0px;
	padding-bottom: 0px;
	border-bottom: none;
}

.project-catagery-list ul li span {
	width: 56%;
	font-size: 16px;
	font-weight: 400;
	text-transform: none;
	color: var(--text-color);
}

.sidebar-social-list ol {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 15px;
}

.sidebar-social-list ol li {
	display: inline-block;
}

.sidebar-social-list ol li a {
	background: var(--white-color);
	color: var(--accent-color);
	border-radius: 50%;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease-in-out;
}

.sidebar-social-list ol li a:hover {
	background: var(--accent-secondary-color);
	color: var(--primary-color);
}

.sidebar-social-list a i {
	font-size: 20px;
	color: inherit
}

.project-entry {
	margin-bottom: 60px;
}

.project-entry p {
	margin-bottom: 20px;
}

.project-entry p:last-child {
	margin-bottom: 0;
}

.project-entry h2 {
	font-size: 46px;
	letter-spacing: -0.02em;
	margin-bottom: 20px;
}

.project-entry h2 span {
	color: var(--accent-color);
}

.project-entry ul {
	list-style: none;
	margin-bottom: 20px;
	padding: 0;
}

.project-entry ul li {
	position: relative;
	line-height: 1.5em;
	padding-left: 30px;
	margin-bottom: 20px;
}

.project-entry ul li:last-child {
	margin-bottom: 0;
}

.project-entry ul li::before {
	content: '\f058';
	position: absolute;
	font-family: 'Font Awesome 6 Free';
	font-weight: 900;
	font-size: 20px;
	color: var(--accent-color);
	top: 0px;
	left: 0;
}

.project-measurable-box,
.projects-solution-box {
	margin-top: 60px;
}

.project-measurable-item-list {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin: 40px 0;
}

.project-measurable-item {
	position: relative;
	width: calc(50% - 15px);
	display: flex;
	flex-wrap: wrap;
	background-color: var(--secondary-color);
	border-radius: 20px;
	padding: 20px;
	overflow: hidden;
}

.project-measurable-item::before {
	content: '';
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 0;
	background: var(--accent-secondary-color);
	z-index: 0;
	transition: all 0.4s ease-in-out;
}

.project-measurable-item:hover::before {
	height: 100%;
}

.project-measurable-item .icon-box {
	position: relative;
	height: 60px;
	width: 60px;
	background-color: var(--white-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 20px;
	z-index: 1;
}

.project-measurable-item .icon-box:before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: var(--accent-color);
	border-radius: 50%;
	height: 100%;
	width: 100%;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

.project-measurable-item:hover .icon-box::before {
	transform: scale(1);
}

.project-measurable-item .icon-box img {
	position: relative;
	width: 100%;
	max-width: 30px;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.project-measurable-item:hover .icon-box img {
	filter: brightness(0) invert(1);
}

.project-measurable-item-content {
	position: relative;
	width: calc(100% - 80px);
	z-index: 1;
}

.project-measurable-item-content h3 {
	font-size: 20px;
	margin-bottom: 15px;
}

.project-measurable-item-content p {
	transition: all 0.4s ease-in-out;
}

.project-measurable-item:hover .project-measurable-item-content p {
	color: var(--primary-color);
}

.projects-solution-list-box {
	display: flex;
	gap: 20px 30px;
	flex-wrap: wrap;
	margin-top: 40px;
}

.projects-solution-list {
	width: calc(50% - 15px);
}

.projects-solution-list h3 {
	font-size: 20px;
	margin-bottom: 30px;
}

.projects-solution-list-box ul {
	margin: 0;
}

/************************************/
/*** 	  26. Team Page css 	  ***/
/************************************/

.page-team {
	padding: 100px 0 70px;
}

/************************************/
/*** 	 27. Team Single css	  ***/
/************************************/

.page-team-single {
	padding: 100px 0;
}

.team-sidebar-box {
	border-radius: 20px;
	overflow: hidden;
}

.team-sidebar-image figure {
	display: block;
}

.team-sidebar-image img {
	width: 100%;
	aspect-ratio: 1 / 1.044;
	object-fit: cover;
	transition: all 0.4s ease-in-out;
}

.team-sidebar-box:hover .team-sidebar-image img {
	transform: scale(1.1);
}

.team-sidebar-body {
	background: var(--accent-color);
	padding: 30px;
}

.team-sidebar-body h3 {
	font-size: 20px;
	color: var(--white-color);
	border-bottom: 1px solid var(--dark-divider-color);
	padding-bottom: 30px;
	margin-bottom: 30px;
}

.team-sidebar-body ul {
	list-style: none;
	padding: 0;
	margin-bottom: 0;
}

.team-sidebar-body ul li {
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	line-height: 1.5em;
	color: var(--white-color);
	display: flex;
	justify-content: space-between;
	margin-bottom: 20px;
}

.team-sidebar-body ul li:last-child {
	margin-bottom: 0px;
	padding-bottom: 0px;
	border-bottom: none;
}

.team-sidebar-body ul li span {
	width: 67%;
	font-size: 16px;
	font-weight: 400;
	text-transform: none;
	opacity: 80%;
}

.team-sidebar-footer {
	background-color: var(--accent-secondary-color);
	display: flex;
	align-items: center;
	gap: 20px;
	padding: 20px 30px;
}

.team-sidebar-footer h3 {
	font-size: 20px;
	text-transform: capitalize;
}

.team-sidebar-footer ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.team-sidebar-footer ul li {
	display: inline-block;
	border-radius: 50%;
	margin-right: 10px;
}

.team-sidebar-footer ul li:last-child {
	margin-right: 0;
}

.team-sidebar-footer ul li a {
	background-color: var(--white-color);
	color: var(--accent-color);
	border-radius: 50%;
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease-in-out;
}

.team-sidebar-footer ul li:hover a {
	background-color: var(--accent-color);
	color: var(--white-color);
}

.team-sidebar-footer ul li a i {
	color: inherit;
	font-size: 18px;
}

.team-member-qualification,
.team-member-skills,
.team-contact-form {
	margin-top: 60px;
}

.member-info-list {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin-top: 40px;
}

.member-info-item {
	position: relative;
	width: calc(25% - 22.5px);
	border: 1px solid var(--divider-color);
	border-radius: 20px;
	padding: 20px;
	overflow: hidden;
}

.member-info-item::before {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--accent-color);
	border-radius: 500px 500px 0 0;
	height: 0;
	width: 100%;
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

.member-info-item:hover::before {
	height: 100%;
	border-radius: 0;
}

.member-info-item .icon-box,
.member-info-item-content {
	position: relative;
	z-index: 1;
}

.member-info-item .icon-box {
	height: 50px;
	width: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--secondary-color);
	border-radius: 50%;
	margin-bottom: 20px;
}

.member-info-item .icon-box img {
	width: 100%;
	max-width: 28px;
	transition: all 0.4s ease-in-out;
}

.member-info-item-content h3 {
	font-size: 20px;
	line-height: 1.3em;
	text-transform: capitalize;
	transition: all 0.4s ease-in-out;
}

.member-info-item:hover .member-info-item-content h3 {
	color: var(--white-color);
}

.skills-progress-bar {
	margin-bottom: 40px;
}

.skills-progress-bar:last-child {
	margin-bottom: 0;
}

.skills-progress-bar .skill-data {
	display: flex;
	justify-content: space-between;
	gap: 10px;
	margin-bottom: 15px;
}

.skills-progress-bar .skillbar .skill-progress {
	position: relative;
	width: 100%;
	height: 16px;
	background: var(--secondary-color);
	border-radius: 100px;
	overflow: hidden;
}

.skills-progress-bar .skillbar .skill-progress .count-bar {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	background: var(--accent-color);
	border-radius: 100px;
}

/************************************/
/*** 	 28. Pricing Page css	  ***/
/************************************/

.page-pricing {
	padding: 100px 0;
}

/************************************/
/***   29. Testimonials Page css  ***/
/************************************/

.page-testimonials {
	padding: 100px 0 70px;
}

.page-testimonials .testimonial-item {
	position: relative;
	background-color: var(--secondary-color);
	border-radius: 20px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	padding: 30px;
	overflow: hidden;
}

.page-testimonials .testimonial-item:before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 0;
	background: var(--accent-color);
	z-index: 0;
	transition: all 0.4s ease-in-out;
}

.page-testimonials .testimonial-item:hover::before {
	top: auto;
	height: 100%;
}

.page-testimonials .testimonial-item .testimonial-rating,
.page-testimonials .testimonial-item .testimonial-content,
.page-testimonials .testimonial-item .testimonial-author {
	position: relative;
	z-index: 1;
}

.page-testimonials .testimonial-item .testimonial-content p,
.page-testimonials .testimonial-item .author-content p {
	color: var(--text-color);
	transition: all 0.4s ease-in-out;
}

.page-testimonials .testimonial-item .author-content h3 {
	color: var(--primary-color);
	transition: all 0.4s ease-in-out;
}

.page-testimonials .testimonial-item:hover .testimonial-content p,
.page-testimonials .testimonial-item:hover .author-content h3,
.page-testimonials .testimonial-item:hover .author-content p {
	color: var(--white-color);
}

/************************************/
/*** 	 30. Image Gallery css	  ***/
/************************************/

.page-gallery {
	padding: 100px 0 70px;
}

.page-gallery-box .photo-gallery {
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.page-gallery-box .photo-gallery a {
	cursor: none;
}

.page-gallery-box .photo-gallery figure {
	display: flex;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
	transition: box-shadow 0.3s ease;
	border-radius: 5px;
	height: 100%;
	justify-content: center;
	align-items: center;
}

.page-gallery-box .photo-gallery img {
	max-width: 100%;
	object-fit: scale-down;
	padding: 5px;
	max-height: 150px;
}


/************************************/
/*** 	 31. Video Gallery css	  ***/
/************************************/

.page-video-gallery {
	padding: 100px 0 70px;
}

.video-gallery-image {
	height: calc(100% - 30px);
	margin-bottom: 30px;
	overflow: hidden;
}

.video-gallery-image a {
	position: relative;
	display: block;
	cursor: none;
}

.video-gallery-image a::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: var(--primary-color);
	border-radius: 20px;
	opacity: 0%;
	visibility: hidden;
	width: 100%;
	height: 100%;
	z-index: 1;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
}

.video-gallery-image:hover a::before {
	opacity: 40%;
	visibility: visible;
	transform: scale(1);
}

.video-gallery-image a::after {
	content: '\f04b';
	font-family: 'FontAwesome';
	position: absolute;
	top: 50%;
	left: 50%;
	right: 0;
	transform: translate(-50%, -50%);
	font-size: 20px;
	background: var(--accent-color);
	color: var(--white-color);
	border-radius: 50%;
	height: 60px;
	width: 60px;
	cursor: none;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: all 0.5s ease-in-out;
	z-index: 1;
}

.video-gallery-image:hover a::after {
	opacity: 1;
	visibility: visible;
}

.video-gallery-image img {
	width: 100%;
	aspect-ratio: 1 / 0.83;
	object-fit: cover;
	border-radius: 20px;
}

/************************************/
/*** 	 32. FAQs Page css  	  ***/
/************************************/

.page-faqs {
	padding: 100px 0;
}

.page-faqs-catagery .page-faq-accordion {
	margin-bottom: 60px;
}

.page-faqs-catagery .page-faq-accordion:last-child {
	margin-bottom: 0px;
}

/************************************/
/*** 	33. Contact Us Page css	  ***/
/************************************/

.page-contact-us {
	padding: 100px 0;
}

.contact-us-form {
	background-color: var(--secondary-color);
	border-radius: 20px;
	padding: 40px;
}

.page-contact-us .contact-us-form .section-title {
	border-bottom: 1px solid var(--divider-color);
	padding-bottom: 40px;
}

.contact-form .form-control {
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5em;
	color: var(--text-color);
	background-color: var(--white-color);
	border: 1px solid var(--divider-color);
	border-radius: 12px;
	padding: 17px 20px;
	box-shadow: none;
	outline: none;
}

.contact-form .form-control::placeholder {
	color: var(--text-color);
}

.google-map {
	margin-bottom: 40px;
}

.google-map iframe {
	width: 100%;
	height: 500px;
	border-radius: 20px;
}

.contact-info-list {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.contact-info-item {
	width: calc(50% - 15px);
	border: 1px solid var(--divider-color);
	border-radius: 20px;
	padding: 20px;
	display: flex;
	align-items: center;
}

.contact-info-item.location-item {
	width: 100%;
}

.contact-info-item .icon-box {
	position: relative;
	width: 50px;
	height: 50px;
	background-color: var(--secondary-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 20px;
}

.contact-info-item .icon-box:before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: var(--accent-color);
	border-radius: 50%;
	height: 100%;
	width: 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 {
	position: relative;
	width: 100%;
	max-width: 30px;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.contact-info-item:hover .icon-box img {
	filter: brightness(0) invert(1);
}

.contact-item-content {
	width: calc(100% - 70px);
}

.contact-item-content h3 {
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 5px;
}

.contact-item-content p {
	margin: 0;
}

.contact-item-content p a {
	color: inherit;
	transition: all 0.3s ease-in-out;
}

.contact-item-content p a:hover {
	color: var(--primary-color);
}

/************************************/
/*** 	 34. 404 Error Page css	  ***/
/************************************/

.error-page {
	padding: 100px 0;
}

.error-page-image {
	text-align: center;
	margin-bottom: 30px;
}

.error-page-image img {
	width: 100%;
	max-width: 50%;
}

.error-page-content {
	text-align: center;
}

.error-page-content .section-title,
.error-page-content-body p {
	margin-bottom: 20px;
}

/************************************/
/*** 	  35. Responsive css	  ***/
/************************************/

@media only screen and (max-width: 1300px) {
	.what-we-do-content {
		padding: 100px 15px;
	}
}

@media only screen and (max-width: 991px) {

	.btn-default {
		font-size: 14px;
		padding: 15px 50px 15px 15px;
	}

	.btn-default::before {
		width: 30px;
		height: 30px;
		background-size: 18px auto;
	}

	.topbar {
		padding: 10px 0;
	}

	.topbar-contact-info ul {
		gap: 15px;
	}

	.topbar-social-links ul li {
		padding-right: 10px;
		margin-right: 10px;
	}

	.topbar-contact-info ul li a i {
		font-size: 14px;
	}

	.topbar-social-links ul li a {
		font-size: 14px;
	}

	.topbar-social-links ul li a i {
		font-size: 16px;
		margin-right: 5px;
	}

	.navbar {
		padding: 15px 0;
	}

	.navbar-brand img {
		max-width: 180px;
	}

	.main-menu ul li.highlighted-menu {
		display: block;
	}

	.slicknav_nav li,
	.slicknav_nav ul {
		display: block;
	}

	.responsive-menu,
	.navbar-toggle {
		display: block;
	}

	.header-btn {
		display: none;
	}

	.section-row {
		margin-bottom: 40px;
	}

	.section-title {
		margin-bottom: 30px;
	}

	.section-title h1 {
		font-size: 55px;
	}

	.section-title h2 {
		font-size: 36px;
	}

	.section-title p {
		margin-top: 10px;
	}

	.section-btn {
		text-align: left;
		margin-top: 15px;
	}

	.hero {
		padding: 50px 0 0;
	}

	.hero.hero-bg-image {
		padding: 100px 0;
	}

	.hero.hero-bg-image.hero-slider-layout .hero-slide {
		padding: 100px 0;
	}

	.hero.hero-bg-image.hero-slider-layout .hero-pagination {
		bottom: 30px;
	}

	.hero-body {
		max-width: 100%;
		margin-bottom: 30px;
	}

	.hero-body ul {
		gap: 15px 20px;
	}

	.hero-body ul li {
		padding-left: 25px;
	}

	.hero-body ul li:before {
		font-size: 16px;
	}

	.hero-btn::before {
		top: -10px;
		width: 80px;
		height: 50px;
	}

	.our-scrolling-ticker {
		padding: 15px 0;
	}

	.scrolling-ticker-box {
		--gap: 50px;
	}

	.scrolling-content img {
		height: 26px;
	}

	.about-us {
		padding: 50px 0;
	}

	.about-us-images {
		margin-bottom: 30px;
	}

	.successful-circle-img img {
		max-width: 130px;
	}

	.about-image img {
		aspect-ratio: 1 / 0.7;
	}

	.about-image-box-2 .about-image img {
		aspect-ratio: 1 / 0.99;
	}

	.about-image-box-3 .about-image {
		max-width: 370px;
	}

	.years-experience-box {
		max-width: 180px;
		padding: 15px;
		margin: 10px 0;
	}

	.years-experience-box h2 {
		font-size: 34px;
	}

	.about-us-content {
		margin-left: 0;
	}

	.about-body-item {
		margin-bottom: 30px;
	}

	.about-btn {
		margin-top: 30px;
	}

	.our-services {
		padding: 50px 0;
	}

	.service-item {
		padding: 20px;
	}

	.service-item .icon-box {
		margin-bottom: 30px;
	}

	.service-item-content h3 {
		margin-bottom: 10px;
	}

	.section-footer-text {
		margin-top: 10px;
	}

	.why-choose-us {
		padding: 50px 0;
	}

	.why-choose-content {
		margin-bottom: 30px;
	}

	.why-choose-list ul {
		gap: 15px 20px;
	}

	.why-choose-list ul li {
		width: calc(50% - 10px);
		padding-left: 25px;
	}

	.why-choose-list ul li::before {
		font-size: 18px;
	}

	.why-choose-image figure img {
		aspect-ratio: 1 / 0.5;
	}

	.why-choose-item-list {
		gap: 30px 60px;
		margin-top: 40px;
	}

	.why-choose-item {
		width: calc(50% - 30px);
	}

	.why-choose-item::before {
		right: -30px;
	}

	.why-choose-item .icon-box {
		margin-bottom: 30px;
	}

	.why-choose-item-content h3 {
		margin-bottom: 10px;
	}

	.what-we-do-image,
	.what-we-do-image figure {
		height: auto;
	}

	.what-we-do-image img {
		aspect-ratio: 1 / 0.52;
	}

	.what-we-do-content {
		padding: 50px 15px;
	}

	.what-we-do-footer {
		margin-top: 30px;
		padding-top: 30px;
	}

	.what-we-do-list {
		width: calc(100% - 140px);
	}

	.what-we-do-list ul li {
		padding-left: 25px;
		margin-bottom: 15px;
	}

	.what-we-do-list ul li::before {
		font-size: 18px;
	}

	.what-we-do-circle img {
		max-width: 120px;
	}

	.company-success {
		padding: 50px 0 20px;
	}

	.company-success-item {
		text-align: center;
	}

	.company-success-header {
		flex-direction: column;
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

	.company-success-header .icon-box {
		margin: 0 0 10px 0;
	}

	.company-success-title {
		width: 100%;
	}

	.company-success-content h2 {
		font-size: 45px;
	}

	.company-success-content p {
		font-size: 14px;
	}

	.scrolling-ticker-text {
		margin-bottom: -6px;
	}

	.scrolling-ticker-text-box {
		--gap: 30px;
	}

	.scrolling-ticker-text-content span {
		font-size: 56px;
	}

	.scrolling-ticker-text-content span img {
		width: 30px;
		margin-left: 30px;
	}

	.our-benefits {
		padding: 50px 0;
	}

	.benefits-content {
		margin: 0 0 30px 0;
	}

	.benefits-body-item {
		padding: 15px;
	}

	.benefits-body-item h3 {
		margin-bottom: 10px;
	}

	.benefits-body-list ul {
		gap: 20px;
	}

	.benefits-body-list ul li {
		width: calc(50% - 10px);
		padding-left: 25px;
	}

	.benefits-body-list ul li::before {
		font-size: 18px;
	}

	.benefit-image img {
		aspect-ratio: 1 / 0.68;
	}

	.benefit-image-circle {
		top: 40px;
	}

	.benefit-image-circle img {
		max-width: 110px;
	}

	.benefit-image-2 .benefit-image {
		max-width: 490px;
	}

	.benefit-image-2 .benefit-image img {
		aspect-ratio: 1 / 0.5;
	}

	.benefit-project-info {
		bottom: 50px;
		max-width: 205px;
		border-radius: 14px;
		padding: 10px;
	}

	.benefit-project-info .icon-box {
		margin-right: 10px;
	}

	.benefit-project-content {
		width: calc(100% - 60px);
	}

	.benefit-project-content h3 {
		font-size: 20px;
	}

	.how-it-work {
		padding: 50px 0;
	}

	.how-work-content {
		position: initial;
		top: 0;
		margin: 0 0 30px 0;
	}

	.work-process-item {
		padding: 20px;
		margin-bottom: 30px;
	}

	.work-process-content h3 {
		margin-bottom: 15px;
	}

	.work-process-content h2 {
		margin-bottom: 10px;
	}

	.work-process-image img {
		aspect-ratio: 1 / 0.6;
	}

	.our-testimonials {
		padding: 50px 0;
	}

	.testimonials-content {
		margin-bottom: 30px;
	}

	.testimonial-rating {
		margin-bottom: 15px;
	}

	.testimonial-rating i {
		font-size: 16px;
	}

	.testimonial-content {
		margin-bottom: 30px;
	}

	.testimonial-content p {
		font-size: 18px;
	}

	.author-image figure img {
		max-width: 50px;
	}

	.author-content {
		width: calc(100% - 65px);
	}

	.testimonial-quote img {
		max-width: 8px;
	}

	.testimonial-pagination .swiper-pagination-bullet {
		width: 10px;
		height: 10px;
	}

	.testimonials-counter-list {
		margin-top: 40px;
		padding-top: 40px;
	}

	.testimonials-counter-item {
		width: calc(50% - 15px);
	}

	.testimonials-counter-item h2 {
		width: 38%;
		font-size: 45px;
	}

	.our-pricing {
		padding: 50px 0;
	}

	.pricing-item {
		padding: 30px 25px;
	}

	.pricing-header {
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

	.pricing-header img {
		max-width: 40px;
		margin-bottom: 20px;
	}

	.pricing-header h3 {
		margin-bottom: 10px;
	}

	.pricing-header p {
		margin-bottom: 20px;
	}

	.pricing-header h2 {
		font-size: 36px;
	}

	.pricing-header sub {
		font-size: 14px;
	}

	.pricing-body ul li {
		padding-left: 25px;
		margin-bottom: 10px;
	}

	.pricing-body ul li::before {
		font-size: 16px;
	}

	.pricing-footer .btn-default {
		padding: 15px;
	}

	.pricing-benefit-list {
		margin-top: 5px;
	}

	.our-faqs {
		padding: 50px 0;
	}

	.faqs-image {
		margin-right: 0;
		margin-bottom: 30px;
	}

	.faqs-img img {
		aspect-ratio: 1 / 0.7;
	}

	.faq-contact-circle img {
		max-width: 130px;
	}

	.faqs-cta-box {
		width: 240px;
		padding: 15px;
	}

	.faqs-cta-box .icon-box {
		margin-right: 10px;
	}

	.faqs-cta-box .icon-box img {
		max-width: 35px;
	}

	.faqs-cta-box-content {
		width: calc(100% - 45px);
	}

	.faq-accordion .accordion-item {
		margin-bottom: 20px;
	}

	.faq-accordion .accordion-header .accordion-button {
		padding: 14px 50px 14px 20px;
	}

	.faq-accordion .accordion-item .accordion-button::after,
	.faq-accordion .accordion-item .accordion-button.collapsed::after {
		width: 22px;
		height: 22px;
		top: 16px;
		right: 20px;
	}

	.faq-accordion .accordion-item .accordion-body {
		padding: 14px 50px 14px 20px;
	}

	.our-blog {
		padding: 50px 0 20px;
	}

	.blog-item-body {
		padding: 20px;
	}

	.post-item-content {
		margin-bottom: 15px;
	}

	.footer-scrolling-ticker .scrolling-ticker-box {
		--gap: 20px;
	}

	.footer-scrolling-ticker .scrolling-content span {
		font-size: 22px;
	}

	.footer-scrolling-ticker .scrolling-content span img {
		max-width: 16px;
		margin-right: 20px;
	}

	.main-footer {
		padding: 50px 0 0;
	}

	.footer-header {
		margin-bottom: 30px;
		padding-bottom: 30px;
	}

	.footer-logo img {
		max-width: 180px;
	}

	.footer-social-links ul li {
		margin-left: 10px;
	}

	.footer-links {
		margin-bottom: 30px;
	}

	.footer-links h3 {
		margin-bottom: 15px;
	}

	.footer-links p {
		margin-bottom: 20px;
	}

	.footer-contact-item {
		margin-bottom: 15px;
	}

	.newsletter-form .form-group .form-control {
		padding: 12px 0 12px 15px;
	}

	.footer-copyright-text {
		padding: 30px 0;
		margin-top: 0;
	}

	.page-header {
		padding: 50px 0;
	}

	.page-header-box h1 {
		font-size: 55px;
	}

	.our-mission-vision {
		padding: 50px 0;
	}

	.mission-vision-content {
		position: initial;
		top: 0;
		width: 100%;
	}

	.mission-vision-list {
		width: calc(60% - 15px);
	}

	.mission-vision-image {
		width: calc(40% - 15px);
	}

	.mission-vision-item {
		padding: 20px;
	}

	.mission-vision-item .icon-box {
		width: 45px;
		height: 45px;
		margin-right: 15px;
	}

	.mission-vision-item .icon-box img {
		max-width: 24px;
	}

	.mission-vision-item-content {
		width: calc(100% - 60px);
	}

	.mission-vision-item-content h3 {
		margin-bottom: 10px;
	}

	.mission-vision-image img {
		aspect-ratio: 1 / 1.33;
	}

	.our-commitment {
		padding: 50px 0;
	}

	.our-commitment-image {
		max-width: 70%;
		margin: 0 auto;
		margin-bottom: 30px;
	}

	.commitment-contact-circle a img {
		max-width: 130px;
	}

	.our-commitment-content {
		margin-left: 0;
	}

	.our-commitment-list {
		margin-bottom: 30px;
	}

	.our-commitment-list ul li {
		margin-bottom: 15px;
		padding-left: 25px;
	}

	.our-commitment-list ul li::before {
		font-size: 18px;
	}

	.commitment-body-content img,
	.commitment-body-content h3 {
		margin-bottom: 10px;
	}

	.our-team {
		padding: 50px 0 20px;
	}

	.team-item .team-image {
		margin-bottom: 15px;
	}

	.team-item .team-image img {
		aspect-ratio: 1 / 1.05;
	}

	.team-item .team-social-icon {
		right: 20px;
		left: 20px;
	}

	.team-item:hover .team-social-icon {
		bottom: 20px;
	}

	.our-values {
		padding: 50px 0;
	}

	.values-content {
		margin-bottom: 30px;
	}

	.values-list {
		margin-bottom: 30px;
	}

	.values-list ul li {
		font-size: 18px;
		padding-left: 25px;
		margin-bottom: 10px;
	}

	.values-list ul li:before {
		font-size: 18px;
	}

	.values-body {
		padding: 20px;
	}

	.values-image {
		max-width: 80%;
		margin: 0 auto;
	}

	.award-winning-box {
		padding: 10px;
	}

	.award-winning-box .icon-box img {
		max-width: 50px;
	}

	.award-winning-content {
		width: calc(100% - 60px);
	}

	.page-services {
		padding: 50px 0 20px;
	}

	.page-service-single {
		padding: 50px 0;
	}

	.page-single-sidebar {
		position: initial;
		margin: 0 0 30px 0;
	}

	.page-catagery-list {
		margin-bottom: 30px;
	}

	.page-catagery-list h3 {
		margin-bottom: 20px;
	}

	.page-catagery-list ul li a {
		padding: 12px 40px 12px 15px;
	}

	.page-catagery-list ul li a::before {
		right: 15px;
		background-size: 16px auto;
		width: 20px;
		height: 20px;
	}

	.sidebar-cta-logo {
		margin-bottom: 60px;
	}

	.sidebar-cta-content h3 {
		margin-bottom: 30px;
	}

	.page-single-image {
		margin-bottom: 30px;
	}

	.service-entry {
		margin-bottom: 40px;
	}

	.service-entry p {
		margin-bottom: 15px;
	}

	.service-entry h2 {
		font-size: 36px;
		margin-bottom: 15px;
	}

	.service-entry ul {
		gap: 15px 20px;
		margin-bottom: 15px;
		padding: 15px;
	}

	.service-entry ul li {
		width: calc(33.33% - 13.33px);
		padding-left: 24px;
		font-size: 14px;
	}

	.service-entry ul li::before {
		font-size: 16px;
	}

	.service-expert-box,
	.service-approach-box,
	.service-solution-box {
		margin-top: 40px;
	}

	.service-expert-list {
		margin-top: 30px;
	}

	.service-expert-list .about-body-item .icon-box {
		margin-right: 10px;
	}

	.service-expert-list .about-body-item-content {
		width: calc(100% - 60px);
	}

	.service-expert-list .about-body-item-content h3 {
		font-size: 18px;
	}

	.service-approach-box ul {
		margin-top: 30px;
	}

	.service-solution-image-content,
	.service-solution-item-list {
		margin-top: 30px;
	}

	.page-blog {
		padding: 50px 0;
	}

	.page-pagination {
		margin-top: 10px;
	}

	.page-single-post {
		padding: 50px 0;
	}

	.post-image {
		margin-bottom: 20px;
	}

	.post-entry h1,
	.post-entry h2,
	.post-entry h3,
	.post-entry h4,
	.post-entry h5,
	.post-entry h6 {
		margin: 0 0 0.42em;
	}

	.post-entry h2 {
		font-size: 36px;
	}

	.post-entry p {
		margin-bottom: 15px;
	}

	.post-entry ol li,
	.post-entry ul li {
		margin-bottom: 10px;
	}

	.post-entry blockquote {
		background-position: 20px 20px;
		background-size: 35px;
		padding: 20px 20px 20px 70px;
		margin-bottom: 20px;
	}

	.post-entry blockquote p {
		font-size: 20px;
	}

	.post-tags {
		margin-bottom: 20px;
	}

	.post-tags .tag-links a {
		padding: 12px 15px;
	}

	.post-social-sharing ul {
		text-align: left;
	}

	.page-projects {
		padding: 50px 0 20px;
	}

	.page-project-single {
		padding: 50px 0;
	}

	.project-catagery-list {
		margin-bottom: 30px;
		padding: 20px;
	}

	.project-catagery-list h3 {
		margin-bottom: 20px;
	}

	.project-catagery-list ul {
		padding: 20px;
		margin-bottom: 20px;
	}

	.project-catagery-list ul li span {
		width: 70%;
	}

	.project-entry {
		margin-bottom: 40px;
	}

	.project-entry p {
		margin-bottom: 15px;
	}

	.project-entry h2 {
		font-size: 36px;
		margin-bottom: 15px;
	}

	.project-entry ul {
		margin-bottom: 15px;
	}

	.project-entry ul li {
		font-size: 14px;
		padding-left: 24px;
		margin-bottom: 10px;
	}

	.project-entry ul li::before {
		font-size: 16px;
	}

	.project-measurable-box,
	.projects-solution-box {
		margin-top: 40px;
	}

	.project-measurable-item-list {
		gap: 20px;
		margin: 30px 0;
	}

	.project-measurable-item {
		width: calc(50% - 10px);
		padding: 15px;
		border-radius: 12px;
	}

	.project-measurable-item .icon-box {
		height: 50px;
		width: 50px;
		margin-right: 10px;
	}

	.project-measurable-item .icon-box img {
		max-width: 26px;
	}

	.project-measurable-item-content {
		width: calc(100% - 60px);
	}

	.project-measurable-item-content p {
		font-size: 14px;
	}

	.projects-solution-list-box {
		margin-top: 30px;
	}

	.projects-solution-list h3 {
		margin-bottom: 20px;
	}

	.projects-solution-list-box ul {
		margin: 0;
	}

	.page-team {
		padding: 50px 0 20px;
	}

	.page-team-single {
		padding: 50px 0;
	}

	.team-sidebar-image img {
		aspect-ratio: 1 / 0.7;
	}

	.team-sidebar-body {
		padding: 20px;
	}

	.team-sidebar-body h3 {
		padding-bottom: 20px;
		margin-bottom: 20px;
	}

	.team-sidebar-body ul li {
		margin-bottom: 15px;
	}

	.team-sidebar-footer {
		padding: 20px;
	}

	.team-member-qualification,
	.team-member-skills,
	.team-contact-form {
		margin-top: 40px;
	}

	.member-info-list {
		margin-top: 30px;
	}

	.skills-progress-bar {
		margin-bottom: 30px;
	}

	.team-contact-form.contact-us-form {
		margin-bottom: 0;
	}

	.page-pricing {
		padding: 50px 0;
	}

	.page-testimonials {
		padding: 50px 0 20px;
	}

	.page-testimonials .testimonial-item {
		padding: 20px;
	}

	.page-gallery {
		padding: 50px 0 20px;
	}

	.page-gallery-box .photo-gallery img {
		aspect-ratio: 1 / 0.75;
	}

	.page-video-gallery {
		padding: 50px 0 20px;
	}

	.video-gallery-image img {
		aspect-ratio: 1 / 0.75;
	}

	.page-faqs {
		padding: 50px 0;
	}

	.page-faqs-catagery .page-faq-accordion {
		margin-bottom: 40px;
	}

	.page-contact-us {
		padding: 50px 0;
	}

	.contact-us-form {
		padding: 30px;
		margin-bottom: 30px;
	}

	.page-contact-us .contact-us-form .section-title {
		padding-bottom: 30px;
	}

	.contact-form .form-control {
		padding: 12px 15px;
	}

	.google-map {
		margin-bottom: 30px;
	}

	.google-map iframe {
		height: 400px;
	}

	.contact-info-item {
		padding: 15px;
	}

	.contact-info-item .icon-box {
		height: 45px;
		width: 45px;
		margin-right: 10px;
	}

	.contact-info-item .icon-box img {
		max-width: 26px;
	}

	.contact-item-content {
		width: calc(100% - 55px);
	}

	.error-page {
		padding: 50px 0;
	}

	.error-page-image {
		margin-bottom: 20px;
	}

	.error-page-image img {
		max-width: 80%;
	}

	.error-page-content .section-title,
	.error-page-content-body p {
		margin-bottom: 15px;
	}
}

@media only screen and (max-width: 767px) {

	.topbar-social-links {
		display: none;
	}

	.slicknav_nav .slicknav_row,
	.slicknav_nav li a {
		color: var(--white-color)
	}

	.what-we-do-content .what-we-do-list {
		margin-bottom: 20px
	}

	.topbar-contact-info ul {
		justify-content: center;
	}

	.topbar-contact-info ul li a i {
		margin-right: 5px;
	}

	.section-title h1 {
		font-size: 28px;
	}

	.section-title h2 {
		font-size: 26px;
	}

	.hero-body ul {
		gap: 10px;
	}

	.hero-body ul li {
		font-size: 14px;
	}

	.hero-image img {
		max-width: 100%;
	}

	.hero-btn::before {
		right: -60px;
		top: 5px;
		width: 55px;
		height: 30px;
		animation-duration: 2s;
	}

	@keyframes ctaarrow {
		50% {
			right: -80px;
		}
	}

	.scrolling-ticker-box {
		--gap: 35px;
	}

	.scrolling-content img {
		max-width: 100px;
		height: 22px;
	}

	.successful-circle-img img {
		max-width: 90px;
	}

	.about-image figure,
	.about-image img {
		border-radius: 14px;
	}

	.about-image-box-2 .about-image img {
		aspect-ratio: 1 / 1.12;
	}

	.about-image-box-3 {
		margin-top: -20px;
		margin-left: -5px;
	}

	.about-image-box-3 .about-image {
		max-width: 215px;
	}

	.about-image-box-3 .about-image figure {
		border-width: 5px;
		border-radius: 20px;
	}

	.about-image-box-3 .about-image img {
		border-radius: 12px;
	}

	.years-experience-box {
		max-width: 135px;
		padding: 10px;
	}

	.years-experience-box h2 {
		width: calc(33% - 5px);
		font-size: 24px;
	}

	.years-experience-box p {
		width: calc(67% - 5px);
		font-size: 14px;
	}

	.about-body-item .icon-box {
		margin-right: 10px;
	}

	.about-body-item-content {
		width: calc(100% - 60px);
	}

	.about-body-item-content h3 {
		font-size: 18px;
	}

	.service-item .icon-box {
		margin-bottom: 20px;
	}

	.service-item-content h3 {
		font-size: 18px;
	}

	.service-item-content {
		margin-bottom: 15px;
		padding-bottom: 15px;
	}

	.section-footer-text p {
		font-size: 16px;
	}

	.section-footer-text span {
		font-size: 14px;
		padding: 4px 6px;
		margin-right: 5px;
	}

	.why-choose-list ul {
		gap: 10px;
	}

	.why-choose-list ul li {
		width: 100%;
	}

	.why-choose-image figure img {
		aspect-ratio: 1 / 0.65;
	}

	.video-play-button a {
		width: 60px;
		height: 60px;
	}

	.video-play-button i {
		font-size: 26px;
	}

	.video-play-button a::before,
	.video-play-button a::after {
		top: -33%;
		left: -33%;
	}

	.why-choose-item-list {
		margin-top: 30px;
	}

	.why-choose-item {
		width: 100%;
	}

	.why-choose-item::before {
		width: 100%;
		height: 1px;
		left: auto;
		top: auto;
		right: 0;
		bottom: -15px;
	}

	.why-choose-item .icon-box {
		margin-bottom: 20px;
	}

	.why-choose-item-content h3 {
		font-size: 18px;
	}

	.what-we-do-image img {
		aspect-ratio: 1 / 0.8;
	}

	.what-do-body-list {
		gap: 20px;
	}

	.what-do-body-item {
		width: 100%;
	}

	.what-do-body-content h3 {
		font-size: 18px;
	}

	.what-we-do-footer {
		margin-top: 20px;
		padding-top: 20px;
	}

	.what-we-do-list {
		width: 100%;
	}

	.what-we-do-list ul li {
		margin-bottom: 10px;
	}

	.what-we-do-circle img {
		max-width: 90px;
	}

	.company-success-header {
		margin-bottom: 15px;
		padding-bottom: 15px;
	}

	.company-success-title h3 {
		font-size: 18px;
	}

	.company-success-content h2 {
		font-size: 30px;
	}

	.scrolling-ticker-text {
		margin-bottom: -4px;
	}

	.scrolling-ticker-text-box {
		--gap: 20px;
	}

	.scrolling-ticker-text-content span {
		font-size: 30px;
	}

	.scrolling-ticker-text-content span img {
		width: 20px;
		margin-left: 20px;
	}

	.benefits-body {
		gap: 20px;
		margin-bottom: 20px;
	}

	.benefits-body-item {
		width: 100%;
	}

	.benefits-body-item h3 {
		font-size: 18px;
	}

	.benefits-body-list ul {
		gap: 10px;
	}

	.benefits-body-list ul li {
		width: 100%;
	}

	.benefit-image-1 {
		margin-right: 80px;
	}

	.benefit-image-2 {
		margin-top: -50px;
	}

	.benefit-image img {
		aspect-ratio: 1 / 0.775;
	}

	.benefit-image-circle {
		top: 30px;
	}

	.benefit-image-circle img {
		max-width: 90px;
	}

	.benefit-image-2 .benefit-image {
		max-width: 270px;
		border-width: 5px;
		border-radius: 16px;
	}

	.benefit-image-2 .benefit-image figure,
	.benefit-image-2 .benefit-image img {
		border-radius: 12px;
	}

	.benefit-image-2 .benefit-image img {
		aspect-ratio: 1 / 0.611;
	}

	.benefit-project-info {
		bottom: 20px;
		max-width: 180px;
	}

	.benefit-project-info .icon-box {
		width: 40px;
		height: 40px;
		margin-right: 10px;
	}

	.benefit-project-content {
		width: calc(100% - 50px);
	}

	.benefit-project-content h3 {
		font-size: 18px;
	}

	.benefit-project-content p {
		font-size: 14px;
	}

	.work-process-item {
		gap: 20px;
	}

	.work-process-content,
	.work-process-image {
		width: 100%;
	}

	.work-process-content h3 {
		border-radius: 6px;
		padding: 8px 15px;
	}

	.work-process-content h2 {
		font-size: 18px;
	}

	.testimonial-content {
		margin-bottom: 20px;
	}

	.testimonial-content p {
		font-size: 16px;
	}

	.author-content h3 {
		font-size: 18px;
	}

	.testimonial-pagination {
		position: relative;
		margin-top: 30px;
		justify-content: center;
	}

	.testimonials-counter-list {
		margin-top: 20px;
		padding-top: 20px;
		gap: 20px;
	}

	.testimonials-counter-item {
		width: calc(50% - 10px);
	}

	.testimonials-counter-item h2 {
		width: 78%;
		font-size: 28px;
	}

	.testimonials-counter-item p {
		font-size: 14px;
	}

	.pricing-item {
		padding: 20px;
	}

	.pricing-header img,
	.pricing-header p {
		margin-bottom: 15px;
	}

	.pricing-header h3 {
		font-size: 18px;
	}

	.pricing-header h2 {
		font-size: 26px;
	}

	.pricing-benefit-list ul {
		gap: 10px;
	}

	.pricing-benefit-list ul li {
		width: calc(50% - 5px);
		font-size: 12px;
	}

	.pricing-benefit-list ul li img {
		max-width: 16px;
		margin-right: 5px;
	}

	.faqs-image {
		padding: 5px 20px 0 0;
	}

	.faqs-img img {
		aspect-ratio: 1 / 1.1;
	}

	.faq-contact-circle {
		border-width: 5px;
	}

	.faq-contact-circle img {
		max-width: 100px;
	}

	.faqs-cta-box {
		width: 210px;
		padding: 10px;
		border-radius: 10px;
	}

	.faqs-cta-box .icon-box img {
		max-width: 30px;
	}

	.faqs-cta-box-content {
		width: calc(100% - 40px);
	}

	.faqs-cta-box-content h3 {
		font-size: 14px;
	}

	.faq-accordion .accordion-header .accordion-button {
		font-size: 18px;
		padding: 12px 45px 12px 15px;
	}

	.faq-accordion .accordion-item .accordion-button::after,
	.faq-accordion .accordion-item .accordion-button.collapsed::after {
		width: 20px;
		height: 20px;
		right: 15px;
		background-size: 14px auto;
	}

	.faq-accordion .accordion-item .accordion-body {
		padding: 12px 15px 15px 15px;
	}

	.post-item-content h2 {
		font-size: 18px;
	}

	.footer-social-links {
		gap: 15px;
	}

	.footer-social-links ul li a {
		width: 38px;
		height: 38px;
	}

	.footer-header {
		flex-direction: column;
		align-items: flex-start;
		gap: 15px;
		margin-bottom: 25px;
		padding-bottom: 25px;
	}

	.footer-social-links span {
		font-size: 18px;
	}

	.footer-links h3 {
		font-size: 18px;
	}

	.footer-copyright-text {
		padding: 15px 0;
	}

	.page-header-box h1 {
		font-size: 28px;
	}

	.mission-vision-list,
	.mission-vision-image {
		width: 100%;
	}

	.mission-vision-item-content h3 {
		font-size: 18px;
		margin-bottom: 5px;
	}

	.mission-vision-image figure {
		height: auto;
	}

	.mission-vision-image img {
		height: auto;
		aspect-ratio: 1 / 1.05;
	}

	.our-commitment-image {
		max-width: 100%;
		gap: 20px;
	}

	.our-commitment-img-1,
	.our-commitment-img-2 {
		width: calc(50% - 10px);
	}

	.our-commitment-img-2 {
		padding-top: 30px;
	}

	.commitment-contact-circle {
		border-width: 5px;
	}

	.commitment-contact-circle a img {
		max-width: 100px;
	}

	.commitment-intro-video,
	.commitment-body-content {
		width: 100%;
	}

	.commitment-intro-video figure,
	.commitment-intro-video img {
		height: auto;
	}

	.commitment-body-content h3 {
		font-size: 18px;
	}

	.team-item .team-content h2 {
		font-size: 18px;
	}

	.values-list ul li {
		font-size: 16px;
	}

	.values-body-item {
		width: 100%;
	}

	.values-body-item-content h3 {
		font-size: 18px;
	}

	.values-image {
		max-width: 100%;
		background-position: bottom 20px right 10px;
		background-size: auto 140px;
		padding-right: 50px;
	}

	.values-image:before {
		right: 10px;
		width: 30px;
		height: 140px;
	}

	.award-winning-box {
		border-radius: 12px;
		bottom: 20px;
	}

	.award-winning-box .icon-box img {
		max-width: 40px;
	}

	.award-winning-content {
		width: calc(100% - 50px);
	}

	.award-winning-content h3 {
		font-size: 18px;
	}

	.page-catagery-list,
	.sidebar-cta-box {
		padding: 20px;
	}

	.page-catagery-list h3,
	.sidebar-cta-content h3 {
		font-size: 18px;
	}

	.sidebar-cta-logo img {
		max-width: 50px;
	}

	.page-single-image {
		margin-bottom: 20px;
	}

	.page-single-image img {
		aspect-ratio: 1 / 0.7;
	}

	.service-entry h2 {
		font-size: 26px;
	}

	.service-entry ul {
		gap: 10px;
	}

	.service-entry ul li {
		width: 100%;
	}

	.service-expert-box,
	.service-approach-box,
	.service-solution-box {
		margin-top: 30px;
	}

	.service-expert-list {
		gap: 25px;
	}

	.service-expert-list .about-body-item {
		width: 100%;
	}

	.service-approach-box ul {
		margin-top: 20px;
	}

	.service-solution-image-content,
	.service-solution-item-list {
		gap: 20px;
	}

	.service-solution-image,
	.service-solution-image-content .why-choose-item {
		width: 100%;
	}

	.service-solution-image img {
		aspect-ratio: 1 / 0.58;
	}

	.service-solution-item-list .why-choose-item {
		width: 100%;
	}

	.post-single-meta ol li {
		font-size: 16px;
	}

	.post-single-meta ol li i {
		font-size: 16px;
	}

	.post-image img {
		aspect-ratio: 1 / 0.7;
	}

	.post-entry blockquote {
		background-position: 15px 15px;
		padding: 60px 15px 15px 15px;
	}

	.post-entry blockquote p {
		font-size: 18px;
	}

	.post-entry h2 {
		font-size: 24px;
	}

	.tag-links {
		font-size: 18px;
	}

	.project-item-content h3 {
		font-size: 18px;
	}

	.project-catagery-list h3,
	.project-catagery-list ul li {
		font-size: 18px;
	}

	.project-catagery-list ul li span {
		width: 56%;
	}

	.project-entry h2 {
		font-size: 26px;
	}

	.project-measurable-box,
	.projects-solution-box {
		margin-top: 30px;
	}

	.project-measurable-item {
		width: 100%;
	}

	.project-measurable-item-content h3 {
		font-size: 18px;
		margin-bottom: 10px;
	}

	.projects-solution-list {
		width: 100%;
	}

	.projects-solution-list h3 {
		font-size: 18px;
		margin-bottom: 10px;
	}

	.team-sidebar-image img {
		aspect-ratio: 1 / 0.92;
	}

	.team-sidebar-body h3,
	.team-sidebar-body ul li,
	.team-sidebar-footer h3 {
		font-size: 18px;
	}

	.team-sidebar-body h3 {
		padding-bottom: 15px;
		margin-bottom: 15px;
	}

	.team-sidebar-footer {
		padding: 15px 20px;
	}

	.member-info-list {
		gap: 20px;
	}

	.member-info-item {
		width: calc(50% - 10px);
		padding: 15px;
	}

	.member-info-item-content h3 {
		font-size: 18px;
	}

	.skills-progress-bar {
		margin-bottom: 20px;
	}

	.skills-progress-bar .skillbar .skill-progress {
		height: 14px;
	}

	.contact-us-form {
		padding: 20px;
	}

	.google-map iframe {
		height: 350px;
	}

	.contact-info-list {
		gap: 20px;
	}

	.contact-info-item {
		width: 100%;
	}

	.contact-item-content h3 {
		font-size: 18px;
	}
}

.text-justify {
	text-align: justify
}

video#myvideo {
	width: 100%;
	height: 100%;
}

.what-we-do-image figure {
	background: #f6f6f6;
}

.what-we-do-content .what-we-do-list {
	width: auto;
}

.phone {
	direction: ltr;
	unicode-bidi: embed;
}


.wizard-steps {
	display: flex;
	justify-content: space-between;
	/* توزيع الخطوات من أول لآخر الخط */
	align-items: center;
	position: relative;
	margin-bottom: 25px;
	padding: 0px;
}

/* الخط الواصل بين الخطوات */
.wizard-steps::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	height: 3px;
	background: #dee2e6;
	z-index: 1;
	transform: translateY(-50%);
}

/* شكل كل خطوة */
.wizard-step {
	position: relative;
	z-index: 2;
	/* عشان يبقى فوق الخط */
	display: flex;
	flex-direction: column;
	align-items: center;
}


.wizard-step .step-number {
	width: 35px;
	height: 35px;
	border-radius: 50%;
	background: #dee2e6;
	color: #6c757d;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	font-size: 16px;
	transition: 0.3s;
}

.wizard-step.active .step-number {
	background: #ad2025;
	color: #fff;
}

.wizard-step.completed .step-number {
	background: #333;
	color: #fff;
}

.wizard-step .step-label {
	margin-top: 8px;
	font-size: 14px;
	font-weight: 500;
}

.bg-primary {
	background: #ad2025 !important;
}

.btn-primary {
	background: #ad2025 !important;
	border-color: #ad2025 !important;
}

.modal-header.bg-primary.text-white {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}

.modal-header .btn-close {
	margin: 0;
}

.form-select {
	padding: .375rem .75rem .375rem 2.25rem;
	background-position: left .75rem center;
}

.why-choose-item {
	position: relative;
	width: calc(33.33% - 60px);
}

.why-choose-item::before {
	left: -40px;
}


.why-choose-item:nth-child(4n + 4):before,
.why-choose-item:first-child:before {
	display: none;
}

.breadcrumb-item+.breadcrumb-item::before {
	content: var(--bs-breadcrumb-divider, "/");
	display: inline-block;
	margin-inline: 0.25rem;
	float: none;
}

.service-item-box {
	display: flex;
	height: 100%;
}


/* ////////////// new /////////////////*/

.about-section {
	font-family: var(--default-font);
	overflow: hidden;
}

/* Main image styling */
.about-section .main-image {
	width: 100%;
	max-height: 420px;
	object-fit: cover;
	border-radius: 16px;
}

/* Smaller floating image box */
.about-section .small-image-box {
	position: absolute;
	bottom: 30px;
	left: 15px;
	width: 50%;
	max-width: 350px;
	overflow: hidden;
	border-radius: 12px;
	background-color: var(--white-color);
	transition: all 0.4s ease;
}

.about-section .small-image-box:hover {
	transform: scale(1.05);
}

.about-section .small-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Decorative line */
.underline-decor {
	width: 70px;
	height: 3px;
	background-color: var(--accent-secondary-color);
	margin-right: auto;
}

/* Button styling */
.btn-custom {
	background-color: var(--accent-secondary-color);
	color: var(--white-color);
	border: none;
	transition: all 0.3s ease;
}

.btn-custom:hover {
	background-color: var(--accent-secondary-color);
	color: var(--white-color);
	transform: translateY(-3px);
}

/* Responsive Fixes */
@media (max-width: 992px) {
	.about-section .small-image-box {
		position: static;
		margin-top: 20px;
		width: 60%;
		max-width: 250px;
		transform: none;
	}
}

@media (max-width: 576px) {
	.about-section .main-image {
		max-height: 300px;
	}

	.about-section .small-image-box {
		width: 80%;
		margin: 15px auto 0;
	}
}


/* about3_ar */

@media (max-width: 992px) {
	.chairman-section h2 {
		font-size: 1.6rem;
	}

	.chairman-section p {
		font-size: 0.95rem;
	}
}

.license-card {
	transition: all 0.3s ease;
	cursor: pointer;
}

.license-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.license-img img {
	height: 220px;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.license-card:hover .license-img img {
	transform: scale(1.05);
}

@media (max-width: 992px) {
	.license-img img {
		height: 200px;
	}

	.license-card .license-content h5 {
		font-size: 1rem;
	}
}


.auto-container {
	position: static;
	max-width: 1200px;
	padding: 0px 15px;
	margin: 0 auto;
}

***/ .sec-title {
	position: relative;
	margin-bottom: 45px;
}

.sec-title .title {
	position: relative;
	font-size: 16px;
	font-weight: 700;
	text-transform: uppercase;
	font-family: 'Poppins', sans-serif;
	display: inline-block;
	color: #5479ef;
	background: linear-gradient(to right, #5479ef 0%, #fc3c02 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.sec-title h2 {
	margin-top: 10px;
}

.sec-title .text {
	margin-top: 18px;
}

.sec-title.light .title {
	background-image: none;
	-webkit-text-fill-color: #ffffff;
}

.sec-title.light .text,
.sec-title.light .title,
.sec-title.light h2 {
	color: #ffffff !important;
	-webkit-text-fill-color: #ffffff !important;
}

.sec-title.centered {
	text-align: center !important;
}

.sec-title .title.style-two {
	color: #ae1f23;
	font-weight: 500;
	background: none;
	text-transform: capitalize;
	-webkit-text-fill-color: #ae1f23;
}

/***

====================================================================
	Section Title Two
====================================================================

***/

.sec-title-two {
	position: relative;
	margin-bottom: 45px;
}

.sec-title-two .title {
	position: relative;
	font-size: 16px;
	color: #ae1f23;
	font-weight: 400;
	display: inline-block;
	text-transform: uppercase;
	font-family: 'Poppins', sans-serif;
}

.sec-title-two h2 {
	margin-top: 10px;
}

.sec-title-two .text {
	margin-top: 18px;
}

.sec-title-two.light .title {
	background-image: none;
	-webkit-text-fill-color: #ffffff;
}

.sec-title-two.light .text,
.sec-title-two.light .title,
.sec-title-two.light h2 {
	color: #ffffff !important;
	-webkit-text-fill-color: #ffffff !important;
}

.sec-title-two.centered {
	text-align: center !important;
}


/* ///////////////// */


.main-timeline {
	position: relative
}

.main-timeline:before {
	content: "";
	display: block;
	width: 2px;
	height: 100%;
	background: #c6c6c6;
	margin: 0 auto;
	position: absolute;
	top: 0;
	left: 0;
	right: 0
}

.main-timeline .timeline {
	margin-bottom: 40px;
	position: relative
}

.main-timeline .timeline:after {
	content: "";
	display: block;
	clear: both
}

.main-timeline .icon {
	width: 18px;
	height: 18px;
	line-height: 18px;
	margin: auto;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0
}

.main-timeline .icon:before,
.main-timeline .icon:after {
	content: "";
	width: 100%;
	height: 100%;
	border-radius: 50%;
	position: absolute;
	top: 0;
	left: 0;
	transition: all 0.33s ease-out 0s
}

.main-timeline .icon:before {
	background: #fff;
	border: 2px solid #232323;
	left: 0px
}

.main-timeline .icon:after {
	border: 2px solid #ae1f23;
	left: 0px
}

.main-timeline .timeline:hover .icon:before {
	left: 3px
}

.main-timeline .timeline:hover .icon:after {
	left: -3px
}

.main-timeline .date-content {
	width: 50%;
	float: left;
	margin-top: 22px;
	position: relative
}

.main-timeline .date-content:before {
	content: "";
	width: 36.5%;
	height: 2px;
	background: #c6c6c6;
	margin: auto 0;
	position: absolute;
	top: 0;
	right: 10px;
	bottom: 0
}

.main-timeline .date-outer {
	width: 125px;
	height: 125px;
	font-size: 16px;
	text-align: center;
	margin: auto;
	z-index: 1
}

.main-timeline .date-outer:before,
.main-timeline .date-outer:after {
	content: "";
	width: 125px;
	height: 125px;
	margin: 0 auto;
	border-radius: 50%;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	transition: all 0.33s ease-out 0s
}

.main-timeline .date-outer:before {
	background: #fff;
	border: 2px solid #232323;
	left: 0px
}

.main-timeline .date-outer:after {
	border: 2px solid #ae1f23;
	left: 0px
}

.main-timeline .timeline:hover .date-outer:before {
	left: 6px
}

.main-timeline .timeline:hover .date-outer:after {
	left: -6px
}

.main-timeline .date {
	width: 100%;
	margin: auto;
	position: absolute;
	top: 27%;
	left: 0
}

.main-timeline .month {
	font-size: 18px;
	font-weight: 700
}

.main-timeline .year {
	display: block;
	font-size: 30px;
	font-weight: 700;
	/*color: #232323;  */
	color: #ae1f23;
	line-height: 36px
}

.main-timeline .timeline-content {
	width: 50%;
	padding: 20px 0 20px 50px;
	float: right
}

.main-timeline .title {
	font-size: 19px;
	font-weight: 700;
	line-height: 24px;
	color: #ae1f23;
	margin: 0 0 15px 0
}

.main-timeline .description {
	margin-bottom: 0
}

.main-timeline .timeline:nth-child(2n) .date-content {
	float: right
}

.main-timeline .timeline:nth-child(2n) .date-content:before {
	left: 10px
}

.main-timeline .timeline:nth-child(2n) .timeline-content {
	padding: 20px 50px 20px 0;
	text-align: left
}

@media only screen and (max-width: 991px) {
	.main-timeline .date-content {
		margin-top: 35px
	}

	.main-timeline .date-content:before {
		width: 22.5%
	}

	.main-timeline .timeline-content {
		padding: 10px 0 10px 30px
	}

	.main-timeline .title {
		font-size: 17px
	}

	.main-timeline .timeline:nth-child(2n) .timeline-content {
		padding: 10px 30px 10px 0
	}
}

@media only screen and (max-width: 767px) {
	#places-map {
		display: none
	}

	.main-timeline:before {
		margin: 0;
		left: 7px
	}

	.main-timeline .timeline {
		margin-bottom: 20px
	}

	.main-timeline .timeline:last-child {
		margin-bottom: 0
	}

	.main-timeline .icon {
		margin: auto 0
	}

	.rtl .main-timeline .icon {
		margin: auto 0;
		right: -10px;
	}

	.main-timeline .date-content {
		width: 95%;
		float: right;
		margin-top: 0
	}

	.main-timeline .date-content:before {
		display: none
	}

	.main-timeline .date-outer {
		width: 110px;
		height: 110px
	}

	.main-timeline .date-outer:before,
	.main-timeline .date-outer:after {
		width: 110px;
		height: 110px
	}

	.main-timeline .date {
		top: 30%
	}

	.main-timeline .year {
		font-size: 24px
	}

	.main-timeline .timeline-content,
	.main-timeline .timeline:nth-child(2n) .timeline-content {
		width: 95%;
		text-align: center;
		padding: 10px 0
	}

	.rtl .main-timeline .timeline-content,
	.rtl .main-timeline .timeline:nth-child(2n) .timeline-content {
		width: 95%;
		margin-right: 20px;
		text-align: center;
		padding: 10px 0
	}

	.main-timeline .title {
		margin-bottom: 10px
	}
}


/* //////////// sustainability //////////////// */
#sustainability {
	font-family: var(--default-font);
	background-color: var(--secondary-color);
	color: var(--text-color);
	line-height: 1.8;
	direction: rtl;
	overflow-x: hidden;
}

/* === SECTION WRAPPER === */
.process-section {
	padding: 50px 0;
	background: var(--white-color);
	border-radius: 20px;
	box-shadow: 0 0 30px rgba(0, 0, 0, 0.08);
}

.process-section .auto-container {
	max-width: 1300px;
	margin: 0 auto;
}

/* === SKILL COLUMN === */
.skill-column .inner-column {
	background: var(--secondary-color);
	padding: 30px;
	border-radius: 16px;
	box-shadow: 0 0 25px rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;
}

.skill-column .inner-column:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* === SIDEBAR === */
.sustainability-sidebar {
	background-color: var(--primary-color);
	color: var(--white-color);
	border-radius: 18px;
	padding: 25px;
	box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
}

/* .sustainability-sidebar h6 {
	font-weight: 700;
	color: var(--white-color);
	border-bottom: 2px solid var(--accent-secondary-color);
	padding-bottom: 10px;
	margin-bottom: 20px;
} */

.sustainability-sidebar ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.sustainability-sidebar ul li {
	background: rgba(255, 255, 255, 0.05);
	margin-bottom: 10px;
	padding: 12px 15px;
	border-radius: 10px;
	transition: all 0.3s ease;
}

.sustainability-sidebar ul li:hover {
	background: var(--accent-secondary-color);
	transform: translateX(-5px);
}

.sustainability-sidebar ul li a {
	color: var(--white-color);
	text-decoration: none;
	display: block;
	font-weight: 500;
}

/* === SUPPORT BLOCK === */
.support {
	margin-top: 30px;
	text-align: center;
}

.support h6 {
	color: var(--white-color);
	background-size: cover;
	background-position: center;
	padding: 10px;
	border-radius: 10px;
	font-weight: 700;
}

/* .support img {
	max-width: 120px;
	margin-top: 15px;
	border-radius: 12px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
} */

/* === ESG SECTIONS === */
.title-head {
	margin-bottom: 15px;
}

.title-head img {
	width: 80px;
	height: 80px;
	object-fit: contain;
	margin-bottom: 10px;
	transition: all 0.3s ease;
}

.title-head:hover img {
	transform: scale(1.1);
}

.title-head h6 {
	font-weight: 700;
	color: var(--accent-color);
}

.Development-body {
	background: var(--secondary-color);
	border-radius: 16px;
	padding: 20px;
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
	text-align: justify;
}

/* === LIST STYLES === */
.about-list,
.list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.about-list li,
.list li {
	background: var(--white-color);
	border: 1px solid var(--divider-color);
	border-radius: 12px;
	padding: 12px 15px;
	margin-bottom: 10px;
	font-weight: 500;
	transition: all 0.3s ease;
}

.about-list li:hover,
.list li:hover {
	border-color: var(--accent-secondary-color);
	box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
	transform: translateY(-3px);
}

.about-list li a {
	color: var(--accent-color);
	text-decoration: none;
	font-weight: 600;
}

/* === SERVICE BLOCKS === */
.service-block .inner-box {
	background: var(--secondary-color);
	padding: 25px;
	margin-bottom: 25px;
	border-radius: 18px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
	transition: all 0.3s ease;
}

.service-block .inner-box:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.service-block .icon-box {
	position: relative;
	margin-bottom: 15px;
}

.service-block .icon img {
	width: 70px;
	height: 70px;
}

.service-block h6 {
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 10px;
}

.service-block .text {
	color: var(--text-color);
	font-size: 15px;
}

/* === IMAGES === */
.inner-column img {
	width: 100%;
	border-radius: 16px;
	box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.sustainability-sidebar {
	background-color: var(--white-color);
	color: var(--text-color);
	border-radius: 16px;
	padding: 25px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
	border: 1px solid var(--divider-color);
	transition: all 0.3s ease;
}

.sustainability-sidebar h6 {
	font-weight: 700;
	color: var(--primary-color);
	border-bottom: 2px solid var(--accent-secondary-color);
	padding-bottom: 10px;
	margin-bottom: 20px;
	font-size: 18px;
}

.sustainability-sidebar h5 {
	font-weight: 700;
	/* color: var(--primary-color); */
	/* border-bottom: 2px solid var(--accent-secondary-color); */
	padding-bottom: 10px;
	margin-bottom: 20px;
	font-size: 18px;
}

.sustainability-sidebar ul li {
	background: var(--secondary-color);
	margin-bottom: 10px;
	padding: 12px 15px;
	border-radius: 10px;
	transition: all 0.3s ease;
}

.sustainability-sidebar ul li:hover {
	background: var(--accent-secondary-color);
	transform: translateX(-5px);
}

.sustainability-sidebar ul li a {
	color: var(--primary-color);
	text-decoration: none;
	display: block;
	font-weight: 600;
}

.sustainability-sidebar ul li:hover a {
	color: var(--white-color);
}

/* === SUPPORT BLOCK === */
.support {
	margin-top: 30px;
	text-align: center;
}

.support h6,
h5 {
	color: var(--white-color);
	/* background-image: url('https://demo.fnrco.com.sa/frontend/images/background/green.png'); */
	background-size: cover;
	background-position: center;
	padding: 10px;
	border-radius: 10px;
	font-weight: 700;
}

.support img {
	/* max-width: 100px; */
	margin-top: 15px;
	padding: 0 1rem;
	/* border-radius: 10px; */
	/* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); */
}

/* === RESPONSIVE === */
@media (max-width: 991px) {

	.skill-column,
	.image-column,
	.content-column {
		margin-bottom: 30px;
	}

	.sustainability-sidebar {
		text-align: center;
	}
}

@media (max-width: 576px) {
	h3 {
		font-size: 20px;
	}

	p,
	span {
		font-size: 14px;
	}
}


/* ////// work ith us ////// */

.fnrco-experience-section {
	background-color: var(--secondary-color);
	padding: 80px 0;
	font-family: var(--default-font);
	direction: rtl;
}

.fnrco-container {
	max-width: 1300px;
	margin: 0 auto;
	padding: 0 20px;
}

.fnrco-experience-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 30px;
}

.fnrco-experience-card {
	background-color: var(--white-color);
	border: 1px solid var(--divider-color);
	border-radius: 16px;
	padding: 30px 25px;
	text-align: center;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.fnrco-experience-card::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	width: 0%;
	height: 100%;
	background-color: var(--accent-secondary-color);
	opacity: 0.05;
	transition: width 0.4s ease;
}

.fnrco-experience-card:hover::before {
	width: 100%;
}

.fnrco-experience-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
}

.fnrco-icon {
	background-color: var(--secondary-color);
	border-radius: 50%;
	width: 80px;
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px auto;
	transition: all 0.3s ease;
}

.fnrco-icon img {
	width: 45px;
	height: 45px;
	object-fit: contain;
	transition: transform 0.3s ease;
}

.fnrco-experience-card:hover .fnrco-icon img {
	transform: scale(1.15);
}

.fnrco-experience-card h6 {
	color: var(--accent-color);
	font-weight: 700;
	margin-bottom: 12px;
	font-size: 18px;
}

.fnrco-experience-card p {
	color: var(--text-color);
	font-size: 15px;
	line-height: 1.8;
}

/* Responsive */
@media (max-width: 768px) {
	.fnrco-experience-section {
		padding: 50px 0;
	}

	.fnrco-experience-card {
		padding: 25px 20px;
	}

	.fnrco-experience-card h6 {
		font-size: 16px;
	}

	.fnrco-experience-card p {
		font-size: 14px;
	}
}

.fnrco-advantage-section {
	background-color: var(--secondary-color);
	padding-bottom: 90px;
	direction: rtl;
	font-family: var(--default-font);
}

.fnrco-container {
	max-width: 1300px;
	margin: 0 auto;
	padding: 0 20px;
}

.fnrco-advantage-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
	gap: 40px;
}

.fnrco-advantage-card {
	background-color: var(--white-color);
	border: 1px solid var(--divider-color);
	border-radius: 20px;
	padding: 35px 30px;
	box-shadow: 0 6px 25px rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.fnrco-advantage-card::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	width: 0%;
	height: 100%;
	background-color: var(--accent-secondary-color);
	opacity: 0.06;
	transition: width 0.4s ease;
}

.fnrco-advantage-card:hover::before {
	width: 100%;
}

.fnrco-advantage-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.fnrco-advantage-title {
	color: var(--accent-color);
	font-weight: 800;
	font-size: 20px;
	margin-bottom: 25px;
	border-bottom: 2px solid var(--accent-secondary-color);
	display: inline-block;
	padding-bottom: 5px;
}

.fnrco-advantage-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.fnrco-advantage-list li {
	margin-bottom: 18px;
	padding-right: 10px;
	position: relative;
}

.fnrco-advantage-list li::before {
	content: "✓";
	position: absolute;
	right: -15px;
	color: var(--accent-secondary-color);
	font-weight: bold;
}

.fnrco-advantage-list strong {
	color: var(--primary-color);
	font-weight: 700;
	display: block;
	margin-bottom: 5px;
}

.fnrco-advantage-list span {
	color: var(--text-color);
	font-size: 15px;
	line-height: 1.8;
}

/* Hover effect */
.fnrco-advantage-card:hover .fnrco-advantage-title {
	color: var(--accent-secondary-color);
	border-color: var(--accent-secondary-color);
}

/* Responsive */
@media (max-width: 768px) {
	.fnrco-advantage-section {
		padding: 60px 0;
	}

	.fnrco-advantage-title {
		font-size: 18px;
	}

	.fnrco-advantage-list span {
		font-size: 14px;
	}
}


.fnrco-visual-section {
	background-color: var(--secondary-color);
	padding: 100px 0;
	direction: rtl;
	font-family: var(--default-font);
}

.fnrco-container {
	max-width: 1300px;
	margin: 0 auto;
	padding: 0 20px;
}

.fnrco-visual-grid {
	display: grid;
	grid-template-columns: 1fr 2fr;
	align-items: center;
	gap: 40px;
}

.fnrco-visual-item {
	display: flex;
	justify-content: center;
	align-items: center;
}

.fnrco-visual-image {
	background-color: var(--white-color);
	border-radius: 18px;
	padding: 15px;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
	overflow: hidden;
	transition: all 0.4s ease;
	position: relative;
}

.fnrco-visual-image::after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	width: 0%;
	height: 100%;
	background-color: var(--accent-secondary-color);
	opacity: 0.05;
	transition: width 0.4s ease;
}

.fnrco-visual-image:hover::after {
	width: 100%;
}

.fnrco-visual-image img {
	width: 100%;
	height: auto;
	border-radius: 14px;
	transition: transform 0.4s ease;
}

.fnrco-visual-image:hover img {
	transform: scale(1.05);
}

/* For visual hierarchy */
.fnrco-visual-item.small {
	grid-column: 1;
}

.fnrco-visual-item.large {
	grid-column: 2;
}

/* Responsive */
@media (max-width: 991px) {
	.fnrco-visual-grid {
		display: flex;
		flex-direction: column;
	}

	.fnrco-visual-item {
		order: unset;
	}

	.fnrco-visual-section {
		padding: 70px 0;
	}
}

@media (max-width: 576px) {
	.fnrco-visual-image {
		padding: 10px;
		border-radius: 12px;
	}
}


/* /////////////////////////business_council_ar */

.fnrco-council-section {
	background-color: var(--secondary-color);
	padding: 100px 0;
	direction: rtl;
	font-family: var(--default-font);
	text-align: center;
}

/* === CONTAINER === */
.fnrco-container {
	max-width: 1300px;
	margin: 0 auto;
	padding: 0 20px;
}

/* === HEADER (logo + text) === */
.fnrco-council-header {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 40px;
	margin-bottom: 60px;
}

.fnrco-council-logo img {
	max-width: 180px;
	border-radius: 12px;
	padding: 1rem;
	box-shadow: 0 4px 18px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease;
}

.fnrco-council-logo img:hover {
	transform: scale(1.05);
}

.fnrco-council-text {
	max-width: 700px;
}

.fnrco-council-text p {
	color: var(--text-color);
	font-size: 16px;
	line-height: 1.9;
	text-align: justify;
}

/* === GRID OF COUNCILS === */
.fnrco-council-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 40px 30px;
	justify-items: center;
}

.fnrco-council-card {
	background-color: var(--white-color);
	border-radius: 16px;
	padding: 20px 15px;
	box-shadow: 0 6px 25px rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;
	border: 1px solid var(--divider-color);
	width: 100%;
	max-width: 200px;
}

.fnrco-council-card img {
	width: 100%;
	height: 100px;
	object-fit: contain;
	transition: transform 0.3s ease;
	margin-bottom: 12px;
}

.fnrco-council-card p {
	font-size: 15px;
	color: var(--accent-color);
	font-weight: 600;
	line-height: 1.6;
}

.fnrco-council-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
	border-color: var(--accent-secondary-color);
}

.fnrco-council-card:hover img {
	transform: scale(1.08);
}

.fnrco-council-card:hover p {
	color: var(--accent-secondary-color);
}

/* === RESPONSIVE === */
@media (max-width: 991px) {
	.fnrco-council-header {
		flex-direction: column;
		text-align: center;
	}

	.fnrco-council-logo img {
		max-width: 150px;
	}

	.fnrco-council-text p {
		font-size: 15px;
	}
}

@media (max-width: 576px) {
	.fnrco-council-section {
		padding: 70px 0;
	}

	.fnrco-council-card {
		padding: 15px;
		max-width: 180px;
	}

	.fnrco-council-card p {
		font-size: 14px;
	}
}

.hero-slider-cards {
	padding: 60px 0;
	background-color: var(--secondary-color);
	font-family: var(--default-font);
}

.cards-container {
	display: flex;
	justify-content: center;
	gap: 25px;
	flex-wrap: wrap;
	margin-bottom: 60px;
	/* space for nav buttons */
}

.card-sctors {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	background: linear-gradient(145deg, var(--white-color), #f0f0f0);
	border-radius: 20px;
	padding: 25px;
	width: 200px;
	min-height: 220px;
	/* increased height */
	text-decoration: none;
	justify-content: center;
	transition: transform 0.4s ease, box-shadow 0.4s ease;
	color: var(--primary-color);
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.card-sctors:hover {
	transform: translateY(-8px);
	box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.card-sctors img {
	width: 70px;
	height: 70px;
	margin-bottom: 18px;
}

.card-sctors h4 {
	font-size: 1.15rem;
	font-weight: 600;
}

.swiper-pagination {
	bottom: 10px !important;
}

@media(max-width: 768px) {
	.card {
		min-height: 180px;
	}
}


/* ////////// القطاعات //////////// */

/* Section Wrapper */
.clients-section {
	/* padding: 60px 0; */
	font-family: var(--default-font);
	/* background: var(--secondary-color); */
	position: relative;
	margin-bottom: 2rem;
}

/* Title */
/* .section-title {
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 40px;
	color: var(--accent-color);
	position: relative;
} */

.section-title::after {
	content: "";
	width: 80px;
	height: 3px;
	background: var(--accent-secondary-color);
	display: block;
	margin: 12px auto 0;
	border-radius: 2px;
}

/* Modern Clients Grid */
.clients-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
	gap: 30px;
	align-items: center;
	justify-items: center;
}

/* Each Client Logo */
.client-item {
	background: var(--white-color);
	padding: 18px 22px;
	border-radius: 12px;
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;
	border: 1px solid var(--divider-color);
}

.client-item img {
	width: 100%;
	height: 60px;
	object-fit: contain;
	filter: grayscale(100%);
	transition: 0.3s;
}

/* Hover Effects */
.client-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
	border-color: var(--accent-secondary-color);
}

.client-item:hover img {
	filter: grayscale(0%);
}



/* ================================
   Sidebar Base
================================*/
.site-sidebar {
	position: fixed;
	top: 0;
	right: -320px;
	width: 320px;
	height: 100vh;
	background: #fff;
	box-shadow: -5px 0 25px rgba(0, 0, 0, .15);
	transition: right .35s ease;
	z-index: 999999;
	border-radius: 0 0 0 25px;
	overflow-y: auto;
}

.site-sidebar.active {
	right: 0;
}

.sidebar-inner {
	padding: 28px 25px;
}

/* زر الإغلاق */
.sidebar-close {
	font-size: 28px;
	cursor: pointer;
	color: #222;
	display: block;
	text-align: left;
	transition: .2s ease;
}

.sidebar-close:hover {
	color: #ad2025;
	transform: rotate(90deg);
}

/* ================================
   Menu
================================*/
.sidebar-menu {
	list-style: none;
	padding: 0;
	margin: 0;
}

.sidebar-menu li {
	margin-bottom: 14px;
}

.sidebar-link {
	display: block;
	padding: 12px 18px;
	font-size: 18px;
	color: #222;
	background: #f8f8f8;
	border-radius: 10px;
	text-decoration: none;
	font-weight: 600;
	transition: .25s ease;
	box-shadow: 0 2px 5px rgba(0, 0, 0, .05);
}

.sidebar-link:hover {
	background: #ad2025;
	color: #fff;
	transform: translateX(-5px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, .15);
}

/* ================================
   Submenu
================================*/
.sidebar-submenu>.sidebar-toggle {
	position: relative;
	/* padding-right: 40px; */
}

.sidebar-submenu-arrow::after {
	content: "\f107";
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	position: absolute;
	left: 18px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 15px;
	transition: .3s;
}

.sidebar-submenu.open .sidebar-submenu-arrow::after {
	transform: translateY(-50%) rotate(180deg);
}

.sidebar-submenu ul {
	display: none;
	list-style: none;
	padding-right: 20px;
	margin-top: 10px;
	border-right: 2px solid #ad2025;
}

.sidebar-submenu.open ul {
	display: block;
	animation: fadeSlide .35s ease forwards;
}

.sidebar-submenu ul li a {
	background: transparent !important;
	padding: 8px 5px;
	color: #444 !important;
	font-size: 16px;
	font-weight: 500;
}

.sidebar-submenu ul li a:hover {
	color: #ad2025 !important;
	transform: translateX(-3px);
}

@keyframes fadeSlide {
	from {
		opacity: 0;
		transform: translateY(-5px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}