body {
	font-family: 'Poppins', sans-serif;
	font-size: 16px;
	overflow-x: hidden;
}

:root {
	--thm-font: 'Josefin Sans', sans-serif;
	--thm-color: #ff5d13;
	--thm-color-rgb: 255, 170, 23;
	--thm-black: #18191c;
	--thm-text: #686a6f;
	--default-color: #fff;
	--font-theme: 'Poppins', sans-serif;
}

li,
ul {
	list-style: none;
}

a:active,
a:focus,
a:hover,
a:visited,
button:active {
	text-decoration: none;
	outline: 0;
	color: var(--thm-color);
}

a {
	text-decoration: none !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--thm-font);
	margin: 0;
	padding: 0;
}

h2 {
	font-size: 3rem;
	line-height: 56px;
	font-weight: 800;
	margin-bottom: 20px;
}

p {
	font-family: var(--font-theme);
	margin: 0;
	padding: 0;
	line-height: 1.5rem;
	font-size: 1rem;
}

.section {
	padding: 100px 0;
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/

/* Slider Wrapper */
.hero-slider {
	position: relative;
	width: 100%;
	height: 100vh;
}

.hero-slider .swiper-slide {
	position: relative;
	background-size: cover;
	background-position: center;
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* Dark overlay */
.hero-slider .swiper-slide::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.6);
	z-index: 1;
}

/* Content */
.hero-content {
	position: relative;
	z-index: 2;
	text-align: center;
	color: #fff;
}

.hero-content h1 {
	font-size: 4.3rem;
	font-weight: 800;
	text-transform: uppercase;
	margin: 20px 0;
	border-bottom: 1px solid var(--default-color);
}

.hero-content span {
	display: inline-block;
	font-size: 16px;
	letter-spacing: 2px;
	margin-bottom: 10px;
	position: relative;
	text-transform: uppercase;
}

.hero-content span::before,
.hero-content span::after {
	position: absolute;
	content: "";
	width: 180px;
	height: 0;
	top: 50%;
	transform: translateY(-50%);
	border-bottom: 1px solid var(--bs-white);
}

.hero-content span::before {
	right: calc(100% + 15px);
}

.hero-content span::after {
	left: calc(100% + 15px);
}

.hero-content p {
	font-size: 18px;
	margin-bottom: 25px;
	max-width: 650px;
	margin-left: auto;
	margin-right: auto;
}

.theme-btn {
	border: 2px solid var(--thm-color);
	padding: 12px 30px;
	border-radius: 30px;
	color: #fff;
	text-decoration: none;
	transition: 0.3s;
}

.theme-btn:hover {
	background: var(--thm-color);
	color: #fff;
}

.theme-btn-2 {
	padding: 12px 30px;
	border-radius: 30px;
	color: var(--thm-black);
	text-decoration: none;
	transition: 0.3s;
	background-color: var(--default-color);

	&:hover {
		background: var(--thm-color);
		color: #fff;
	}
}



/* Navigation arrows */
.swiper-button-next,
.swiper-button-prev {
	color: #fff;
	transition: 0.3s;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
	color: var(--thm-color);
}



.header {
	padding: 10px 0;
	color: var(--default-color);
	background-color: #0000003d;
	transition: all 0.5s;
	z-index: 997;
}

.header .logo {
	line-height: 1;
}

.header .logo img {
	max-height: 60px;
	margin-right: 8px;
	filter: brightness(0) invert(1);
}

.scrolled .header {
	box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}


.scrolled .header {
	background-color: rgba(0, 0, 0, 0.9);
}

