@import url("https://fonts.googleapis.com/css2?family=Exo:ital,wght@0,100..900;1,100..900&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap");

* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}
:root {
	--rubik-font: "Rubik", sans-serif;
	--exo-font: "Exo", sans-serif;
	--primary-color: #ff6600;
	--secondary-color: #003358;
	--third-color: #574c46;
	--color-white: #fff;
	--color-dark: #000;
	--heading-color: #021220;
	--muted-color: #554f4d;
}
::selection {
	background-color: var(--primary-color) !important;
	color: var(--color-white) !important;
}
::-webkit-scrollbar {
	width: 8px;
}
::-webkit-scrollbar-track {
	background: #f1f1f1;
	border-radius: 2px;
}
::-webkit-scrollbar-thumb {
	background-color: var(--primary-color);
	border-radius: 2px;
	transition: 0.3s ease all;
}
::-webkit-scrollbar-thumb:hover {
	background-color: var(--secondary-color);
}
.site-wrapper {
	overflow: clip;
}
html {
	scroll-behavior: smooth;
}
body {
	background-color: #fff !important;
	font-family: var(--rubik-font) !important;
	color: var(--muted-color);
	font-weight: 400;
	font-size: 16px;
	line-height: 26px;
}
a {
	text-decoration: none !important;
	font-family: var(--rubik-font);
}
p {
	font-family: var(--rubik-font);
	position: relative;
	margin: 0 0 10px !important;
	line-height: 29px;
	color: var(--muted-color);
	font-weight: 400;
	font-size: 17px;
}
p,
li {
	font-family: var(--rubik-font);
	color: var(--muted-color);
	text-decoration: none !important;
}
h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--exo-font) !important;
}
img {
	max-width: 100%;
	transition: all 0.3s ease-in-out;
}
figure {
	margin: 0 !important;
	padding: 0 !important;
}
.bg-clay {
	background: rgba(149, 149, 149, 0.1) !important;
}
nav.navbar {
	padding: 0;
}
ul.navbar-nav {
	margin: 0 0 auto;
}
.navlink-container {
	width: 100%;
	display: flex;
	flex: 1;
	justify-content: flex-end;
}
.py-70 {
	padding: 70px 0;
}
.object-top {
	object-position: top !important;
}
.section-padding {
	padding: 80px 0;
}

