/* Fonts Start */
/* @font-face {
	font-family: "Peyda";
	src: url("../fonts/Peyda/Peyda-Regular.ttf") format("truetype");
	font-weight: 300;
}
@font-face {
	font-family: "Peyda";
	src: url("../fonts/Peyda/Peyda-Medium.ttf") format("truetype");
	font-weight: 400;
}
@font-face {
	font-family: "Peyda";
	src: url("../fonts/Peyda/Peyda-Bold.ttf") format("truetype");
	font-weight: 500;
} */
@font-face {
	font-family: "Roboto";
	src: url(../fonts/Roboto/Roboto-VariableFont_wdth\wght.ttf);
}
/* Fonts End */

/* Resets start */
body{
	overflow-x: hidden;
}
a {
	text-decoration: none;
	color: black !important;
}
a,
p,
span,
h1,
h2,
h3,
h4,
h5,
h6,
li,
ul,
ol,
button,
input,
textarea,
select {
	font-family: "Peyda", "Roboto";
}
/* Resets end */
.main-header {
	position: sticky;
	top: 0;
	z-index: 1030;
	--angle: 45deg;
	background: linear-gradient(
		var(--angle),
		oklab(86.696% 0.0001 -0.00435 / 0.693),
		oklab(88.3% 0.001 -0.003 / 0.693),
		oklab(96.5% -0.003 -0.005 / 0.693),
		oklab(98.5% 0 0 / 0.693)
	);
	border-radius: 0;
	backdrop-filter: blur(9px);
	-webkit-backdrop-filter: blur(9px);
	transition: border-radius 0.3s ease, box-shadow 0.3s ease;
}

.main-header.scrolled {
	border-radius: 100px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	border: 2px solid #e09e00;
	top: 7px;
}

.navbar {
	/* background: #fff; */
	z-index: 1050;
}

/* Menu link underline animation */
.navbar-nav .nav-link {
	position: relative;
	transition: all 0.3s ease;
}
.dropdown-toggle::after {
	display: none;
}

.navbar-nav .nav-link:hover::after {
	width: 100%;
}
.navbar-nav .nav-link:hover {
	background: #e09e00;
	border-radius: 100px;
	color: white !important;
	padding: 6px 15px;
}
@media (min-width: 1000px) {
	.navbar-nav .nav-link {
		border-right: 3px solid #e09d009b;
		margin-left: 5px;
	}
}
/* Dropdown hover */
.dropdown:hover .dropdown-menu {
	display: block;
	margin-top: 0;
	animation: fadeIn 0.3s ease-in-out;
}
.dropdown-menu li {
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	padding: 5px;
	transition: all 0.3s ease-in-out;
}
.dropdown-menu li:last-child {
	border: none;
}
.dropdown-menu li a {
	transition: all 0.3s ease-in-out;
}
.dropdown-menu li a:hover {
	background: #e09e00;
	color: white !important;
	border-radius: 100px;
}
@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Offcanvas fullscreen */
.offcanvas.offcanvas-end {
	width: 100% !important;
	max-width: 100%;
	transform: translateX(100%); /* always hidden to the right */
}

.offcanvas.show {
	animation: slideIn 0.4s forwards;
}

.offcanvas.hide-anim {
	animation: slideOut 0.4s forwards;
}

@keyframes slideIn {
	from {
		transform: translateX(100%);
	}
	to {
		transform: translateX(0);
	}
}

@keyframes slideOut {
	from {
		transform: translateX(0);
	}
	to {
		transform: translateX(100%);
	}
}

/* Contact button */
.contact-btn {
	font-size: 12px;
	padding: 6px 12px;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	gap: 12px;
	border-right: 1px solid hsl(0deg 0% 0% / 40%);
}

/* Search box */
.search-box {
	border-radius: 7px;
	padding: 5px 10px;
	display: flex;
	align-items: center;
	background: #f0eced;
	transition: all 0.3s ease;
}

.search-box input {
	border: none;
	outline: none;
	background: transparent;
	padding: 5px;
}

.search-box svg {
	width: 18px;
	height: 18px;
	cursor: pointer;
	fill: #555;
}
.search-box:hover {
	background-color: #fff;
	border: 1px solid #ddd;
}

/* slider start */
.owl-carousel .item {
	position: relative;
	height: 400px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	text-align: center;
	overflow: hidden;
}

.owl-carousel .item img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: -1;
}

.owl-carousel .item h1 {
	font-size: 60px;
	margin-bottom: 15px;
	z-index: 1;
	color: #fff;
}