/*--------------------------------------------------------------
  # Navigation Menu
  --------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
	.navmenu {
		padding: 0;
	}

	.navmenu ul {
		margin: 0;
		padding: 0;
		display: flex;
		list-style: none;
		align-items: center;
	}

	.navmenu li {
		font-size: 14px;
		font-weight: 500;
		position: relative;
	}

	.navmenu>ul>li {
		white-space: nowrap;
		padding: 15px 14px;
	}

	.navmenu>ul>li:last-child {
		padding-right: 0;
	}

	.navmenu a,
	.navmenu a:focus {
		color: var(--default-color);
		font-size: 14px;
		text-transform: uppercase;
		padding: 0 2px;
		font-family: var(--font-theme);
		font-weight: 500;
		display: flex;
		align-items: center;
		justify-content: space-between;
		white-space: nowrap;
		transition: 0.3s;
		position: relative;
	}

	/* .navmenu a i,
	.navmenu a:focus i {
		font-size: 12px;
		line-height: 0;
		margin-left: 5px;
		transition: 0.3s;
	} */

	.navmenu>ul>li>a:before {
		content: "";
		position: absolute;
		width: 100%;
		height: 2px;
		bottom: -6px;
		left: 0;
		background-color: var(--thm-color);
		visibility: hidden;
		width: 0px;
		transition: all 0.3s ease-in-out 0s;
	}

	.navmenu a:hover:before,
	.navmenu li:hover>a:before,
	.navmenu .active:before {
		visibility: visible;
		width: 100%;
	}

	.navmenu li:hover>a,
	.navmenu .active,
	.navmenu .active:focus {
		color: var(--thm-color);
	}

	.navmenu .dropdown ul {
		/* column-count: 2; */
		padding: 20px;
		background: var(--default-color);
		display: block;
		position: absolute;
		visibility: hidden;
		left: 14px;
		top: 130%;
		color: var(--thm-black);
		opacity: 0;
		transition: 0.3s;
		border-radius: 4px;
		z-index: 99;
		box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
	}

	.navmenu .dropdown ul li {
		min-width: 200px;
	}

	.navmenu .dropdown ul a {
		padding: 10px 20px;
		font-size: 15px;
		text-transform: uppercase;
		color: var(--thm-black);
	}

	.navmenu .dropdown ul a i {
		font-size: 12px;
	}

	.navmenu .dropdown ul a:hover,
	.navmenu .dropdown ul .active:hover,
	.navmenu .dropdown ul li:hover>a {
		color: var(--thm-color);
	}

	.navmenu .dropdown:hover>ul {
		opacity: 1;
		top: 100%;
		visibility: visible;
	}

	.navmenu .dropdown .dropdown ul {
		top: 0;
		left: -90%;
		visibility: hidden;
	}

	.navmenu .dropdown .dropdown:hover>ul {
		opacity: 1;
		top: 0;
		left: -100%;
		visibility: visible;
	}
}

.call-btn {
	color: var(--default-color);
	gap: 20px;
	display: flex;
	justify-content: flex-start;
	font-family: var(--font-theme);
	align-items: center;

	a {
		color: var(--default-color);
	}

	:hover {
		color: var(--thm-color);
	}
}


/*--------------------------------------------------------------
  # Hero Section
  --------------------------------------------------------------*/

.hero .container {
	position: relative;
	z-index: 1;
}

.form-background {
	background: linear-gradient(rgba(0, 0, 0, .1), rgba(0, 0, 0, .1)), url(../images/dubai-dark-sky.jpg) left center no-repeat;
	background-size: cover;
}