.text-justify {
	text-align: justify;
}
.object-cover {
	object-fit: cover !important;
}
.fw-500 {
	font-weight: 500 !important;
}
a.nav-link {
	position: relative;
	font-family: var(--exo-font) !important;
	font-size: 16px;
	font-weight: 600;
	text-transform: capitalize;
	color: var(--color-dark);
	margin: 0 5px;
	padding: 33px 10px !important;
	transition: 0.3s ease all;
	z-index: 1;
}
a.nav-link:hover,
a.nav-link:focus,
a.nav-link.active {
	color: var(--primary-color) !important;
}
.nav-link:focus-visible {
	box-shadow: none !important;
}
.main-header.sticky {
	filter: drop-shadow(0 4px 19px rgba(0, 0, 0, 0.07)) !important;
}
.banner-section {
	position: relative;
}
.bs-box img.hb-img {
	max-height: 700px;
	min-height: 700px;
	width: 100%;
	object-fit: cover;
	object-position: 50% 50%;
}
.bs-box {
	position: relative;
	z-index: 1;
	overflow: hidden;
}
.bs-box::after {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	right: 0;
	height: 100%;
	width: 100%;
	background: rgb(0 0 0 / 54%);
	z-index: 0;
	/* backdrop-filter: blur(2px); */
}
.bs-con {
	position: absolute;
	top: 50%;
	left: 50%;
	right: 50%;
	width: 100%;
	max-width: 100%;
	transform: translate(-50%, -50%);
	z-index: 1;
}
.bs-con .ban-slogan {
	letter-spacing: 0.5px;
	font-weight: 500;
	font-size: 16px;
	line-height: 1;
	font-family: var(--exo-font);
	color: var(--heading-color);
	display: block;
	max-width: max-content;
	padding: 17px 24px 17px 20px;
	box-shadow: 0px 6px 34px rgba(215, 216, 222, 0.41);
	background: #fff;
	border-radius: 4px;
	position: relative;
	margin-bottom: 30px;
	z-index: 1;
}
.bs-con .ban-slogan::before {
	position: absolute;
	top: 50%;
	right: -19px;
	left: -19px;
	transform: translateY(-50%);
	height: 45px;
	width: calc(100% + 38px);
	background: rgba(255, 255, 255, 0.5);
	box-shadow: 0 0 29px rgba(209, 211, 237, 0.3882352941);
	z-index: -1;
	content: "";
	clip-path: polygon(100% 0, 97% 50%, 100% 100%, 0 100%, 3% 50%, 0 0);
}
.bs-con .lg-text {
	color: var(--color-white);
	font-family: var(--exo-font) !important;
	font-weight: 700;
	margin-bottom: 10px;
	font-size: 54px;
	line-height: 65px;
	text-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
	margin-bottom: 0 !important;
}
.bs-con .para-text {
	color: var(--color-white);
	font-family: var(--rubik-font);
	font-weight: 400;
	font-size: 22px;
	line-height: 1.4;
	margin-bottom: 0 !important;
}
.bs-con .para-text span {
	font-weight: 500 !important;
}
.bsc-btn {
	display: flex;
	justify-content: start;
	gap: 30px;
	margin-top: 40px;
}
.ban-feat-wrapper {
	margin-top: 150px;
}
.slide-animate {
	opacity: 0;
	transform: translateY(40px);
}
@keyframes fadeInLeftCustom {
	0% {
		opacity: 0;
		transform: translateY(40px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}
.delay-1 {
	animation-delay: 0.3s;
}
.delay-2 {
	animation-delay: 0.4s;
}
.delay-3 {
	animation-delay: 0.6s;
}
.delay-4 {
	animation-delay: 0.7s;
}
.delay-5 {
	animation-delay: 0.8s;
}
.sticky {
	width: 100%;
	position: fixed !important;
	top: 0;
	z-index: 999;
	background-color: var(--color-white);
	transform: translateY(-100%);
	opacity: 0;
	animation: smoothSticky 0.31s cubic-bezier(0.4, 0, 0.2, 1) forwards;
	will-change: transform, opacity;
}
@keyframes smoothSticky {
	to {
		transform: translateY(0);
		opacity: 1;
	}
}
img.header-logo {
	max-width: 225px;
}
.sticky img.header-logo {
	max-width: 225px;
}
.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show,
.nav-link:focus {
	color: var(--primary-color) !important;
}
.header-dropdown .dropdown-menu {
	padding: 0 !important;
	margin: 0;
	border: none;
	border-radius: 0px !important;
	background: rgb(236, 241, 248);
	box-shadow: -2px 2px 70px -25px rgba(0, 0, 0, 0.35);
}
.header-dropdown .dropdown-menu li {
	border-bottom: 1px solid #eee;
}
.header-dropdown .dropdown-menu li:first-child {
	border-radius: 20px 20px 0 0 !important;
}
.header-dropdown .dropdown-menu li a {
	position: relative;
	font-size: 15px;
	padding: 12px 15px;
	color: var(--color-dark);
	background-color: var(--color-white);
	font-weight: 400;
	transition: all 0.5s ease-in-out;
}
.header-dropdown .dropdown-menu li a:hover {
	background-color: var(--primary-color);
	color: var(--color-white);
}
.header-dropdown .dropdown-menu li .dropdown-item.active {
	background-color: var(--primary-color) !important;
	color: var(--color-white) !important;
}
.header-dropdown .dropdown-menu li:last-child {
	border: none !important;
}
.header-dropdown .dropdown-menu.sub-dropdown .nav-link:hover {
	color: var(--secondary-color) !important;
	transition: color 0.3s ease;
}
#header-dropdown .dropdown-toggle::after {
	display: inline-block;
	content: "\f078" !important;
	font-family: "Font Awesome 6 Pro" !important;
	vertical-align: baseline !important;
	border: none !important;
	font-size: 14px;
	font-weight: 500;
	position: relative;
	top: 0px;
	right: 15px;
	margin-left: 2px;
	transition: transform 0.3s ease-in-out;
	transform: rotate(0deg);
}
#header-dropdown:hover .dropdown-toggle::after {
	transform: rotate(180deg);
}
.navbar-toggler-icon {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23ffffff' stroke-linecap='round' stroke-miterlimit='10' stroke-width='3.2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}
.navbar-toggler {
	border-radius: 0 !important;
	padding: 7px 14px !important;
	border: none !important;
	background-color: var(--secondary-color) !important;
}
.navbar-toggler:focus {
	box-shadow: 0 0 0 0.34rem #05315540 !important;
}
/* top header */
.top-header {
	position: relative;
	padding: 6px 0;
	background-color: var(--secondary-color);
	z-index: 3;
}
.top-header .tp-left {
	position: relative;
	display: flex;
	align-items: center;
}
.top-header .tp-left .info-content {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 0 20px;
	position: relative;
	z-index: 1;
}
.top-header .tp-left .info-content:not(:last-child)::after {
	content: "";
	position: absolute;
	background: rgba(255, 255, 255, 0.35);
	width: 1px;
	height: 17px;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
}
.top-header .tp-left .info-content .icon {
	color: var(--color-white);
	font-size: 14px;
}
.top-header .tp-left .info-content .info {
	display: inline-block;
	color: var(--color-white);
	font-size: 14px;
	line-height: 1;
}
.top-header .tp-socials {
	list-style: none;
	margin: 0;
	padding: 0;
	display: inline-flex;
	align-items: center;
	gap: 4px;
}
.top-header .tp-socials li a {
	width: 30px;
	height: 30px;
	color: var(--color-white);
	font-size: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	z-index: 1;
}
.top-header .tp-socials li a::after {
	position: absolute;
	content: "";
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	background: var(--primary-color);
	transform: scale(0.5);
	opacity: 0;
	transition: 0.3s;
	border-radius: 100%;
	/* border: 2px solid var(--color-white); */
}
.top-header .tp-socials li:hover a::after {
	transform: scale(1);
	opacity: 1;
}
.dropdown-toggle {
	color: inherit !important;
}
/* main header */
.main-header {
	position: relative;
	width: 100%;
	z-index: 99;
	/* padding: 10px 0; */
	background: var(--color-white);
}
.header-logo-box {
	position: relative;
	z-index: 1;
	min-height: 100px;
	display: flex;
	align-items: center;
}
.header-logo-box::before {
	content: "";
	position: absolute;
	height: 100%;
	width: 180%;
	background: var(--primary-color);
	z-index: -1;
	/* right: 0; */
	left: -56%;
	height: 100%;
	top: 0;
	clip-path: polygon(0 0, 100% 0, 92% 100%, 0% 100%);
}
.header-logo-box::after {
	position: absolute;
	content: "";
	width: 100%;
	height: 108%;
	background: var(--secondary-color);
	bottom: 0px;
	right: -75px;
	z-index: -1;
	clip-path: polygon(92% 0, 101% 0, 84% 100%, 75% 100%);
}
/* buttons */
.site-btn {
	position: relative;
	height: 60px;
	width: fit-content;
	padding: 0 26px;
	font-family: var(--rubik-font) !important;
	font-size: 16px;
	font-weight: 500;
	letter-spacing: 0.8px;
	border-radius: 4px;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 1;
	transition: 0.3s ease all;
}
.header-btn .site-btn {
	padding: 0 28px;
	height: 50px;
}
.site-btn.style-one {
	position: relative;
	overflow: hidden;
	color: var(--color-white);
	background: var(--primary-color);
	z-index: 1;
}
.site-btn.style-one:hover {
	color: var(--color-white);
}
.site-btn.button-flip:hover {
	transform: none;
}
.site-btn.style-one::after {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	content: "";
	background: var(--secondary-color);
	transform: scaleY(0);
	z-index: -1;
	transform-origin: top center;
	transition:
		transform 0.24s ease-in-out,
		-webkit-transform 0.24s ease-in-out;
}
.site-btn.style-one:hover::after {
	transform: scaleY(1);
	transform-origin: bottom center;
}
.site-btn.button-flip span {
	display: inline-flex;
	position: relative;
	z-index: 3;
	transition:
		opacity 0.65s,
		transform 0.85s;
	transition-timing-function: cubic-bezier(0.15, 0.85, 0.31, 1);
}
.site-btn.button-flip:hover span {
	transform: translateX(-200%);
}
.site-btn.button-flip span::after {
	content: attr(data-text);
	display: inline-block;
	position: absolute;
	white-space: nowrap;
	top: 50%;
	opacity: 0;
	transition: inherit;
	left: 100%;
	transform: translate(50%, -50%);
	z-index: 1;
}
.site-btn.button-flip:hover span::after {
	opacity: 1;
	transform: translate(100%, -50%);
}
/* style 2 */
.site-btn.style-two {
	position: relative;
	overflow: hidden;
	color: var(--color-white);
	background: var(--primary-color);
	z-index: 1;
}
.site-btn.style-two::after {
	position: absolute;
	top: 0;
	left: 0;
	width: 110%;
	height: 100%;
	content: "";
	background: var(--third-color);
	transform: scaleY(0);
	z-index: -1;
	transform-origin: top center;
	transition:
		transform 0.24s ease-in-out,
		-webkit-transform 0.24s ease-in-out;
}
.site-btn.style-two:hover::after {
	transform: scaleY(1);
	transform-origin: bottom center;
}
.site-btn .icon-reverse-wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
}
.site-btn .icon-reverse-wrapper .btn-text {
	display: inline-block;
	transition: transform 0.6s 0.125s cubic-bezier(0.1, 0.75, 0.25, 1);
	margin-inline-start: -23px;
}
.site-btn:hover .icon-reverse-wrapper .btn-text {
	transition-delay: 0.1s;
	transform: translateX(23px);
}
.site-btn .icon-reverse-wrapper .btn-icon {
	display: inline-block;
	transition:
		opacity 0.4s 0.25s,
		transform 0.6s 0.25s;
	transition-timing-function: cubic-bezier(0.1, 0.75, 0.25, 1);
}
.site-btn:hover .icon-reverse-wrapper .btn-icon {
	opacity: 0;
	transition-delay: 0s;
	transform: translateX(10px);
}
.site-btn .icon-reverse-wrapper i {
	padding-left: 6px;
	display: inline-block;
	top: 1px;
	position: relative;
	font-size: 16px;
}
.site-btn .icon-reverse-wrapper .btn-icon + .btn-icon {
	margin-inline-end: 0;
	margin-inline-start: 8px;
	display: inline-block;
	margin-inline-start: 0;
	margin-inline-end: 0;
	opacity: 0;
	transform: translateX(-10px);
	transition-delay: 0s;
	order: -2;
}
.site-btn:hover .icon-reverse-wrapper .btn-icon + .btn-icon {
	opacity: 1;
	transform: translateX(0);
	transition-delay: 0.225s;
}
.site-btn .icon-reverse-wrapper .btn-icon + .btn-icon i {
	padding-right: 6px;
}
.ban-feat-card {
	background: var(--color-white);
	border-radius: 10px;
	padding: 30px 25px;
	position: relative;
	height: 100%;
	z-index: 2;
	border: 2px solid transparent;
	transition: 0.3s;
}
.ban-feat-card:hover {
	border: 2px solid var(--primary-color);
}
.ban-feat-card .banc-header {
	display: flex;
	align-items: center;
	gap: 15px;
	margin-bottom: 20px;
}
.ban-feat-card .banc-header .banfeat-icon {
	width: 65px;
	height: 65px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: var(--primary-color);
	box-shadow: 0px 6px 34px rgba(215, 216, 222, 0.41);
	flex: 0 0 auto;
	transition: 0.3s ease all;
}
.ban-feat-card:hover .banc-header .banfeat-icon {
	background-color: var(--secondary-color);
}
.ban-feat-card .banc-header .banfeat-icon img {
	max-width: 35px;
	height: auto;
}
.ban-feat-card:hover .banc-header .banfeat-icon img {
	animation: bounceIn 0.8s ease;
}
.ban-feat-card .banc-header .banc-title {
	color: var(--heading-color);
	margin-bottom: 0 !important;
	font-size: 20px;
	font-weight: 600;
	line-height: 1.4;
}
.ban-feat-card .banc-desc {
	color: var(--muted-color);
	font-size: 16px;
	font-weight: 400;
	line-height: 26px;
	margin-bottom: 0 !important;
}
/* About Us */
.counter-main-box {
	display: flex;
	flex-wrap: wrap;
	position: absolute;
	padding: 40px;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	gap: 20px;
	justify-content: space-between;
}