.owl-carousel .item p {
	font-size: 32px;
	margin-bottom: 30px;
	z-index: 1;
	color: #fff;
}

/* Custom Button */
.custom-btn {
	display: inline-flex;
	align-items: center;
	position: relative;
	text-decoration: none;
	border-radius: 100px;
	overflow: hidden;
	z-index: 1;
	direction: rtl;
}

.custom-btn .text-div {
	background: #e09e00;
	color: #fff;
	padding: 12px 25px;
	border-radius: 100px;
	font-size: 18px;
	font-weight: bold;
	position: relative;
	z-index: 2;
	transition: background 0.4s ease;
}

/* Hover black fill effect */
.custom-btn .text-div::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: #000;
	border-radius: 100px;
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.6s ease;
	z-index: -1;
}

.custom-btn:hover .text-div::before {
	transform: scaleX(1);
}

.custom-btn .icon-div {
	background: #000;
	padding: 12px;
	border-radius: 100px;
	margin-right: -41px;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100px;
	height: 44px;
}
@media (min-width: 577px) {
	.custom-btn .icon-div {
		height: 51px;
	}
}
.custom-btn .icon-div svg {
	width: 45px;
	height: 46px;
	margin-right: 26px;
}

/* Dots */
.owl-theme .owl-dots .owl-dot span {
	width: 12px;
	height: 12px;
	margin: 5px 3px;
	background: rgba(0, 0, 0, 0.12);
	border-radius: 50%;
	transition: background 0.3s;
}

.owl-theme .owl-dots .owl-dot.active span {
	background: #e09e00;
	border: 1px solid #e09e00;
}

/* Arrows */
.owl-theme .owl-nav [class*="owl-"] {
	background: rgba(0, 0, 0, 0.12);
	color: #fff;
	font-size: 24px;
	padding: 5px 15px;
	margin: 0 5px;
	border-radius: 50%;
	transition: background 0.3s;
}

.owl-theme .owl-nav [class*="owl-"]:hover {
	background: #e09e00;
}

/* Responsive */
@media (max-width: 992px) {
	.owl-carousel .item h1 {
		font-size: 40px;
	}
	.owl-carousel .item p {
		font-size: 24px;
	}
}

@media (max-width: 576px) {
	.owl-carousel .item h1 {
		font-size: 28px;
	}
	.owl-carousel .item p {
		font-size: 18px;
	}
	.custom-btn .text-div {
		padding: 10px 18px;
		font-size: 16px;
	}
	.custom-btn .icon-div {
		padding: 10px;
	}
}
.owl-carousel .item h1,
.owl-carousel .item p {
	/* text-shadow: 
    0 0 3px rgba(0, 0, 0, 0.6),
    0 0 6px rgba(0, 0, 0, 0.4);  */
	text-shadow: 0 0 8px rgba(0, 0, 0, 0.8);
}
/* slider end */

/* service section start */
.services {
	background: #f9f9f9;
}

.service-box {
	background: #fff;
	border-radius: 16px;
	height: 273px;
	overflow: hidden;
	position: relative;
	z-index: 1;
	transition: all 0.4s ease;
	padding: 60px 19px !important;
}

.service-box .blob-bg {
	position: absolute;
	width: 150%;
	height: 150%;
	object-fit: contain;
	z-index: -1;
	transform: scale(1);
	transition: transform 0.5s ease, opacity 0.5s ease;
}

.service-box:hover .blob-bg {
	transform: scale(7.7);
	z-index: -1;
}
.blob-1 {
	top: 0px;
}
.blob-2 {
	top: 0px;
}
.blob-3 {
	top: 0;
	right: 0px;
}
.blob-4,
.blob-5 {
	left: 0px;
	top: 0;
}
.blob-6 {
	bottom: 0;
}
.blob-7 {
	top: 0;
	right: 0;
}
.blob-8 {
	top: 0;
	right: 0;
}
.service-title {
	font-size: 24px;
	font-weight: bold;
	margin-bottom: 8px;
}

.service-sub {
	font-size: 12px;
	opacity: 0.8;
	margin-bottom: 12px;
}

.readmore-btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: #fff;
	padding: 6px 14px;
	border-radius: 100px;
	font-size: 12px;
	text-decoration: none;
	transition: background 0.3s;
	height: 28px;
}
.service-btn-arrow {
	background: #e09e00;
	border-radius: 100px;
	padding: 3px;
	transform: scale(0.8);
}
/* service section end */