.form-wrapper {
	background: linear-gradient(#17181c8c 0%, #17181c 25%);
	border-radius: 12px;
	border-top: 2px solid var(--thm-color);
	padding: 50px 40px;
	width: 100%;
	margin: auto;

	h3 {
		font-size: 35px;
		text-transform: capitalize;
		color: var(--default-color);
		font-weight: 700;
		margin: .5em 0;
	}

	input,
	textarea {
		width: 100%;

		margin-bottom: 30px;
		padding: 10px;
		border: 1px solid var(--thm-color);
		border-radius: 35px;
		background-color: #ffffff29;
		height: 55px;
		color: #fff;
	}

	.form-control::placeholder {
		color: var(--default-color);
	}

	.form-control:focus {
		background-color: var(--thm-color);
		box-shadow: 0 0 5px var(--thm-color);
		color: var(--default-color);
	}

	.theme-btn {
		background-color: var(--thm-color);

		&:hover {
			background-color: #000;
		}
	}
}


.slider-sid-text {
	z-index: 22;
	position: absolute;
	top: 40%;
	left: -6%;
	transform: rotate(-90deg);
}

.slider-sid-text h2 {
	font-size: 140px;
	font-weight: 900;
	font-family: "Yantramanav";
	-webkit-text-stroke-width: 1px;
	-webkit-text-stroke-color: rgb(171 150 140);
	color: #e91e632e;
	-webkit-mask-image: linear-gradient(-75deg, rgb(255 255 255 / 15%) 50%, #ffff 50%, rgb(255 255 255 / 15%) 70%);
	-webkit-mask-size: 200%;
	animation: shine 3s infinite;
	transition: .5s;
	padding: 20px 0;
}

@-webkit-keyframes shine {
	from {
		-webkit-mask-position: 150%;
	}

	to {
		-webkit-mask-position: -50%;
	}
}


/*--------------------------------------------------------------
  # service Section
  --------------------------------------------------------------*/
.section-heading {
	position: relative;
	display: inline-block;
	font-size: 24px;
	font-weight: 700;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-left: 65px;
}

.section-heading span {
	color: var(--thm-color);
	/* pink like your screenshot */
	font-weight: 600;
}

.section-heading::before,
.section-heading::after {
	content: "";
	position: absolute;
	top: 50%;
	width: 50px;
	height: 2px;
	background: var(--thm-color);
	transition: width 0.3s ease;
}

.section-heading::before {
	right: 100%;
	margin-right: 15px;
}

.section-heading::after {
	left: 100%;
	margin-left: 15px;
}

/* Hover Effect */
.section-heading:hover::before,
.section-heading:hover::after {
	width: 80px;
	background: var(--default-color);
	/* change to white on hover */
}

.service-area.style-three {
	background: var(--default-color);
	position: relative;
	z-index: 1;
	overflow: hidden;
	padding: 107px 0 180px;
}

.service-area.style-three:before {
	position: absolute;
	content: "";
	left: 0;
	top: 0;
	height: 62%;
	width: 100%;
	background-color: rgb(211, 211, 211);
	background-repeat: no-repeat;
	z-index: -1;
	background-size: cover;
}

.service-area.style-three .section-title h1 {
	margin-bottom: 15px;
}

.service-single-item {
	padding: 35px 0 0 36px;
	position: relative;
	z-index: 1;
	transition: .5s;
}

.service-single-item:before {
	position: absolute;
	content: "";
	left: 0px;
	top: 36px;
	height: 52%;
	background: #494949;
	width: 9%;
	z-index: -1;
	transition: .5s;
}

.service-single-item:after {
	position: absolute;
	content: "";
	left: 0px;
	top: 2px;
	height: 8%;
	background: #494949;
	width: 100%;
	z-index: -1;
	transition: .5s;
}

.service-single-item:hover:after,
.service-single-item:hover:before {
	background: var(--thm-color);
}

.service-single-item .service-thumb img {
	width: 100%;
	border: 0px;
}

.service-single-item .service-contents {
	background: #f5f6f7;
	padding: 36px 40px 5px;
	transition: .5s;
}

.service-single-item:hover .service-contents {
	background: #171717;
}

.service-single-item h3.service-title {
	transition: .5s;
	margin-top: 0;
	font-size: 28px;
	color: #171717;
	margin-bottom: 6px;
}

.service-single-item:hover h3.service-title {
	color: #ffff;
}

.service-single-item h3.service-title:before {
	display: none;
}

.service-text p {
	transition: .5s;
}

.service-single-item:hover .service-text p {
	color: #fff;
}


.service-button {
	margin-top: 26px;
}

.service-button a {
	transition: .5s;
	background: #ffff;
	font-size: 15px;
	text-transform: uppercase;
	color: #ffffff;
	font-weight: 500;
	display: inline-block;
	padding: 3px 25px 3px 0;
	position: relative;
	overflow: hidden;
	letter-spacing: -6px;
}

.service-button a i {
	margin-left: -8px;
	font-size: 16px;
	font-weight: 600;
	color: var(--thm-color);
}

/* all hover */
.service-single-item:hover .service-button a {
	background: var(--thm-color);
	letter-spacing: 0;
	padding: 3px 25px 3px 25px;

}

.service-single-item:hover .service-button a i {
	margin-left: 8px;
	color: var(--default-color);
}


/* Hide default big arrows */
.swiper-button-next::after,
.swiper-button-prev::after {
	display: none;
}

/* Custom button styles */
.swiper-button-next,
.swiper-button-prev {
	width: 40px;
	height: 40px;
	background: #f5f5f5;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 4px;
	box-shadow: none;
	position: relative;
}

/* Add custom arrows */
.swiper-button-next::before,
.swiper-button-prev::before {
	content: '';
	border: solid #333;
	border-width: 0 2px 2px 0;
	padding: 4px;
	display: inline-block;
}

/* Right arrow */
.swiper-button-next::before {
	transform: rotate(-45deg);
}

/* Left arrow */
.swiper-button-prev::before {
	transform: rotate(135deg);
}

/* Center alignment with spacing */
.swiper-button-next,
.swiper-button-prev {
	position: relative;
	top: auto;
	bottom: auto;
	margin: 0 10px;
}

/* Flex container for arrows with horizontal lines */
.swiper-navigation-wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 20px;
}

.swiper-navigation-wrapper::before,
.swiper-navigation-wrapper::after {
	content: '';
	flex: 1;
	height: 1px;
	background: #ddd;
}





.primary-color {
	color: var(--thm-color);
}



/*---------------------------*/
.why-choose-us-area.style_two {
	background: #171717;
	padding: 107px 0 45px;
	position: relative;
	z-index: 1;
}

.why-choose-us-area.style_two::before {
	background: url(../images/choose.png);
	position: absolute;
	left: 0;
	top: 0px;
	height: 100%;
	width: 100%;
	content: "";
	background-repeat: no-repeat;
	z-index: -1;
}

.why-choose-us-area.style_two .section-title.style1.pb-10 {
	margin-bottom: 5px;
}

.why-choose-us-area.style_two p.section-description {
	color: #8e939f;
	width: 94%;
}

.choose-icon-box {
	display: flex;
	align-items: center;
	background: #fff;
	padding: 25px 30px 27px;
	margin-bottom: 30px;
}

.choose-icon {
	text-align: center;
	margin-right: 20px;
	flex-shrink: 0;
}

.choose-icon img {
	transition: .5s;
}

h3.choose-title {
	margin-top: 0;
	font-size: 22px;
	line-height: 28px;
	color: #171717;
	font-weight: 500;
}

.choose-icon-box:hover .choose-icon img {
	transform: rotateY(180deg);
}

.chosse-shpe {
	position: absolute;
	bottom: 0;
	right: 0;
	animation: float-bob3 4s alternate infinite;
}


@keyframes float-bob3 {
	0% {
		-webkit-transform: translateY(-50px);
		transform: translateY(-50px);
	}

	50% {
		-webkit-transform: translateY(-20px);
		transform: translateY(-20px);
	}

	100% {
		-webkit-transform: translateY(-50px);
		transform: translateY(-50px);
	}
}

.fancybox-card {
	position: relative;
	z-index: 5;
	display: inline-block;
	overflow: hidden;

	&::before {
		content: '';
		position: absolute;
		width: 90%;
		height: 100%;
		background: #000000a1;
		bottom: -100%;
		z-index: 1;
		opacity: 0.8;
		transition: all 0.3s ease-in-out;
	}

	p {
		position: absolute;
		top: 50%;
		font-size: 30px;
		font-weight: 700;
		transform: translate(0, -50%);
		left: 0;
		right: 0;
		margin: 0 auto;
		opacity: 0;
		visibility: hidden;
		transition: all 0.3s ease-in-out;
		text-align: center;
		z-index: 2;
	}

	&:hover {
		&::before {

			transition: all 0.3s ease-in-out;
			bottom: 0;
		}

		p {
			opacity: 1;
			visibility: visible;
			transition: all 0.3s ease-in-out;
		}
	}
}


.best-selling {
	background: url(../images/pattern-2.png) left top #fff;

	h2 {
		font-size: 50px;
		color: #000;
		line-height: 55px;
		font-weight: 700;
	}

	.text {
		position: relative;
		color: var(--thm-text);
		margin-bottom: 50px;
		line-height: 2.125em;

	}


}

.nav-tabs {
	border: 0;
}

.my-tabs .my-tab-button {
	margin-right: 8px;
}

.my-tabs .nav-item:last-child .my-tab-button {
	margin-right: 0;

}


.my-tabs .my-tab-button {
	position: relative;
	color: #333;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	border-radius: 6px 6px 0 0;
	padding: 10px 16px;
	background-color: transparent;
	border: none;
	transition: all 0.3s ease;
}

.my-tabs .my-tab-button::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	height: 3px;
	width: 100%;
	background-color: var(--thm-color);
	border-radius: 6px 6px 0 0;
	transition: all 0.3s ease;
}