.counter-main-box .wow {
	width: calc(50% - 10px);
	position: relative;
}

.abtus-wid-wrap {
	position: relative;
	z-index: 1;
	height: 100%;
	max-height: 100%;
	width: 100%;
	margin-right: 25px;
	border-radius: 4px;
}
.abtus-wid-wrap::before {
	content: "";
	position: absolute;
	background: var(--primary-color);
	width: 7px;
	height: 30%;
	border-radius: 2px;
	top: 0;
	right: -25px;
}
.abtus-wid-wrap::after {
	content: "";
	position: absolute;
	background: var(--primary-color);
	width: 7px;
	height: 60%;
	border-radius: 2px;
	bottom: 0;
	right: -25px;
}
.abtus-wid-wrap .about-widget {
	height: 100%;
	max-height: 100%;
	width: 100%;
	object-fit: cover;
	border-radius: 4px;
}
.abtus-wid-wrap .counter-area {
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	align-content: center;
	justify-content: center;
	position: relative;
	text-align: start;
	z-index: 10;
	height: 100%;
	animation: floatSide 3s ease-in-out infinite;
	background: linear-gradient(135deg, rgba(0, 51, 88, 0.55), rgba(0, 51, 88, 0.22));
	backdrop-filter: blur(18px);
	-webkit-backdrop-filter: blur(18px);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 20px;
	padding: 25px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}