/* feature section start */
.features-section {
	background-image: url("../media/background/features.png"); /* Set your background image */
	background-size: cover;
	background-position: center;
	direction: rtl; /* Important for Farsi layout */
	color: #fff; /* Adjust text color if needed */
}
.feature-item h3,
.feature-item p {
	text-align: center;
	color: #000;
}

/* Hover effect */
.feature-item {
	transition: all 0.3s ease;
	cursor: pointer;
	cursor: pointer;
	border: 8px solid #ffe25d;
	height: 375px;
	border-radius: 7px;
	padding: 20px;
}

.feature-item:hover {
	transform: translateY(-10px);
	background-color: rgb(255, 255, 255);
	border: 8px solid #b09000;
}

.feature-img-wrapper {
	overflow: hidden;
	display: inline-block;
}

.feature-img {
	transition: transform 0.3s ease;
}

.feature-item:hover .feature-img {
	transform: scale(1.1);
}

.feature-subtitle {
	opacity: 0.8;
	transition: transform 0.3s ease, opacity 0.3s ease;
}

.feature-item:hover .feature-subtitle {
	transform: translateY(-5px);
	opacity: 1;
}
/* feature section end */

/* cta section start */
.cta-section {
	background-image: url("../media/background/cta.png");
	background-size: cover;
	background-position: center;
	padding: 80px 0;
	direction: rtl;
	color: #fff;
}

/* Image Styles */
.cta-img-wrapper {
	position: relative;
	width: fit-content;
	margin: 0 auto;
}

.cta-main-img {
	border-radius: 6px;
	max-height: 450px;
	/* box-shadow: 9px 8px 16.899999618530273px 0px rgba(0, 0, 0, 54%); */
}

.cta-floating-img {
	position: absolute;
	top: -20px;
	right: -20px;
	width: 60%; /* Adjust floating image size */
	border-radius: 6px;
	/* box-shadow: 9px 8px 16.899999618530273px 0px rgba(0, 0, 0, 54%); */
	transition: transform 0.3s ease;
}

/* Optional hover effect for floating image */
.cta-floating-img:hover {
	transform: translateY(-10px);
}

/* Text Styling */
.cta-title,
.cta-subtitle {
	color: #160a55;
}
.cta-title {
	margin-bottom: 20px;
}

.cta-subtitle {
	margin-bottom: 30px;
}

/* Responsive Adjustments */
@media (max-width: 767px) {
	.cta-floating-img {
		position: relative;
		top: -132px;
		right: 0;
		width: 80%;
		margin-top: -30px;
		display: block;
		margin-left: auto;
		margin-right: auto;
	}

	.cta-title {
		font-size: 36px;
	}

	.cta-subtitle {
		font-size: 20px;
	}
}
/* cta section end */

/* blogs section start */
.blog-section {
	background-color: #f2f4f5;
}
a.showmorebtn {
	background: white;
	border-radius: 100px;
	border: 0.3px solid #0000001a;
	padding: 6px 16px;
	transition: all 0.3s ease-in-out;
}
a.showmorebtn:hover {
	filter: invert(1);
}
.blog-card {
	height: 300px;
	border-radius: 8px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	position: relative;
	overflow: hidden;
	transition: transform 0.3s ease;
	padding: 10px;
	box-shadow: 27px 38px 13px 0px rgba(0, 0, 0, 0%),
		17px 25px 12px 0px rgba(0, 0, 0, 1%), 10px 14px 10px 0px rgba(0, 0, 0, 3%),
		4px 6px 8px 0px rgba(0, 0, 0, 5%), 1px 2px 4px 0px rgba(0, 0, 0, 6%);
}

.blog-card:hover {
	transform: translateY(-5px);
}

.blog-img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0;
	transition: transform 0.5s ease;
}
.blog-card:hover .blog-img {
	transform: scale(1.05);
}
.blog-text {
	max-width: 70%; /* Limit text width */
	overflow: hidden;
}