.my-tabs .my-tab-button.active::before {
	background-color: #ff9900;
	height: 100%;
	border-radius: 6px 6px 0 0;
	z-index: -1;
}

.my-tabs .my-tab-button.active {
	color: #fff;
	background: linear-gradient(135deg, #ff9900, #bb7f24);
}

.best-selling .featured-block-two {
	display: flex;
	align-items: center;

	img {
		width: 90%;
	}

	.text {
		width: 80%;
	}
}

.best-selling .featured-block-two .text ul li:before {
	content: "\f00c";
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	position: absolute;
	left: 0;
	top: -1px;
	color: #eb911b;
	font-size: 18px;
}

.best-selling .featured-block-two .text ul li {
	position: relative;
	line-height: 2.125em;
	margin-bottom: 12px;
	padding-left: 30px;
	color: var(--thm-text);
}



.content-center {
	align-items: center;
	display: flex;
	justify-content: center;
	flex-direction: column;
}

/* .call-to-section .inner .btn-style-two {
	background: #18191c
} */

.contact_form_secc {
	background-image: url(../images/services-bg.webp);
	height: auto;
	padding: 6% 0;
	background-size: cover;
	background-repeat: repeat;
}

.contact-form-text {
	display: flex;
	flex-direction: column;
	align-items: center;

	h2 {
		font-size: 35px;
		text-align: center;
		color: var(--default-color);
		letter-spacing: 1px;
		font-weight: 700;
		text-transform: uppercase;
		line-height: 50px;

	}

	p {
		color: var(--default-color);
		text-align: center;
		font-weight: 400;
		margin-bottom: 10px;
		width: 70%;
	}

	span {
		display: block;
		text-align: center;
		font-size: 30px;
		color: var(--thm-color);
		font-weight: 600;
		padding: 20px 0;
	}

}

.faq-section {
	position: relative;

	.faq-wrapper {
		display: flex;
		justify-content: center;
		align-items: center;
		flex-direction: column;
	}

	h2 {
		font-size: 50px;
		color: rgb(0, 0, 0);
		text-align: center;
		width: 100%;
		font-weight: 700;
		line-height: 60px;
	}

}

.accordion-item {
	margin-bottom: 10px;
}

.accordion-body ul li a {
	color: black;
	font-weight: 700;
}

.faq-section .accordion {
	width: 80%;
}

.accordion-button {
	background-color: rgb(238, 238, 238);
	padding: 30px 20px;
}

.accordion-button:not(.collapsed) {
	background-color: var(--thm-color);
	padding: 25px 20px;
}

.accordion-button:not(.collapsed)::after {
	background-image: none;
	transform: none;
}

.accordion-button:focus {
	box-shadow: none;
}

.accordion-button:before {
	content: "";
	position: absolute;
	/*   right: 0.75rem; */
	right: 0.75rem;
	top: 1.25rem;
	height: 2px;
	width: 1rem;
	background-color: var(--thm-black);
}

.accordion-button.collapsed:after {
	content: "";
	position: absolute;
	/*   right: 1.1875rem; */
	right: 1.1875rem;
	top: 0.8125rem;
	height: 1.0625rem;
	width: 0.125rem;
	border-style: none;
	background-color: var(--thm-text);
}

.faq-section .accordion-button h5 {

	color: var(--thm-black);
	margin-right: 13px;
}

.accordion-body {
	background-color: #cfcfcf14;

	ul {
		list-style-type: none;
		list-style-type: disc;
		margin-left: 20px;
	}

	ul li {
		margin-bottom: 5px;
	}
}


.accordion-body ol {
	counter-reset: step-counter;
	list-style-type: none;
	padding-left: 0;
}

.accordion-body ol>li {
	counter-increment: step-counter;
	/* Increment custom counter */
	margin-bottom: 10px;
}

.accordion-body ol>li::before {
	content: "Steps " counter(step-counter) ": ";
	/* Custom prefix */
	font-weight: bold;
}

@media screen and (min-width: 768px) {
	/*   .faq-section .accordion {
	  width: 50%;
	  margin: 0 auto;
	} */

	.accordion-button:before {
		right: 0.75rem;
	}

	.accordion-button.collapsed:after {
		right: 1.1875rem;
	}

	.faq-section .accordion-button h5 {
		margin-right: 0px;
	}
}


.footer {
	position: relative;
	background: var(--thm-black) url(/assets/images/footer-bg.png) center top no-repeat;
}

.footer-description {
	p {
		font-size: 16px;
		color: #fff;
		margin: 32px 0;
		line-height: 27px;
		width: 90%;
	}

	.footer-logo {
		filter: brightness(0) invert(1);
	}
}

.footer_top {
	padding: 80px 0 50px 0;
	margin-bottom: 40px;

	ul {
		display: flex;
		margin-left: 0;
		padding-left: 0;
		align-items: center;

		li {
			p {
				line-height: 1.5rem;
				margin: 15px 0;
				width: 80%;
				font-weight: 300;
				margin-bottom: 0;
			}
		}
	}

}

.border-bottom {
	border-bottom: 1px solid #62544152 !important;
}

.footer-lists {
	.ul-footer {
		padding: 20px 0;
	}
}

.footer-lists ul li {
	position: relative;
	padding-left: 10px;
	margin-bottom: 10px;
	/* adjust depending on icon size */
}

.footer-lists ul li::before {
	content: "\f111";
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	position: absolute;
	left: -2px;
	top: .5rem;
	color: #eb911b;
	font-size: 0.3rem;
}


.social_media_linkss_ft ul {
	margin: 0;
	gap: 20px
}

.social_media_linkss_ft ul li a i {
	font-size: 20px;
	background: #086bc9;
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	transition: .5s;
	color: #fff
}

.social_media_linkss_ft ul li a i:hover {
	transition: .5s;
	transform: scale(1.3)
}

.social_media_linkss_ft ul li a .fa-brands.fa-linkedin-in,
.social_media_linkss_ft ul li a i.fa-brands.fa-facebook-f {
	background: #3b5998
}

.social_media_linkss_ft ul li a i.fa-brands.fa-instagram {
	background: radial-gradient(circle at 30% 107%, #fdf497 0, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%)
}

.social_media_linkss_ft ul li a i.fa-brands.fa-twitter {
	background: #1da1f2
}

.social_media_linkss_ft ul li a i.fa-brands.fa-youtube {
	background: red
}


.portfolio-hero::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(45deg, #000000b9 0%, color-mix(in srgb, var(--thm-black), transparent 10%) 100%), url(/assets/images/banner-inner.jpg) center center no-repeat;
	background-size: cover;
	z-index: 0;
}

.portfolio-hero .container {
	position: relative;
	z-index: 1;
}

.testimonial-hero::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(45deg, #0000006c 0%, color-mix(in srgb, var(--thm-black), transparent 10%) 100%), url(/assets/images/banner-bgs.png) center center no-repeat;
	background-size: cover;
	z-index: 0;
}


.services-tabs {
	background-image: linear-gradient(rgba(240, 240, 240, 0.91), rgba(255, 255, 255, 0.81)), url(../images/slide1.jpg);
	object-fit: cover;
	height: auto;
	background-repeat: no-repeat;
	background-size: cover;

	h2 {
		color: var(--thm-color);
		font-size: 40px;
	}

	p {
		line-height: 2;
		font-size: 20px;
		color: #000000;
	}

	.tab-ul {
		margin-top: 10px;
		position: relative;
		padding: 0;
	}

	.tab-ul li {
		position: relative;
		font-size: 18PX;
		margin-bottom: 5px;
		padding-left: 10px;
		color: var(--thm-black);
	}

	.tab-ul li::before {
		content: "\f111";
		font-family: "Font Awesome 6 Free";
		font-weight: 900;
		position: absolute;
		left: 0px;
		top: .5rem;
		color: #eb911b;
		font-size: 0.4rem;
	}

	.text-center {
		text-align: center;
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	.nav-pills .nav-link.active,
	.nav-pills .show>.nav-link {
		background: var(--thm-color);
		border-radius: 5px;
		color: var(--default-color);
	}

	.rounded-circle {
		width: 90%;
		/* border-radius: 50%;
		filter: grayscale(1); */
	}

	.nav-pills {
		background: var(--thm-black);
		padding: 20px;
		border-radius: 40px;
	}

	.nav-link {
		font-family: var(--font-theme);
		color: var(--default-color);
		margin-left: 20px;
		text-transform: uppercase;
		font-weight: 600;
	}

	.nav-pills .nav-link:hover {
		background-color: var(--thm-color);
		color: var(--default-color);
	}

	.nav-pills .nav-link.active {
		background-color: var(--thm-color);
		color: var(--default-color);
	}

	.rounded-circle img {
		transition: transform 0.3s ease;
	}

	.rounded-circle:hover img {
		transform: scale(1.05);
	}

	.tab-content {
		display: flex;
		justify-content: center;
	}

	.tab-pane {
		width: 80%;
		padding: 20px;
		background: white;
		border-radius: 20px;
	}

}

.thm-btn-primary {
	color: #000;
}

.testimonial-thumbsSlider {
	height: 500px;

	.swiper-slide {
		.img-wrapper {
			width: 160px;
			height: 160px;

			img {
				width: 100%;
				height: 100%;
				object-fit: cover;
			}
		}
	}
}

.testimonial-section h2 {
	position: relative;
	text-align: center;
	font-size: 40px;

}

.testimonial-section h2::before {
	content: "";
	position: absolute;
	background: var(--thm-color);
	height: 3px;
	width: 40%;
	left: 0;
	right: 0;
	margin: auto;
	bottom: -10px;
	border-radius: 2px;
}

.generic-navigation {
	display: flex;
	flex-direction: column;
	height: calc(100% + 50px);
	position: absolute;
	top: -70px;
	justify-content: space-between;
	left: 80px;

	.swiper-button-next,
	.swiper-button-prev {
		position: relative;
		left: auto;
		right: auto;
		top: auto;
		bottom: auto;
		margin: 0;

		&:after {
			content: "\f282";
			font-family: bootstrap-icons !important;
			color: var(--thm-color);
			font-weight: 900;
		}
	}

	.swiper-button-next {
		&:after {
			transform: rotate(180deg);
		}
	}
}


.generic-modal {
	display: none;
	max-width: 25%;
	padding: 0;
	background-color: #f9f9f9;
	overflow: hidden;
	border-radius: 10px;

	p {
		font-size: 14px;
	}

	h2 {
		font-size: 30px;
	}

	.right-wrapper {
		padding: 2em 3em 2em 3em;
	}

	.form-control {
		margin-bottom: 1rem;
		padding: .85rem .85rem .85rem 2.5rem;
		border-radius: 8px;
		border: 1px solid #ccc;
	}

	.input-icon {
		position: relative;
	}

	.input-icon i {
		position: absolute;
		left: 10px;
		top: 50%;
		transform: translateY(-50%);
		color: #999;
	}

	.thm-btn-primary {
		border: none;
	}

	.is-close-btn {
		top: 10px !important;
		right: 10px !important;

		svg {
			stroke: #000;
		}

	}

}

label.error {
	color: red;
}

.count {
	font-family: 'Josefin Sans', sans-serif;
	font-size: 40px;
	font-weight: bold;
}

.counter-wrapper {
	background: #333;
	background-image: url('https://images.unsplash.com/photo-1568563643102-37d43956d1d3?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80');
	background: cover;
	background-position: center center;
	position: relative;
}

.counter-wrapper:after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background: rgba(0, 0, 0, .5);
}

.counter-inner {
	position: relative;
	z-index: 2;
}

.count-icon {
	font-size: 48px;
}

.about-section {
	background:
		linear-gradient(90deg, rgb(215 81 20) 0%, rgb(250 91 19 / 68%) 100%),
		url(/assets/images/aboutbg.jpg) no-repeat right center / cover;

	h1 {
		font-size: 60px;
		text-transform: uppercase;

		span {
			color: var(--thm-black);
		}
	}
}

.our-journey {
	.img-short {
		width: 60%;
		position: absolute;
		left: -25px;
		bottom: -25px;

	}

	.theme-btn {
		color: var(--thm-black);
	}
}

.vision-mission-section {
	background: linear-gradient(90deg, #f79233 0%, #c04600 100%);
	border-radius: 25px;

	.vision-card,
	.mission-card {
		border: none;
		border-radius: 20px;
		transition: transform 0.3s ease, box-shadow 0.3s ease;
	}

	.vision-card:hover,
	.mission-card:hover {
		transform: translateY(-8px);
		box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
	}

	.text-gradient {
		background: linear-gradient(90deg, #f73353, #c00017);
		-webkit-background-clip: text;
		-webkit-text-fill-color: transparent;
	}
}

.why-choose-us {
	background: #f9f9f9;
	border-radius: 25px;

	.card {
		padding: 50px;
		background: linear-gradient(135deg, #343333, #020202);
		display: flex;
		align-content: center;
		justify-content: center;
		align-items: center;
		color: var(--default-color);
		border-radius: 20px;
		transition: transform 0.3s ease,
			box-shadow 0.3s ease;

		p {
			color: var(--default-color);
		}
	}


	.card:hover {
		transform: translateY(-8px);
		box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
	}

	.icon-img {
		width: 70px;
		height: auto;
	}
}

/* Odd cards = red */
.why-choose-us .col-md-6:nth-child(odd) .card,
.why-choose-us .col-lg-4:nth-child(odd) .card,
.why-choose-us .col-3:nth-child(odd) .card {
	background: linear-gradient(135deg, #f76a33, #d65128);
	color: #fff;
}

/* Even cards = black */
.why-choose-us .col-md-6:nth-child(even) .card,
.why-choose-us .col-lg-4:nth-child(even) .card,
.why-choose-us .col-3:nth-child(even) .card {
	background: linear-gradient(135deg, #1c1c1c, #000000);
	color: #fff;
}

.manpower-card {
	.card-body {
		padding: 50px;
	}

	.card {
		transition: transform 0.3s ease, box-shadow 0.3s ease;

		&:hover {
			transform: translateY(-8px) scale(1.03);
			box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
		}
	}

	.bg-danger {
		background-color: var(--thm-color) !important;
	}
}


.office-manpower-cards {
	.bg-primary {
		background-color: rgb(10 55 122) !important;
	}

	.bg-danger {
		background-color: var(--thm-color) !important;
	}
}

.pub-para {
	color: var(--thm-text);
	margin-top: 20px;
}

.why-choose-inner {
	background-color: #dadada;

	.why-choose {
		padding: 50px;
		color: var(--default-color);
		transition: transform 0.3s ease, box-shadow 0.3s ease;

		&:hover {
			transform: translateY(-8px) scale(1.03);
			box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
		}
	}




	.bg-danger {
		background-color: var(--thm-color) !important;
	}
}