@keyframes floatSide {
	0% {
		transform: translateX(0);
	}
	50% {
		transform: translateX(20px);
	}
	100% {
		transform: translateX(0);
	}
}
.abtus-wid-wrap .counter-area .icon {
	position: relative;
	z-index: 1;
	width: 80px;
	height: 80px;
	background-color: var(--third-color);
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	border-radius: 4px;
	transition: 0.3s ease-in-out all;
}
.abtus-wid-wrap .counter-area:hover .icon {
	background-color: var(--primary-color);
}
.abtus-wid-wrap .counter-area .icon img {
	max-width: 50px;
	height: auto;
}
.abtus-wid-wrap .counter-area .content {
	margin-top: 10px;
}
.abtus-wid-wrap .counter-area .content .counter-value {
	color: var(--color-white);
	margin-bottom: 8px !important;
	line-height: 1;
	font-size: 45px;
	font-weight: 700;
}
.abtus-wid-wrap .counter-area .content .counter-value .unit {
	padding-left: 3px;
}
.abtus-wid-wrap .counter-area .content .counter-title {
	color: var(--color-white);
	font-family: var(--rubik-font);
	font-size: 16px;
	line-height: 1.1;
	font-weight: 400;
	margin-bottom: 0 !important;
}
.abtus-wid-wrap .shape-one {
	position: absolute;
	top: 0;
	left: 0;
}
.abtus-wid-wrap .shape-two {
	position: absolute;
	bottom: 0;
	right: 0;
}
.section-title {
	position: relative;
	margin-bottom: 25px;
}
.section-title .sec-subtitle {
	display: inline-block;
	margin-bottom: 15px;
	color: var(--primary-color);
	font-size: 16px;
	line-height: 24px;
	font-weight: 600;
	font-family: var(--exo-font) !important;
	text-transform: uppercase;
	position: relative;
	z-index: 1;
	max-width: max-content;
}
.section-title .sec-subtitle::after {
	content: "";
	position: absolute;
	width: 42px;
	right: -50px;
	top: 50%;
	transform: translateY(-50%);
	height: 2px;
	background: linear-gradient(90deg, var(--primary-color), rgba(33, 38, 45, 0)) !important;
}
.section-title.text-center .sec-subtitle::before {
	content: "";
	position: absolute;
	width: 42px;
	left: -50px;
	top: 50%;
	transform: translateY(-50%);
	height: 2px;
	background: linear-gradient(90deg, rgba(33, 38, 45, 0), var(--primary-color)) !important;
}
.section-title .lg-title {
	color: var(--heading-color);
	font-family: var(--exo-font);
	font-size: 45px;
	line-height: 55px;
	font-weight: 600;
	margin-bottom: 0 !important;
}
.section-title .lg-title span {
	color: var(--secondary-color);
}
.section-title .sec-para {
	margin-top: 20px !important;
	color: var(--muted-color);
	font-size: 17px;
	line-height: 27px;
	font-weight: 400;
	margin-bottom: 0 !important;
}
.abtus-wcu-wrapper {
	margin-top: 40px;
}
.abtlist-heading {
	color: var(--heading-color);
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 15px !important;
}
.abtus-wcu-list {
	list-style: none;
	margin: 0;
	padding: 0;
}
.abtus-wcu-list li {
	position: relative;
	color: var(--muted-color);
	font-family: var(--rubik-font);
	font-size: 17px;
	line-height: 27px;
	font-weight: 400;
	margin-bottom: 12px;
	padding-left: 25px;
}
.abtus-wcu-list li:last-child {
	margin-bottom: 0 !important;
}
.abtus-wcu-list li::before {
	content: "";
	display: inline-block;
	height: 18px;
	width: 18px;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	background-image: url("../img/icons/tik.svg");
	background-repeat: no-repeat;
	background-size: contain;
	opacity: 0.6;
}
.abt-list-widget {
	position: relative;
	height: 100%;
	max-height: 100%;
	width: 100%;
	border-radius: 4px;
}
.abt-list-widget img {
	height: 100%;
	max-height: 100%;
	width: 100%;
	object-fit: cover;
	border-radius: 4px;
}
.abt-contact-info {
	margin-top: 40px;
	display: flex;
	gap: 15px;
	margin-bottom: 30px;
}
.abt-contact-info .icon {
	min-width: 60px;
	height: 60px;
	border-radius: 50%;
	border: 1px solid #e4e4e48a;
	background-color: #f1e7e380;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
}
.abt-contact-info .icon img {
	max-width: 25px;
	height: auto;
}
.abt-contact-info .info .info-head {
	color: var(--muted-color);
	font-family: var(--rubik-font) !important;
	font-size: 17px;
	font-weight: 400;
	line-height: 1.3;
	margin-bottom: 7px !important;
}
.hover-moving-primary {
	font-family: var(--exo-font) !important;
	color: var(--heading-color);
	position: relative;
	display: inline-block;
	font-size: 17px;
	font-weight: 600;
	transition: 0.3s;
}
.hover-moving-primary:hover {
	color: var(--primary-color);
}
.hover-moving-primary::after {
	content: "";
	position: absolute;
	width: 100%;
	height: 2px;
	bottom: 0;
	left: 0;
	background-color: currentColor;
	transform: scaleX(0);
	transform-origin: bottom right;
	transition: transform 0.3s;
}
.hover-moving-primary:hover::after {
	transform-origin: bottom left;
	transform: scaleX(1);
}
/* services */
.ser-card-col {
	margin-bottom: 25px;
}
.service-card {
	background: var(--color-white);
	border-radius: 4px;
	box-shadow: 0px 6px 34px rgba(215, 216, 222, 0.41);
	padding: 30px;
	position: relative;
	overflow: hidden;
	z-index: 1;
	transition: 0.3s;
	height: 100%;
}
.service-card .tag {
	color: var(--primary-color);
	background: #ffefe8;
	line-height: 1;
	padding: 10px 60px;
	top: 35px;
	right: -40px;
	transform: rotate(45deg);
	position: absolute;
	z-index: 1;
	font-size: 18px;
	line-height: 1;
	font-weight: 500;
}
.service-card:hover {
	transform: scale(1.02);
}
.service-card .ser-icon {
	margin-bottom: 25px;
}
.service-card .ser-icon img {
	max-width: 75px;
	height: auto;
}
.service-card .ser-title {
	color: var(--heading-color);
	font-family: var(--exo-font);
	font-size: 24px;
	font-weight: 600;
	line-height: 34px;
	text-transform: capitalize;
	margin-bottom: 20px;
}
.service-card .ser-title a {
	color: inherit;
	font-family: inherit !important;
	font-size: inherit;
	font-weight: inherit;
}
.service-card .ser-desc {
	color: var(--muted-color);
	font-size: 16px;
	line-height: 26px;
	margin-bottom: 0;
}
.site-btn.read-more-btn-border {
	color: var(--muted-color);
	border: 1px solid #e4e4e4;
	border-radius: 100px;
	min-width: 100%;
	justify-content: space-between;
	padding: 2px 2px 2px 28px;
	transition: all 0.4s ease;
}
.site-btn.read-more-btn-border:hover {
	color: var(--primary-color);
	background: var(--color-white);
	border-color: transparent;
	box-shadow: 0px 6px 34px rgba(215, 216, 222, 0.41);
}
.site-btn.read-more-btn-border .text {
	max-width: max-content;
	min-width: max-content;
}
.ser-action-btn {
	margin-top: 30px;
}
.site-btn.read-more-btn-border .site-btn-overlay {
	position: relative;
	overflow: hidden;
	height: 55px;
	width: 55px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: #ffefe8;
	transition: all 0.4s ease;
}
.site-btn.read-more-btn-border:hover .site-btn-overlay {
	background-color: var(--primary-color);
}
.site-btn.read-more-btn-border .site-btn-overlay .site-icon {
	transition: all 0.4s ease;
	color: var(--primary-color);
	transform: rotate(-45deg);
}
.site-btn.read-more-btn-border:hover .site-btn-overlay .site-icon {
	transform: translateY(-300%) translateX(475%);
	color: var(--color-white);
}
.site-btn.read-more-btn-border .site-btn-overlay i.site-icon-bottom {
	position: absolute;
	transition: all 0.4s ease;
	transform: translateY(300%) translateX(-475%) rotate(-45deg);
	color: var(--primary-color);
}
.site-btn.read-more-btn-border:hover .site-btn-overlay i.site-icon-bottom {
	color: var(--color-white);
	transform: translateY(0) translateX(0) scale(1.1) rotate(-45deg);
}
.service-pagination,
.testi-pagination {
	text-align: center;
	margin-top: 40px;
}
.service-pagination .swiper-pagination-bullet,
.testi-pagination .swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	background: #dcdcdc;
	opacity: 1;
	border-radius: 50%;
	margin: 0 6px !important;
	transition: all 0.4s ease;
}
.service-pagination .swiper-pagination-bullet-active,
.testi-pagination .swiper-pagination-bullet-active {
	width: 30px;
	height: 8px;
	border-radius: 20px;
	background: #ff6600;
}
/* why choose us */
.wcu-con-list {
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 25px;
}
.wcu-con-list li {
	display: flex;
	align-items: center;
	gap: 20px;
	padding: 36px 18px 35px;
	background: #ffffff;
	box-shadow:
		0 4px 10px rgba(0, 0, 0, 0.04),
		0 12px 30px rgba(0, 0, 0, 0.06);
	border-radius: 6px;
	position: relative;
	z-index: 1;
	height: 100%;
	overflow: hidden;
	transition: all 0.4s ease;
	transition-delay: 0s !important;
}
.wcu-con-list li:hover {
	transform: scale(1.02);
	box-shadow:
		0 3px 10px rgba(255, 102, 0, 0.1),
		0 6px 18px rgba(255, 102, 0, 0.06);
}
.wcu-con-list li::after {
	content: "";
	position: absolute;
	z-index: -1;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: url("../img/shapes/wcu-shape.webp");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	transition: all 0.4s ease;
	opacity: 0;
	z-index: -1;
	pointer-events: none;
}
.wcu-con-list li:hover::after {
	opacity: 1;
}
.wcu-con-list li .icon {
	width: 85px;
	height: 85px;
	min-width: 85px;
	min-height: 85px;
	border-radius: 50%;
	background: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0px 6px 34px rgb(215 216 222 / 56%);
}
.wcu-con-list li .icon img {
	max-width: 40px;
}
.wcu-con-list li:hover .icon img {
	animation: bounceIn 0.8s ease;
}
.wcu-con-list li .wcu-title {
	color: var(--heading-color);
	font-size: 20px;
	line-height: 1.2;
	font-weight: 600;
	margin-bottom: 8px;
}
.wcu-con-list li .wcu-desc {
	color: var(--muted-color);
	font-size: 16px;
	line-height: 26px;
	font-weight: 400;
	margin-bottom: 0 !important;
}
.wcu-wid-wrap {
	position: relative;
	height: 100%;
	max-height: 100%;
}
.wcu-wid-wrap ul {
	display: flex;
	flex-wrap: wrap;
	height: 100%;
	gap: 24px;
	justify-content: space-between;
}
.wcu-wid-wrap ul li {
	width: 47%;
	border-radius: 6px;
}
.wcu-wid-wrap ul li img {
	width: 100%;
	object-fit: cover;
	height: 100%;
	min-height: 250px;
	/* max-height: 250px; */
	border-radius: 6px;
}
.counter-area.bcg {
	background-color: var(--primary-color);
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 20px;
	border-radius: 6px;
}
.counter-area.bcg .icon {
	width: 100px;
	height: 100px;
	background-color: var(--secondary-color);
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 6px;
	margin: auto;
	margin-bottom: 16px;
}
.counter-area.bcg .icon img {
	max-width: 100px;
	max-height: 100px;
	height: 100px;
	width: 100px;
	min-height: unset !important;
	object-fit: cover;
}
.counter-area.bcg .counter-wrapper {
	position: relative;
	text-align: center;
}
.counter-area.bcg .count-title {
	color: var(--color-white);
	font-family: var(--exo-font);
	font-size: 44px;
	line-height: 1.1;
	font-weight: 600;
	margin-bottom: 0;
}
.counter-area.bcg .desc {
	color: var(--color-white);
	font-size: 16px;
	line-height: 1.4;
	font-weight: 600;
	font-family: var(--exo-font) !important;
	margin-top: 7px !important;
	margin-bottom: 0 !important;
}
/* testimonials */
.testimonials-section .testi-greet {
	padding-top: 25px;
	border-top: 1px solid #e4e4e4;
}
.testimonials-section .testi-greet p {
	font-size: 18px;
	line-height: 1.5;
	color: var(--heading-color);
	display: flex;
	align-items: end;
	gap: 15px;
}
.testimonials-section .testi-greet p span {
	color: var(--primary-color);
	font-size: 50px;
	font-family: var(--exo-font);
	line-height: 45px;
	font-weight: 800;
}
.testimonial-slider-wrapper {
	background-color: var(--color-white);
	position: relative;
	z-index: 1;
	padding: 30px;
	border-radius: 6px;
}
.testimonial-item {
	position: relative;
}
.testimonial-item .image-area {
	border-radius: 4px;
}
.testimonial-item .image-area img {
	min-height: 320px;
	width: 100%;
	border-radius: 4px;
	object-fit: cover;
}
.testimonial-item .content-area .star-rating {
	display: flex;
	align-items: center;
	gap: 3px;
	padding: 10px 15px;
	background: #f3edea61;
	border-radius: 4px;
	max-width: max-content;
	margin-bottom: 20px;
}
.testimonial-item .content-area .star-rating i {
	font-size: 13px;
	color: #ffc107;
}
.testimonial-item .content-area .testi-desc {
	color: var(--muted-color);
	font-size: 16px;
	font-weight: 400;
	line-height: 26px;
	margin-bottom: 30px !important;
}
.testimonial-item .content-area .author-content .auth-name {
	color: var(--heading-color);
	margin-bottom: 5px;
	font-family: var(--exo-font);
	font-size: 24px;
	font-weight: 600;
}
.testimonial-item .content-area .author-content .auth-designation {
	color: var(--primary-color);
	font-family: var(--rubik-font) !important;
	font-size: 16px;
	line-height: 26px;
	margin-bottom: 0 !important;
}
.testi-prev,
.testi-next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 46px;
	height: 46px;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	border-radius: 50%;
	font-size: 18px;
	background-color: var(--color-white);
	color: var(--heading-color);
	box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.04);
	transition: 0.4s ease-in-out all;
	z-index: 1;
}
.testi-prev:hover,
.testi-next:hover {
	color: var(--color-white);
}
.testi-prev::before,
.testi-next::before {
	position: absolute;
	content: "";
	left: 50%;
	top: 50%;
	height: 100%;
	width: 100%;
	background: var(--primary-color);
	transform: translate(-50%, -50%) scale(0.2);
	z-index: -1;
	border-radius: 50%;
	transition: 0.3s;
	opacity: 0;
}
.testi-prev:hover::before,
.testi-next:hover::before {
	opacity: 1;
	transform: translate(-50%, -50%) scale(1);
}
.testi-prev {
	left: -20px;
}
.testi-next {
	right: -20px;
}
/* CTA Section */
.cta-thumb {
	position: relative;
	z-index: 1;
	overflow: hidden;
	margin: 0 0 -8px;
	height: 100%;
	width: 100%;
	max-width: 100%;
}
.cta-thumb img {
	height: 100%;
	width: 100%;
	max-height: 650px;
	object-fit: cover;
}
.cta-form-area {
	background-color: var(--color-white);
	padding: 80px 80px 80px 120px;
}
.cta-form-wrapper .form-group {
	margin-bottom: 25px;
}
.cta-form-wrapper .form-control,
.cta-form-wrapper .form-select {
	background-color: #f3f2f1 !important;
	font-size: 15px;
	color: var(--muted-color);
	font-weight: 400;
	padding: 18px 25px;
	border: 1px solid transparent !important;
	border-radius: 7px;
	box-shadow: none !important;
	transition: 0.45s ease-in-out all !important;
}
.cta-form-wrapper .form-control:focus,
.cta-form-wrapper .form-select:focus {
	background-color: #eff1f3 !important;
	border-color: var(--primary-color) !important;
}
.cta-form-wrapper .form-control::placeholder,
.cta-form-wrapper .form-select::placeholder {
	font-size: 15px;
	color: var(--muted-color);
	font-weight: 400;
	transition: 0.45s ease-in-out all !important;
}
.cta-form-wrapper .form-control:focus::placeholder,
.cta-form-wrapper .form-select:focus::placeholder {
	padding-left: 6px !important;
}
.image-anime {
	position: relative;
	overflow: hidden;
}
.image-anime::before {
	content: "";
	position: absolute;
	top: 0;
	left: -120%;
	width: 60%;
	height: 100%;
	background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.15) 40%, rgba(255, 102, 0, 0.25) 50%, rgba(255, 255, 255, 0.15) 60%, transparent 100%);
	transform: skewX(-25deg);
	transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
	z-index: 2;
}
.image-anime:hover::before {
	left: 130%;
}
/* Footer */
footer.footer {
	position: relative;
	overflow: hidden;
	background-color: var(--secondary-color);
	z-index: 1;
}
footer.footer::before {
	content: "";
	display: inline-block;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-image: url("../img/shapes/footer-shape.webp");
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	z-index: -1;
	opacity: 0.6;
}
footer .footer-top {
	padding-top: 80px;
	padding-bottom: 40px;
}
.footer-logo {
	background-color: var(--primary-color);
	width: fit-content;
	padding: 10px;
	border-radius: 6px;
	margin-bottom: 25px;
}
.footer-logo img {
	max-width: 220px;
}
.footer-desc {
	color: rgba(255, 255, 255, 0.7);
	font-size: 16px;
	line-height: 26px;
	margin-bottom: 20px !important;
}
.footer-social {
	display: flex;
	gap: 12px;
	padding: 0;
	margin: 0;
	list-style: none;
}
.footer-social li a {
	width: 40px;
	height: 40px;
	background: #f1f3f5;
	color: #0a3d62;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 6px;
	font-size: 16px;
	text-decoration: none;
	transition: all 0.3s ease;
}
.footer-social li a:hover {
	background: #ff6600;
	color: #fff;
	transform: translateY(-4px);
	box-shadow: 0 8px 20px rgba(255, 102, 0, 0.25);
}
.footer-title {
	position: relative;
	color: var(--color-white);
	z-index: 1;
	font-weight: 700;
	font-size: 20px;
	line-height: 1;
	max-width: max-content;
	padding-bottom: 13px;
	margin-bottom: 27px;
}
.footer-title::after {
	position: absolute;
	content: "";
	z-index: 1;
	bottom: 0;
	left: 0;
	background: var(--primary-color);
	width: 100%;
	height: 2px;
}
.footer-links {
	list-style: none;
	margin: 0;
	padding: 0;
}
.footer-links li {
	margin-bottom: 15px;
}
.footer-links li a {
	position: relative;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.3;
	padding-bottom: 4px;
	color: rgba(255, 255, 255, 0.7);
	transition: 0.3s ease all;
}
.footer-links li:hover a {
	color: var(--primary-color);
}
.footer-links li a::after {
	content: "";
	position: absolute;
	width: 100%;
	height: 2px;
	bottom: 0;
	left: 0;
	background-color: currentColor;
	transform: scaleX(0);
	transform-origin: bottom right;
	transition: transform 0.3s;
}
.footer-links li a:hover::after {
	transform-origin: bottom left;
	transform: scaleX(1);
}
.cta-links {
	list-style: none;
	margin: 0;
}
.cta-links li {
	display: flex;
	align-items: center;
	gap: 12px;
}
.cta-links li:not(:last-child) {
	margin-bottom: 20px;
}
.cta-links li .icon {
	min-width: 50px;
	min-height: 50px;
	background: var(--primary-color);
	color: var(--color-white);
	font-size: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 6px;
	transition: 0.32s ease-in-out all;
}
.cta-links li:hover .icon {
	background-color: var(--third-color);
}
.cta-links li .cts-info {
	font-size: 16px;
	color: rgba(255, 255, 255, 0.7);
	line-height: 26px;
	margin-bottom: 0 !important;
	transition: 0.4s ease-in-out all !important;
}
.cta-links li a.cts-info:hover {
	color: var(--primary-color) !important;
}
.footer-bottom {
	padding: 20px 0;
	border-top: 1px solid rgba(228, 228, 228, 0.06);
}
.copyright-text,
.credit-text {
	font-size: 16px;
	color: var(--color-white);
}
.copyright-text .brand-text {
	color: var(--primary-color);
	text-transform: capitalize;
	font-weight: 500 !important;
	transition: color 0.5s ease-in-out;
}
.copyright-text .brand-text:hover {
	color: var(--blue-color);
}
.credit-text a {
	color: #0091bf !important;
	font-weight: 500 !important;
	text-transform: capitalize;
}
/* Breadcrumb */
.site-breadcrumb {
	position: relative;
	overflow: hidden;
	padding: 70px 0;
	background-image: url("../img/bg/breadcrumb-banner.webp");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	/* background-attachment: fixed; */
	z-index: 2;
}
.site-breadcrumb::before {
	content: "";
	position: absolute;
	background-color: var(--color-dark);
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	z-index: -1;
	opacity: 0.6;
}
.breadcrumb-title {
	text-align: center;
	color: var(--color-white);
	font-family: var(--exo-font) !important;
	font-size: 45px;
	font-weight: 700;
	line-height: 55px;
	margin-bottom: 20px;
	text-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
}
.breadcrumb {
	display: flex;
	align-items: center;
	justify-content: center;
	list-style: none;
	padding: 0;
	margin: 0;
	font-family: var(--rubik-font);
	font-size: 18px;
	font-weight: 600;
	text-align: center;
}
.breadcrumb li {
	position: relative;
	color: #cfd8d3;
	font-family: var(--rubik-font) !important;
	font-weight: 500;
	font-size: 14px;
}
.breadcrumb li:not(:last-child) {
	margin-right: 30px;
}
.breadcrumb li:not(:last-child)::after {
	content: "\f324";
	font-family: "Font Awesome 6 Pro";
	font-weight: 900;
	position: absolute;
	right: -22px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 12px;
	color: var(--primary-color);
}
.breadcrumb li a {
	text-decoration: none;
	color: #cfd8d3;
	transition: 0.3s ease;
	font-size: 14px;
}
.breadcrumb li a:hover {
	color: var(--primary-color);
}
.breadcrumb li.active {
	color: var(--primary-color);
}
.vm-wid-wrap {
	position: relative;
	width: 100%;
	height: 100%;
	max-height: 100%;
	border-radius: 6px;
}
.vm-wid-wrap img {
	height: 100%;
	width: 100%;
	max-height: 100%;
	object-fit: cover;
	border-radius: 6px;
}
.vm-tab-wrapper {
	display: flex;
	gap: 15px;
	margin-bottom: 30px;
	flex-wrap: wrap;
}
.vm-tab-btn {
	position: relative;
	border: none;
	outline: none;
	background: #f3e0d8;
	color: #302e2e;
	padding: 18px 35px;
	border-radius: 12px;
	font-size: 18px;
	font-weight: 600;
	transition: all 0.4s ease;
	border: 1px solid rgb(222 216 213);
	z-index: 1;
}
.vm-tab-btn.active {
	background: var(--primary-color);
	color: var(--color-white);
}
.vm-tab-btn.active::before {
	content: "";
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: -19px;
	width: 22px;
	height: 22px;
	background: var(--primary-color);
	rotate: 45deg;
	z-index: -1;
}
.vm-content-wrapper {
	position: relative;
}
.vm-tab-content {
	display: none;
	background: #fff;
	padding: 35px;
	border-left: 6px solid var(--third-color);
	border-radius: 20px;
	box-shadow: 0 10px 40px rgba(0, 51, 88, 0.12);
	transform: scale(0.92);
	opacity: 0;
}
.vm-tab-content.active {
	display: block;
	animation: zoomFade 0.5s ease forwards;
}
.vm-title {
	font-size: 28px;
	margin-bottom: 15px;
	color: #081b12;
}
.vm-icon {
	width: 100px;
	height: 100px;
	background-color: #f7eeeb;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 10px;
	margin-bottom: 25px;
	transition: 0.32s ease-in-out all;
}
.vm-tab-content:hover .vm-icon {
	background-color: var(--primary-color);
}
.vm-icon img {
	max-width: 55px;
	height: auto;
	transition: 0.32s ease-in-out all;
}
.vm-tab-content:hover .vm-icon img {
	filter: brightness(0) invert(1);
}
.vm-desc {
	font-size: 18px;
	line-height: 30px;
	font-weight: 500;
	color: var(--secondary-color);
	margin-bottom: 0;
}
@keyframes zoomFade {
	0% {
		opacity: 0;
		transform: scale(0.92);
	}

	100% {
		opacity: 1;
		transform: scale(1);
	}
}
.core-list {
	list-style: none;
	margin: 0;
	padding: 0;
}
.core-list li {
	position: relative;
	color: var(--secondary-color);
	font-family: var(--rubik-font);
	font-size: 20px;
	line-height: 1.1;
	font-weight: 500;
	margin-bottom: 20px;
	padding-left: 30px;
}
.core-list li::before {
	content: "";
	display: inline-block;
	height: 22px;
	width: 22px;
	position: absolute;
	left: 0;
	top: 0px;
	background-image: url("../img/icons/right-wave.png");
	background-repeat: no-repeat;
	background-size: contain;
}
.i-icon-box {
	display: flex;
	justify-content: space-between;
	padding-top: 50px !important;
	padding-left: 0 !important;
}
.i-icon-box li {
	padding-left: 0 !important;
}
.i-icon-box li::before {
	content: "";
	display: inline-block;
	height: 40px;
	width: 40px;
	position: absolute;
	left: 0;
	top: -48px;
	background-repeat: no-repeat;
	background-size: contain;
}
.core-list li.i-excellence::before {
	background-image: url("../img/icons/excellence.png");
}
.core-list li.i-ethics::before {
	background-image: url("../img/icons/ethics.png");
}
.core-list li.i-trust::before {
	background-image: url("../img/icons/trust.png");
}
.core-list li span {
	display: block;
	font-size: 17px;
	font-weight: 400;
	line-height: 1.4;
	color: var(--color-dark);
	padding-top: 10px;
}
/* Team */
.team-block {
	position: relative;
	z-index: 1;
	overflow: hidden;
	border-radius: 6px;
	transition: 0.3s;
	/* height: 100%; */
	box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.1);
	margin-bottom: 35px;
}
.team-block.custom {
	background-color: #f5f6f7c4 !important;
}
.team-block.custom .content-area {
	background-color: transparent !important;
}
.team-block:hover {
	transform: scale(1.03);
}
.team-block .image-area {
	position: relative;
	z-index: 1;
	height: 100%;
	overflow: hidden;
	transition: all 0.4s ease;
}
.team-block .image-area::after {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	bottom: -100%;
	transition: all 0.4s ease;
	z-index: 1;
	background: linear-gradient(180deg, rgba(255, 102, 0, 0) 0%, rgba(255, 102, 0, 0.15) 47.81%, rgba(255, 102, 0, 0.45) 58.9%, #ff6600 100%);
}
.team-block:hover .image-area::after {
	bottom: 0;
}
.team-block .image-area img {
	min-height: 340px;
	height: 100%;
	width: 100%;
	object-fit: cover;
}
.team-block .image-area .social-wrapper {
	position: absolute;
	z-index: 2;
	left: 20px;
	/* transform: translateX(-50%); */
	bottom: -30px;
	opacity: 0;
	transition: 0.4s ease all;
}
.team-block:hover .image-area .social-wrapper {
	opacity: 1;
	bottom: 20px;
}
.team-block .image-area .social-wrapper ul {
	display: flex;
	align-items: center;
	gap: 5px;
}
.team-block .image-area .social-wrapper ul li a {
	width: 40px;
	height: 40px;
	line-height: 41px;
	border-radius: 50%;
	background: var(--color-white);
	text-align: center;
	display: block;
	color: var(--heading-color);
	transition: 0.4s ease all;
	position: relative;
	z-index: 1;
}
.team-block .image-area .social-wrapper ul li:hover a {
	color: var(--color-white);
}
.team-block .image-area .social-wrapper ul li a::after {
	position: absolute;
	content: "";
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%) scale(0.2);
	width: 100%;
	height: 100%;
	opacity: 0;
	background: var(--secondary-color);
	border-radius: 50%;
	transition: 0.3s;
	z-index: -1;
}
.team-block .image-area .social-wrapper ul li:hover a::after {
	transform: translate(-50%, -50%) scale(1.02);
	opacity: 1;
}
.team-block .content-area {
	background: var(--color-white);
	padding: 20px 30px;
	height: 100%;
}
.team-block .content-area .team-title {
	color: var(--heading-color);
	font-size: 20px;
	font-weight: 700;
	line-height: 1.3;
}
.team-block .content-area .designation {
	color: var(--primary-color);
	font-size: 16px;
	line-height: 1.1;
	font-weight: 400;
	margin-top: 5px !important;
}
.team-block .content-area .team-info {
	margin-top: 15px;
}
.team-block .content-area .team-info p {
	color: var(--color-dark);
}
.serdet-wid-wrap {
	position: relative;
	height: 100%;
	max-height: 100%;
	width: 100%;
	border-radius: 6px;
	overflow: hidden;
	cursor: pointer;
}
.serdet-wid-wrap img {
	height: 100%;
	max-height: 100%;
	width: 100%;
	object-fit: cover;
	border-radius: 6px;
	transition: transform 0.7s ease;
}
.serdet-wid-wrap::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(255, 102, 0, 0) 0%, rgba(255, 102, 0, 0.08) 45%, rgba(255, 102, 0, 0.25) 100%);
	opacity: 0;
	transition: 0.5s ease;
	z-index: 1;
}
.serdet-wid-wrap::after {
	content: "";
	position: absolute;
	top: -120%;
	left: -40%;
	width: 40%;
	height: 300%;
	background: rgba(255, 255, 255, 0.18);
	transform: rotate(25deg);
	transition: 0.8s ease;
	z-index: 2;
}
.serdet-wid-wrap:hover img {
	transform: scale(1.06);
}
.serdet-wid-wrap:hover::before {
	opacity: 1;
}
.serdet-wid-wrap:hover::after {
	left: 130%;
}
.serinn-feat-wrapper {
	margin-top: 70px;
}
.serinn-feat-col {
	margin-bottom: 25px;
}
.serinn-feat-card {
	position: relative;
	padding: 35px 30px;
	border-radius: 6px;
	background: #ffffff;
	overflow: hidden;
	height: 100%;
	z-index: 1;
	transition: all 0.45s ease;
	border: 1px solid rgba(0, 0, 0, 0.06);
	box-shadow:
		0 10px 35px rgba(0, 0, 0, 0.05),
		0 20px 60px rgba(255, 102, 0, 0.06);
}
.serinn-feat-card::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 4px;
	background: var(--third-color);
	transition: 0.45s ease;
}
.serinn-feat-card:hover::before {
	height: 100%;
}
.serinn-feat-card::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 4px;
	background: var(--third-color);
	transition: 0.45s ease;
}
.serinn-feat-card::after {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-image: url("../img/shapes/feat-shape.png");
	background-repeat: no-repeat;
	background-size: 400px;
	background-position: center;
	filter: none;
	opacity: 0.2;
	z-index: 1;
	pointer-events: none;
}
.serinn-feat-card:hover::after {
	filter: invert(1) brightness(60);
	opacity: 0.2;
}
.serinn-feat-title {
	position: relative;
	font-size: 22px;
	line-height: 1.3;
	font-weight: 700;
	color: var(--heading-color);
	margin-bottom: 34px;
	transition: 0.4s ease;
}
.serinn-feat-card:hover .serinn-feat-title {
	color: var(--color-white);
}
.serinn-feat-title::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -12px;
	width: 90px;
	height: 4px;
	border-radius: 30px;
	background: linear-gradient(to right, #ff6600, #ff6600 70%, #003358 70%, #003358 100%);
}
.deseocon-list-one {
	list-style: none;
	margin: 0;
	padding: 0;
}
.deseocon-list-one li {
	position: relative;
	padding-left: 22px;
	margin-bottom: 14px;
	color: var(--secondary-color);
	font-size: 16px;
	font-weight: 500;
	line-height: 1.6;
	transition: 0.3s ease;
}
.deseocon-list-one li:last-child {
	margin-bottom: 0 !important;
}
.serinn-feat-card:hover .deseocon-list-one li {
	color: var(--color-white);
}
.deseocon-list-one li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 8px;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #ff6600;
	box-shadow: 0 0 0 5px rgba(255, 102, 0, 0.12);
}
/* contact us */
.contus-card {
	position: relative;
	height: 100%;
	text-align: center;
	padding: 40px 35px 25px;
	background: #f5f6f8;
	border: 1px solid #e3e3e3;
	border-radius: 6px;
	/* margin-bottom: 30px; */
	transition: 0.35s ease all;
}
.contus-card:hover {
	border-color: var(--primary-color);
}
.contus-card .contus-icon {
	position: relative;
	overflow: hidden;
	width: 100px;
	height: 100px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 6px;
	font-size: 30px;
	color: var(--primary-color);
	background-color: #ffffff;
	cursor: pointer;
	transition: 0.5s;
	margin-bottom: 25px;
	z-index: 1;
}
.contus-card .contus-icon::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: #ff6600;
	transform: scaleY(0);
	transform-origin: top;
	transition: transform 0.5s ease;
	z-index: -1;
}
.contus-card:hover .contus-icon::before {
	transform: scaleY(1);
}
.contus-card:hover .contus-icon {
	color: #fff;
}
.contus-card:hover .contus-icon i {
	animation: bounceIn 0.8s ease;
}
.contus-card .contus-content {
	text-align: center;
}
.contus-card .contus-content .contus-title {
	color: var(--secondary-color);
	font-size: 24px;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 15px;
}
.contus-card .contus-content .cts-info {
	display: block;
	color: var(--muted-color);
	font-size: 17px;
	font-weight: 400;
	line-height: 26px;
	margin-bottom: 10px;
	transition: 0.3s ease all;
}
.contus-card .contus-content a.cts-info:hover {
	color: var(--primary-color);
}
.contus-whole-wrapper {
	background-color: var(--color-white);
	padding: 20px;
	border-radius: 6px;
}
.contus-form-wrap {
	padding: 50px;
}
.contus-widget {
	position: relative;
	height: 100%;
	max-height: 100%;
	border-radius: 8px;
}
.contus-widget img {
	height: 100%;
	max-height: 100%;
	width: 100%;
	object-fit: cover;
	border-radius: 8px;
}