.blog-text h4,
.blog-text p {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.blog-card-footer {
	position: relative;
	z-index: 1;
	border-radius: 8px;
	background: rgb(0 0 0 / 45%);
	backdrop-filter: blur(4.6px);
	-webkit-backdrop-filter: blur(4.6px);
}

.blog-btn {
	width: 45px;
	height: 45px;
	border: 2px solid #e09e00;
	background: transparent;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
	cursor: pointer;
}

.blog-btn svg {
	transition: all 0.3s ease;
	position: relative;
	z-index: 2;
}

.blog-btn .fill {
	position: absolute;
	top: var(--y, 50%);
	left: var(--x, 50%);
	width: 0;
	height: 0;
	background: rgb(255, 255, 255);
	border-radius: 5px;
	transform: translate(-50%, -50%);
	transition: width 0.3s ease, height 0.3s ease;
	z-index: 1;
}

.blog-btn:hover .fill {
	width: 100px;
	height: 100px;
}

.blog-btn:hover svg {
	stroke: #000000;
}

/* Responsive */
@media (max-width: 767px) {
	.blog-card {
		height: 250px;
	}
	.blog-card-footer h4 {
		font-size: 16px;
	}
	.blog-card-footer p {
		font-size: 10px;
	}
}
/* blogs section end */

/* footer start */
.footer-section {
	background-color: #141b34;
	direction: rtl;
}

.footer-contact {
	border-bottom: 0.4px solid rgba(255, 255, 255, 0.13);
	width: 50%;
}

.footer-link:last-child,
.footer-contact:last-child {
	border-bottom: none;
}

.footer-section a:hover {
	color: #e09e00;
	text-decoration: none;
}

.back-to-top button {
	background: transparent;
	border: none;
	cursor: pointer;
}

.back-to-top button svg {
	transition: transform 0.3s ease;
}

.back-to-top button:hover svg {
	transform: translateY(-5px);
}

/* Responsive */
@media (max-width: 767px) {
	.back-to-top {
		justify-content: center;
	}
}
.social-links a {
	border: 1px solid white;
	border-radius: 100px;
	padding: 10px;
}
.social-links a:last-child {
	background-color: white;
}
.social-links a:hover img {
	filter: invert(1);
}
.social-links a:hover {
	background-color: white;
}
.social-links a:hover:last-child {
	background-color: rgb(0, 0, 0);
}
.btt-btn,
.social-links a,
.footer-link a {
	transition: all 0.3s ease-in-out;
}
.back-to-top:hover .btt-btn {
	filter: invert(1);
}
.footer-link a:hover {
	color: #e09e00 !important;
}
/* footer end */

/* Blog post page start */

.blog-post-section {
	background: #fff;
	color: #141b34;
}
.post-content {
	font-size: 1.1rem;
	line-height: 1.8;
	max-width: 700px;
	margin: auto;
}
.post-content h2,
.post-content h3 {
	margin-top: 2rem;
}
.author-box {
	background: #f8f9fa;
}
.blog-post-section figure img {
	height: 369px;
	object-fit: cover;
}
/* Blog post page end */

/* blog post page archive start */
.blog-archive .card-title {
	font-size: 18px;
}
.blog-archive .card-text {
	font-size: 14px;
	line-height: 1.6;
}
.blog-archive .btn {
	border-radius: 6px;
}

.blog-tags.d-flex.flex-row.gap-2 {
	position: absolute;
	top: 9px;
	z-index: 99;
}
span.blog-tag {
	background: #ffffff21;
	border-radius: 100px;
	padding: 3px 17px;
	color: #e2e2e2;
	font-weight: 500;
	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
	backdrop-filter: blur(5px);
	-webkit-backdrop-filter: blur(5px);
	border: 1px solid rgba(255, 255, 255, 0.3);
}

/* paggination */
.w-embed:before,
.w-embed:after {
	content: " ";
	grid-area: 1/1/2/2;
	display: table;
}
.w-embed:after {
	clear: both;
}
a {
	transition: all 0.2s;
}
.w-pagination-wrapper {
	flex-wrap: wrap;
	justify-content: center;
	display: flex;
}
.w-pagination-previous,
.w-pagination-next {
	color: #333;
	background-color: #fafafa;
	border: 1px solid #ccc;
	border-radius: 2px;
	margin-left: 10px;
	margin-right: 10px;
	padding: 9px 20px;
	font-size: 14px;
	display: block;
}
.bg-color-white {
	background-color: var(--white);
}
.posts-pagination {
	z-index: 1;
	grid-column-gap: 2rem;
	grid-row-gap: 2rem;
	opacity: 0;
	justify-content: center;
	align-items: center;
	min-height: 3.5rem;
	margin-top: 5rem;
	transition: opacity 0.5s;
	display: flex;
}
.posts-pagination__btn {
	color: #fff;
	background-color: #0000;
	border: 0.0625rem solid #ffffff4d;
	border-radius: 50%;
	justify-content: center;
	align-items: center;
	width: 3.5rem;
	height: 3.5rem;
	margin-left: 0;
	margin-right: 0;
	padding: 0;
	font-size: 0.875rem;
	line-height: 2.1;
	transition: all 0.4s;
	display: flex;
	position: relative;
	overflow: hidden;
	transform: translate(0);
	border: 1px solid rgba(0, 0, 0, 0.121);
}
.posts-pagination__btn:hover {
	color: var(--blue-dark);
	border-color: #fff0;
}
.posts-pagination__btn.is-page:hover {
	color: var(--blue-dark);
}
.posts-pagination__btn.is-page.w--current {
	color: var(--blue-dark);
	background-color: #fff;
	border-color: #fff0;
	font-size: 0.875rem;
	line-height: 1.4;
}
.posts-pagination__btn.is-previews {
	transform: rotate(-180deg);
}
.posts-pagination__pages {
	grid-column-gap: 1rem;
	grid-row-gap: 1rem;
	justify-content: center;
	align-items: center;
	display: flex;
}
.button__icon-anim {
	z-index: 1;
	justify-content: center;
	align-items: center;
	font-size: 0;
	transition: transform 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
	display: flex;
	position: relative;
	transform: translate(0%);
}
.button__bg {
	background-color: #3827c7;
	border-radius: 50%;
	width: 100%;
	height: 100%;
	transition: all 0.3s;
	position: absolute;
	inset: 0%;
	transform: scale(0);
}
.button__bg.bg-color-white {
	background-color: #fff;
}
.icon-regular {
	z-index: 2;
	width: 1.5rem;
	height: 1.5rem;
	line-height: 0;
	position: relative;
}
.icon-regular.is-absolute {
	position: absolute;
	inset: 0%;
	transform: translate(-180%);
}
@media screen and (max-width: 991px) {
	.posts-pagination {
		min-height: 3rem;
		margin-top: 3rem;
		bottom: -7.5rem;
	}
	.posts-pagination__btn {
		width: 3rem;
		height: 3rem;
	}
	.posts-pagination__btn:hover {
		color: var(--white);
		border-color: #ffffff4d;
	}
	.posts-pagination__btn.is-page:hover {
		color: var(--white);
		background-color: #0000;
		border-color: #ffffff4d;
	}
	.posts-pagination__btn.is-page.w--current {
		color: var(--blue-dark);
		background-color: #fff;
		border-color: #fff;
	}
}
@media screen and (max-width: 767px) {
	.posts-pagination {
		grid-column-gap: 0.5rem;
		min-height: 2.5rem;
	}
	.posts-pagination__btn,
	.posts-pagination__btn.is-page.w--current {
		width: 2.5rem;
		height: 2.5rem;
	}
	.posts-pagination__pages {
		grid-column-gap: 0.5rem;
	}
}
[fs-cmsload-element="page-button"]::after {
	content: "";
	width: 100%;
	height: 100%;
	background-color: white;
	border-radius: 50%;
	transition: all 0.4s;
	position: absolute;
	top: 0%;
	bottom: 0%;
	left: 0%;
	right: 0%;
	transform: scale(0);
	z-index: -1;
}
[fs-cmsload-element="page-button"]:hover::after {
	transform: scale(1);
}
[fs-cmsload-element="page-button"].w--current::after {
	transform: scale(1);
}
a[class^="w-pagination-"] {
	display: flex !important;
}
a[class^="w-pagination-"][style*="display: none"] {
	cursor: default;
	pointer-events: none;
	color: rgba(255, 255, 255, 0.3);
	border-color: rgba(255, 255, 255, 0.3);
}
@media screen and (min-width: 992px) {
	a[class^="w-pagination-"]:hover .button__icon-anim {
		transform: translate(180%);
	}
	a[class^="w-pagination-"]:hover .button__bg {
		transform: scale(1);
	}
}
a[class^="w-pagination-"][style*="display: none"] .button__icon-anim {
	transform: translate(0%);
}
a[class^="w-pagination-"][style*="display: none"] .button__bg {
	transform: scale(0);
}
@media screen and (max-width: 479px) {
	[data-page-current] a:not(.is-show) {
		display: none;
	}
	[data-page-current] a.w--current,
	[data-page-current] a.w--current + a {
		display: flex;
	}
}
/* blog posrt archive end */

/* contact us page start */

.contact-us input,
.contact-us textarea {
	border-radius: 6px;
}
.contact-us .btn {
	border-radius: 6px;
}
.contact-us .contact-info svg {
	flex-shrink: 0;
}
.social-links.contact-page {
	filter: invert(1);
}

/* faq start*/
.faq .accordion-button {
	background: #fff;
	border: none;
	box-shadow: none;
}
.faq .accordion-button:not(.collapsed) {
	color: #e09e00;
	background: #f8f9fa;
}
.faq .accordion-body {
	font-size: 14px;
	line-height: 1.7;
}
/* faq end */
/* contact us page end */

/* about us page start */
.about-page.hero-section {
	background-image: url(../media/sliders/Planned-Preventative-Maintenance-PPM\ 1.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	height: 40vh;
}
/* Hero */
.hero-section .overlay {
	background-color: rgba(0, 0, 0, 0.5);
}
/* Mission & Vision */
.mission-card {
	transition: transform 0.3s;
}
.mission-card:hover {
	transform: translateY(-5px);
}

/* about us page end */

/* services page start */
.service-section img {
	width: 100%;
	border-radius: 8px;
	object-fit: cover;
}
.service-title {
	font-size: 1.8rem;
	font-weight: bold;
}
.service-subtitle {
	font-size: 1rem;
	color: #6c757d;
}
.service-list li {
	display: flex;
	align-items: center;
	margin-bottom: 12px;
}
.service-list li svg {
	margin-left: 8px;
	flex-shrink: 0;
	width: 20px;
	height: 20px;
	color: #e09e00;
}

.service-section img {
	width: 100%;
	height: auto;
	max-width: 100%;
	border-radius: 8px;
	object-fit: cover;
	display: block;
}

.service-title {
	font-size: 1.8rem;
	font-weight: bold;
}

.service-subtitle {
	font-size: 1rem;
	color: #6c757d;
}

.service-list li {
	display: flex;
	align-items: center;
	margin-bottom: 12px;
}

.service-list li svg {
	margin-left: 8px;
	flex-shrink: 0;
	width: 20px;
	height: 20px;
	color: #e09e00;
}
.services_img_2 {
	border-radius: 8px;
}
.services_img_1,
.services_img_3 {
	height: 400px;
	border-radius: 8px;
}
.services_img_1,
.services_img_2,
.services_img_3 {
	object-fit: cover;
}
.sevices-section {
	border-bottom: 1px solid rgba(0, 0, 0, 0.092);
	padding-bottom: 15px;
}
.sevices-section:last-child {
	border-bottom: none;
}
.sevices-section.fist_row {
	background-color: #f5f9ff;
	background-image: url(../media/background/services.svg);
	background-position: right;
	background-size: cover;
	background-repeat: no-repeat;
	padding: 5px;
}
/* Chevron as separator */
.breadcrumb-item + .breadcrumb-item::before {
	content: "";
	display: inline-block;
	margin: 0 8px;
	vertical-align: middle;
	width: 0;
	height: 0;
	border-top: 5px solid transparent;
	border-bottom: 5px solid transparent;
	border-right: 5px solid #6c757d; /* Chevron color */
}

/* Breadcrumb links */
.breadcrumb a {
	text-decoration: none;
	color: #0d6efd;
}
.breadcrumb a:hover {
	text-decoration: underline;
}
.breadcrumb-item + .breadcrumb-item::before {
	display: none;
}
nav .breadcrumb {
	background: #d9d9d9;
	padding: 20px;
	border-radius: 3px;
}
/* services page end */

/* LTR Styles Start */
/* Heder */
.navbar-brand {
	margin-left: unset;
	margin-right: var(--bs-navbar-brand-margin-end);
}
.contact-btn {
	border-right: unset;
	border-left: 1px solid hsl(0deg 0% 0% / 40%);
}
@media (max-width: 600px) {
	.desktop-header-search {
		display: none !important;
	}
}
/* Services */
.readmore-btn,
.service-sub,
.service-title {
	text-align: left;
}
.blob-1 {
	top: 0px;
	right: -76px;
}
.blob-6 {
	bottom: 6px;
	right: -69px;
}
.blob-2 {
	top: 0px;
	right: 5px;
}
/* features */
.feature-item h3,
.feature-item p,
.owl-carousel .item p,
.owl-carousel .item h1,
.cta-subtitle,
.cta-title,
.blog-text h4,
.blog-text p {
	direction: ltr;
}
/* Footer */
.footer-section {
	direction: ltr;
}
.list-unstyled {
	padding-left: 0px;
}
/* contact us page */
/* faq accordion  */
.accordion-button::after {
	margin-left: auto;
	margin-right: unset;
}
/* Services Page */
/* breadcrumb */
.breadcrumb-item img {
	margin-bottom: 4px;
}

/* LTR Styles End */