.contus-form-container .form-group {
	margin-bottom: 25px;
}
.contus-form-container .form-control,
.contus-form-container .form-select {
	padding: 18px 20px !important;
	background-color: #f5f5f5;
	transition: all 0.3s ease;
	border-radius: 6px !important;
	border-color: transparent !important;
}
.contus-form-container .form-control::placeholder,
.contus-form-container .form-select::placeholder {
	transition: 0.3s ease-in-out !important;
}
.contus-form-container .form-control:focus::placeholder,
.contus-form-container .form-select:focus::placeholder {
	padding-left: 5px !important;
}
.contus-form-container .form-control:focus,
.contus-form-container .form-select:focus {
	box-shadow: none !important;
	border-color: var(--primary-color) !important;
}
.hotspot-item {
	position: absolute;
	left: 68%;
	top: 45%;
	width: 25px;
}
.hotspot-item .hots-figure {
	min-width: 250px;
	text-align: center;
	position: absolute;
	bottom: 0;
	left: 8px;
	transition: all 0.4s ease;
	z-index: 2;
	/* opacity: 0; */
	opacity: 1;
	background: #1f1f1f;
	padding: 30px;
	border-radius: 2px;
	transition: all 500ms ease;
	/* transform: translate3d(-50%,-70px,0); */
	transform: translate3d(-50%, -35px, 0);
	/* visibility: hidden; */
	visibility: visible;
}
/* .hotspot-item:hover .hots-figure {
    opacity: 1;
    transform: translate3d(-50%,-35px,0);
    visibility: visible;
} */
.hotspot-item .hots-figure:hover {
	background: var(--secondary-color);
}
.hotspot-item .hots-figure:after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 0;
	height: 0;
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
	border-top: 12px solid #1f1f1f;
	top: 100%;
	right: 0;
	margin: 0 auto;
}
.hotspot-item .hots-figure:hover:after {
	border-top-color: var(--secondary-color);
}
.hotspot-item .hots-figure .pre-title .title {
	margin: 0 0 10px;
	font-size: 22px;
	font-weight: 700;
	line-height: 32px;
	color: var(--primary-color);
}
.hotspot-item .hots-figure .hotspot-desc p {
	margin: 0;
	font-size: 15px;
	line-height: 25px;
	color: rgba(255, 255, 255, 0.8);
	margin-bottom: 0 !important;
}
.hotspot-item .pre-circle-ripple {
	position: relative;
	cursor: pointer;
}
.hotspot-item .pre-circle-ripple:before {
	content: "";
	position: absolute;
	top: 10px;
	left: 10px;
	height: 30px;
	width: 30px;
	border-radius: 50%;
	background: #ea5501;
	transform-origin: center center;
	z-index: 1;
	opacity: 1;
	pointer-events: none;
	animation: pulse-border 1500ms ease-out infinite;
}
@keyframes pulse-border {
	0% {
		transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
		opacity: 1;
	}
	100% {
		transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
		opacity: 0;
	}
}
.hotspot-item .pre-circle-ripple:after {
	content: "";
	position: absolute;
	top: 3px;
	left: 3px;
	height: 14px;
	width: 14px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.7607843137);
	z-index: 9;
	border: 3px solid #ea5501;
}
.hotspot-item.hotspot__usa {
	left: 14%;
	top: 31%;
}
/* careers */
.career-section {
	position: relative;
	background-image: url("../img/bg/career-bg.jpg");
	background-repeat: no-repeat;
	background-size: cover;
}
.career-form-wrapper {
	position: relative;
	background-color: #0e0501;
	padding: 50px;
	border-top: 12px solid var(--primary-color);
	border-radius: 0px;
}
.color-primary {
	color: var(--primary-color) !important;
}

.career-form-container .form-group {
	margin-bottom: 25px;
}
.career-form-container .form-label {
	color: var(--color-white);
	font-size: 16px;
	line-height: 1;
	padding-bottom: 5px;
}
.career-form-container .form-control {
	color: var(--color-dark) !important;
	font-weight: 500 !important;
	border: none !important;
	border-radius: 0px !important;
}
.career-form-container .form-control::placeholder {
	color: #3b2f26 !important;
	font-weight: 400 !important;
	transition: 0.45s ease-in-out all !important;
}
.career-form-container .form-control:focus::placeholder {
	padding-left: 10px;
}
.career-form-container .form-control:focus {
	border-color: var(--primary-color) !important;
	box-shadow: 0 0 0 0.15rem rgb(255 102 0) !important;
}
.career-form-container .form-control.ff {
	height: 55px;
}
.career-form-container .choose_file::file-selector-button,
.career-form-container .choose_file::file-selector-button:hover {
	padding: 10px 20px;
	height: 55px;
	background-color: var(--primary-color) !important;
	color: var(--color-white) !important;
}
.career-form-container .form-control.cus-padding {
	padding: 12px 15px !important;
}
.submit-action-wrap {
	margin-top: 25px;
}
.pc-whatsapp {
	position: fixed;
	bottom: 12%;
	right: 25px;
	z-index: 999;
}
.pc-whatsapp a {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 65px;
	height: 65px;
	border-radius: 50%;
	background: linear-gradient(135deg, #25d366, #128c7e);
	color: #fff;
	font-size: 30px;
	backdrop-filter: blur(6px);
	box-shadow:
		0 10px 30px rgba(37, 211, 102, 0.35),
		0 4px 12px rgba(0, 0, 0, 0.15),
		inset 0 2px 6px rgba(255, 255, 255, 0.3),
		inset 0 -8px 16px rgba(0, 0, 0, 0.2);
	transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.pc-whatsapp a:hover {
	transform: translateY(-5px) scale(1.05);

	box-shadow:
		0 18px 40px rgba(37, 211, 102, 0.45),
		0 6px 18px rgba(0, 0, 0, 0.2),
		inset 0 3px 8px rgba(255, 255, 255, 0.35);
}
.pc-whatsapp a i {
	position: relative;
	z-index: 2;
}
.pc-whatsapp a::before,
.pc-whatsapp a::after {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: 50%;
	border: 2px solid rgba(37, 211, 102, 0.6);
	transform: scale(1);
	opacity: 0;
	animation: waRipple 2.5s infinite;
}
.pc-whatsapp a::after {
	animation-delay: 1.2s;
}
@keyframes waRipple {
	0% {
		transform: scale(1);
		opacity: 0.7;
	}
	70% {
		transform: scale(1.6);
		opacity: 0;
	}
	100% {
		opacity: 0;
	}
}
.pc-whatsapp a::before {
	background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.4), transparent 50%);
	border: none;
	animation: none;
	opacity: 0.5;
}
.deseocon-list-one.custom {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px 30px;
}

.deseocon-list-2 {
	grid-template-columns: repeat(1, 1fr) !important;
}
/* SWIPER EQUAL HEIGHT CARD */
.service-swiper .swiper-wrapper{
    align-items: stretch;
}

.service-swiper .swiper-slide{
    height: auto !important;
    display: flex;
}

.service-card{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;

    background: #fff;
    border-radius: 4px;
    box-shadow: 0px 6px 34px rgba(215, 216, 222, 0.41);
    padding: 30px;
    position: relative;
    overflow: hidden;
}

/* CONTENT FULL HEIGHT */
.service-card .ser-content{
    display: flex;
    flex-direction: column;
    flex: 1;
}

/* BUTTON BOTTOM */
.service-card .ser-action-btn{
    margin-top: auto;
}