/* ----------------------------------------------------------------------------------------
* Author        : viyapar Infotech
* Name          : HMB Engineering
* File          : CSS File
* Version       : 1.0
* ---------------------------------------------------------------------------------------- */
/* INDEX
----------------------------------------------------------------------------------------
01. Global Variables
02. General css
03. Header css
04. Hero css
05. About Us css
06. Our Services css
07. Our Strategy css
08. Company Feature css
09. How It Work css
10. Our Pricing css
11. Our Projects
12. Our Testimonial css
13. Our Blog css
14. Footer css
15. About us Page css
16. Services Page css
17. Service Single css
18. Blog Archive css
19. Blog Single css
20. Project Page css
21. Project Single css
22. Team Page css  
23. Contact us Page css
24. FAQs Page css
25. 404 Page css
26. Responsive css
-------------------------------------------------------------------------------------- */

/************************************/
/*** 	 01. Global Variables	  ***/
/************************************/

:root {
	--primary-color: #0E0D1B;
	--secondary-color: #FFF4F3;
	--text-color: #757575;
	--accent-color: #3c6c47;
	--gradient-color: #17341e;
	--box-shadow-color: #585B631A;
	--white-color: #FFFFFF;
	--divider-color: #22442a85;
	--dark-divider-color: #E6E6E6;
	--error-color: rgb(230, 87, 87);
	--default-font: "DM Sans", sans-serif;
	--green: #195b37;
	--green-dark: #104126;
	--gold: #e8ad1c;
	--border: #d8d8d8;
	--light-bg: #f6f7f6;
	--text: #143e29;
	--muted: #68717b;
	--danger: #df2d2d;
	--white: #ffffff;
}

/************************************/
/*** 	   02. General css		  ***/
/************************************/

body {
	font-family: var(--default-font);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.6em;
	color: var(--text-color);
	background-color: var(--white-color);
}

p {
	line-height: 1.6em;
	margin-bottom: 1.6em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	font-weight: 700;
	color: var(--primary-color);
	line-height: 1.1em;
}

figure {
	display: block;
	margin: 0;
}

img {
	max-width: 100%;
}

a {
	text-decoration: none;
}

a:hover {
	text-decoration: none;
	outline: 0;
}

a:focus {
	text-decoration: none;
	outline: 0;
}

html,
body {
	width: 100%;
	overflow-x: clip;
}

.container {
	max-width: 1300px;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
	padding-right: 15px;
	padding-left: 15px;
}

.row {
	margin-right: -15px;
	margin-left: -15px;
}

.row>* {
	padding-right: 15px;
	padding-left: 15px;
}

.row.no-gutters {
	margin-right: 0px;
	margin-left: 0px;
}

.row.no-gutters>* {
	padding-right: 0px;
	padding-left: 0px;
}

.image-anime {
	position: relative;
	overflow: hidden;
}

.image-anime:after {
	content: "";
	position: absolute;
	width: 200%;
	height: 0%;
	left: 50%;
	top: 50%;
	background-color: rgba(255, 255, 255, .3);
	transform: translate(-50%, -50%) rotate(-45deg);
	z-index: 1;
}

.image-anime:hover:after {
	height: 250%;
	transition: all 600ms linear;
	background-color: transparent;
}

.reveal {
	position: relative;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	visibility: hidden;
	overflow: hidden;
}

.reveal img {
	height: 100%;
	width: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-webkit-transform-origin: left;
	transform-origin: left;
}

#magic-cursor {
	position: absolute;
	width: 10px !important;
	height: 10px !important;
	pointer-events: none;
	z-index: 1000000;
}

#ball {
	position: fixed;
	display: block;
	left: 0;
	top: 0;
	transform: translate(-50%, -50%);
	width: 8px !important;
	height: 8px !important;
	background: var(--accent-color);
	margin: 0;
	border-radius: 50%;
	pointer-events: none;
	opacity: 1 !important;
}

.preloader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1000;
	background-color: var(--secondary-color);
	display: flex;
	align-items: center;
	justify-content: center;
}

.loading-container,
.loading {
	height: 100px;
	position: relative;
	width: 100px;
	border-radius: 100%;
}

.loading-container {
	margin: 40px auto;
}

.loading {
	border: 1px solid transparent;
	border-color: transparent var(--accent-color) transparent var(--accent-color);
	animation: rotate-loading 1.5s linear 0s infinite normal;
	transform-origin: 50% 50%;
}

.loading-container:hover .loading,
.loading-container .loading {
	transition: all 0.5s ease-in-out;
}

#loading-icon {
	position: absolute;
	top: 50%;
	left: 50%;
	max-width: 66px;
	transform: translate(-50%, -50%);
}

@keyframes rotate-loading {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

.btn-default {
	display: inline-block;
	font-size: 18px;
	font-weight: 600;
	line-height: 1em;
	color: var(--white-color);
	text-transform: capitalize;
	background-image: linear-gradient(to right, #3c6c47 16%, #f8cd4a 50%, #4e9a5f 100%);
	background-size: 200% auto;
	padding: 15px 30px;
	border-radius: 50px;
	border: none;
	transition: 0.3s ease-in-out;
	position: relative;
	overflow: hidden;
	z-index: 1;
}

.btn-default:hover {
	background-position: right center;
}

.btn-large {
	font-size: 20px;
	padding: 20px 65px 20px 20px;
}

.btn-default.btn-large::before {
	width: 40px;
	height: 40px;
	background-size: 15px;
}

.section-row {
	text-align: center;
	margin-bottom: 60px;
}

.section-row .section-title {
	width: 100%;
	max-width: 900px;
	margin: 0 auto;
	margin-bottom: 0;
}

.section-btn {
	text-align: end;
}

.section-title {
	margin-bottom: 10px;
}

.section-title h3 {
	font-size: 20px;
	font-weight: 500;
	text-transform: capitalize;
	line-height: 1.3em;
	color: var(--accent-color);
	margin-bottom: 5px;
}

.section-title h1,
.section-title h2 {
	font-size: 27px;
	letter-spacing: -0.02em;
	color: var(--primary-color);
	cursor: none;
}

.section-title h1 span,
.section-title h2 span {
	color: var(--accent-color);
}

.section-title p {
	color: var(--text-color);
	margin-top: 20px;
	margin-bottom: 0;
	/* text-align: justify; */
}

/************************************/
/*** 	   03. Header css		  ***/
/************************************/

.topbar {
	background-color: var(--accent-color);
}

.topbar-contact-info {
	padding: 4px 0;
	text-align: left;
}

.topbar-contact-info ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.topbar-contact-info ul li {
	position: relative;
	display: inline-block;
	font-size: 14px;
	color: var(--white-color);
	text-transform: capitalize;
	margin-right: 4px;
	padding-right: 13px;
}

.topbar-contact-info ul li:last-child {
	margin-right: 0;
	padding-right: 0;
}

.topbar-contact-info ul li::after {
	content: '/';
	position: absolute;
	right: 0;
	top: 0;
	color: var(--white-color);
}

.topbar-contact-info ul li:last-child:after {
	display: none;
}

.topbar-contact-info ul li a {
	color: var(--white-color);
	font-size: 12px;
	text-transform: lowercase;
}

.topbar-social-links {
	padding: 4px 0;
}

.topbar-social-links ul {
	list-style: none;
	padding: 0;
	margin: 0;
	text-align: end;
}

.topbar-social-links ul li {
	display: inline-block;
	margin-right: 12px;
}

.topbar-social-links ul li:last-child {
	margin-right: 0;
}

.topbar-social-links ul li a {
	width: 20px;
	height: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	color: var(--accent-color);
	border-radius: 50%;
	transition: all 0.3s ease-in-out;
}

.topbar-social-links ul li a:hover {
	background: var(--accent-color);
	color: #fff;
	transform: translateY(-3px);
}

.topbar-social-links ul li a i {
	font-size: 12px;
	color: inherit;
}

header.main-header {
	background-color: var(--white-color);
	position: relative;
	z-index: 100;
}

header.main-header .header-sticky {
	position: relative;
	top: 0;
	z-index: 100;
}

header.main-header .header-sticky.hide {
	transform: translateY(-100%);
	transition: transform 0.3s ease-in-out;
	border-radius: 0;
}

header.main-header .header-sticky.active {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	border-radius: 0;
	transform: translateY(0);
	background: var(--secondary-color);
	border-bottom: 1px solid var(--divider-color);
	backdrop-filter: blur(30px);
}

header.main-header .header-sticky {
	width: 100%;
	transition: all 0.4s ease;
}

header.main-header .header-sticky.active {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 9999;
	background: #fff;
	border-bottom: 1px solid var(--divider-color);
	backdrop-filter: blur(20px);
	animation: stickyMenu 0.6s ease forwards;
	box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

@keyframes stickyMenu {
	0% {
		opacity: 0;
		transform: translateY(-80px);
	}

	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

.navbar {
	padding: 5px 0;
	align-items: center;
}

.navbar-brand {
	padding: 0;
	margin: 0;
}

.main-menu .nav-menu-wrapper {
	flex: 1;
	text-align: right;
}

.main-menu .nav-menu-wrapper>ul {
	align-items: center;
	display: inline-flex;
}

.main-menu ul li {
	margin: 0 5px;
	position: relative;
}

.main-menu ul li a {
	font-size: 17px;
	font-weight: 500;
	padding: 15px 15px !important;
	color: var(--primary-color);
	text-transform: capitalize;
	transition: all 0.3s ease-in-out;
}

.main-menu ul li.submenu>a:after {
	content: '\f107';
	font-family: 'FontAwesome';
	font-weight: 900;
	font-size: 14px;
	margin-left: 8px;
}

.main-menu ul li a:hover,
.main-menu ul li a:focus {
	color: var(--accent-color);
}

.main-menu ul ul {
	visibility: hidden;
	opacity: 0;
	transform: scaleY(0.8);
	transform-origin: top;
	padding: 0;
	margin: 0;
	list-style: none;
	width: 260px;
	border-radius: 10px;
	position: absolute;
	left: 0;
	top: 100%;
	overflow: hidden;
	background: linear-gradient(180deg, var(--accent-color) 0%, var(--gradient-color) 100%);
	transition: all 0.3s ease-in-out;
	text-align: left;
}

.main-menu ul ul ul {
	left: 100%;
	top: 0;
	text-align: left;
}

.main-menu ul ul li {
	margin: 0;
	padding: 0;
}

.main-menu ul ul li a {
	color: var(--white-color);
	padding: 8px 20px !important;
	transition: all 0.3s ease-in-out;
}

.main-menu ul li:hover>ul {
	visibility: visible;
	opacity: 1;
	transform: scaleY(1);
	padding: 5px 0;
}

.main-menu ul ul li a:hover {
	color: var(--primary-color);
	background-color: transparent;
	background-color: rgb(253, 253, 253);
}

.huhy {
	text-align: center;
}

.kji {
	display: flex;
	align-items: center;
	justify-content: center;
}

.main-menu ul li.highlighted-menu {
	display: none;
}

.responsive-menu,
.navbar-toggle {
	display: none;
}

.responsive-menu {
	top: 0;
	position: relative;
}

.slicknav_btn {
	background: var(--accent-color);
	padding: 6px 0 0;
	width: 38px;
	height: 38px;
	margin: 0;
	border-radius: 6px;
}

.slicknav_icon .slicknav_icon-bar {
	display: block;
	width: 100%;
	height: 3px;
	width: 22px;
	background-color: var(--white-color);
	border-radius: 6px;
	margin: 4px auto !important;
	transition: all 0.1s ease-in-out;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(1) {
	transform: rotate(-45deg) translate(-5px, 5px);
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(2) {
	opacity: 0;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(3) {
	transform: rotate(45deg) translate(-5px, -5px);
}

.slicknav_menu {
	position: absolute;
	width: 100%;
	padding: 0;
	background: var(--accent-color);
}

.slicknav_menu ul {
	margin: 5px 0;
}

.slicknav_menu ul ul {
	margin: 0;
}

.slicknav_nav .slicknav_row,
.slicknav_nav li a {
	position: relative;
	font-size: 16px;
	font-weight: 400;
	text-transform: capitalize;
	padding: 10px 20px;
	color: var(--white-color);
	line-height: normal;
	margin: 0;
	border-radius: 0 !important;
	transition: all 0.3s ease-in-out;
}

.slicknav_nav a:hover,
.slicknav_nav .slicknav_row:hover {
	background-color: transparent;
	color: var(--primary-color);
}

.slicknav_menu ul ul li a {
	padding: 10px 20px 10px 30px;
}

.slicknav_arrow {
	font-size: 0 !important;
}

.slicknav_arrow:after {
	content: '\f107';
	font-family: 'FontAwesome';
	font-weight: 900;
	font-size: 12px;
	margin-left: 8px;
	color: var(--white-color);
	position: absolute;
	right: 15px;
	top: 15px;
	transition: all 0.3s ease-out;
}

.slicknav_open>a .slicknav_arrow:after {
	transform: rotate(-180deg);
	color: var(--primary-color);
}

/************************************/
/***        04. Hero css	      ***/
/************************************/
.hero {
	position: relative;
	height: 100vh;
	overflow: hidden;
}

.hero-video {
	position: absolute;
	inset: 0;
	z-index: 1;
}

.hero-video video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.55);
	z-index: 2;
}

.hero-slider {
	position: relative;
	z-index: 3;
}

.hero-slider .swiper-slide {
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
}

.hero-slide-content {
	max-width: 950px;
	margin: auto;
	text-align: center;
	padding: 0 15px;
}

.hero-slide-content h1 {
	font-size: 60px;
	font-weight: 800;
	line-height: 1;
	color: #ffffff;
	margin-bottom: 25px;
}

.hero-slide-content h1 span {
	color: #ffda43;
}

.hero-slide-content p {
	font-size: 24px;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.95);
	max-width: 900px;
	margin: 0 auto 40px;
}

.hero-btn-group {
	display: flex;
	justify-content: center;
	gap: 20px;
	flex-wrap: wrap;
}

.hero-btn-fill {
	background: #ffffff;
	color: var(--accent-color);
	padding: 18px 40px;
	border-radius: 60px;
	font-size: 18px;
	font-weight: 600;
	text-decoration: none;
	transition: .3s;
	border: 2px solid #ffffff;
}

.hero-btn-fill:hover {
	transform: translateY(-3px);
	background: linear-gradient(135deg, #3c6c47 0%, #f8cd4a 100%);
	color: #fff;
	border: 2px solid var(--white-color);
}

.hero-btn-outline {
	border: 2px solid #ffffff;
	color: #ffffff;
	padding: 18px 40px;
	border-radius: 60px;
	font-size: 18px;
	font-weight: 600;
	text-decoration: none;
	transition: .3s;
}

.hero-btn-outline:hover {
	background: linear-gradient(135deg, #3c6c47 0%, #f8cd4a 100%);
	color: #fff;
}

.hero .swiper-pagination-bullet {
	background: #fff;
	opacity: .5;
}

.hero .swiper-pagination-bullet-active {
	opacity: 1;
}

@media(max-width:991px) {

	.hero-slide-content h1 {
		font-size: 60px;
	}

	.hero-slide-content p {
		font-size: 18px;
	}
}

@media(max-width:767px) {

	.hero-slide-content h1 {
		font-size: 42px;
	}

	.hero-slide-content p {
		font-size: 16px;
	}

	.hero-btn-fill,
	.hero-btn-outline {
		width: 100%;
		max-width: 280px;
	}
}

.wide-client {
	display: flex;
	align-items: center;
	margin-left: 20px;
}

.wide-client-image {
	margin-right: 10px;
}

.wide-client-image img {
	width: 136px;
}

.wide-client-content {
	width: calc(100% - 146px);
}

.wide-client-content p {
	font-size: 14px;
	font-weight: 600;
	color: var(--primary-color);
	text-transform: capitalize;
	max-width: 100px;
	margin: 0;
}

.hero-image {
	position: relative;
}

.company-sales {
	position: absolute;
	bottom: 0;
	left: 0;
	transform: translateY(-50%);
	display: flex;
	align-items: center;
	background-color: var(--white-color);
	/* border: 1px solid var(--divider-color); */
	border-radius: 17px;
	padding: 15px 25px 15px 15px;
	animation: salesmoveobject 3s infinite linear alternate;
}

@keyframes salesmoveobject {
	50% {
		left: 50px;
	}
}

.company-sales .icon-box {
	margin-right: 15px;
}

.company-sales .icon-box img {
	width: 50px;
}

.company-sales-content {
	width: calc(100% - 65px);
	text-align: left;
}

.company-sales-content h3 {
	font-size: 18px;
	font-weight: 500;
}

.company-sales-content p {
	text-transform: capitalize;
	margin: 0;
}

.company-visit {
	position: absolute;
	top: 0;
	right: 0;
	transform: translateY(50%);
	display: flex;
	align-items: center;
	background-color: var(--white-color);
	/* border: 1px solid var(--divider-color); */
	border-radius: 17px;
	padding: 15px 25px 15px 15px;
	animation: visitmoveobject 3s infinite linear alternate;
}

@keyframes visitmoveobject {
	50% {
		right: 30px;
	}
}

.company-visit .icon-box {
	margin-right: 15px;
}

.company-visit .icon-box img {
	width: 50px;
}

.company-visit-content {
	width: calc(100% - 65px);
	text-align: left;
}

.company-visit-content h3 {
	font-size: 18px;
	font-weight: 500;
}

.company-visit-content p {
	text-transform: capitalize;
	margin: 0;
}

/************************************/
/***       05. About Us css	      ***/
/************************************/

.about-us {
	position: relative;
	/* background: url('../images/section-bg-img-1.png') no-repeat; */
	background-position: right -100px bottom -100px;
	padding: 50px 0;
}

.about-image {
	position: relative;
}

.about-img {
	text-align: center;
}

.company-experience {
	position: absolute;
	top: 85%;
	right: 0;
	transform: translateY(-50%);
	display: flex;
	align-items: center;
	background-color: var(--white-color);
	/* border: 1px solid var(--divider-color); */
	border-radius: 17px;
	padding: 15px 25px 15px 15px;
	animation: expmoveobject 3s infinite linear alternate;
}

@keyframes expmoveobject {
	50% {
		right: 50px;
	}
}

.company-experience .icon-box {
	margin-right: 15px;
}

.company-experience .icon-box img {
	width: 50px;
	filter: brightness(0) saturate(100%) invert(36%) sepia(18%) saturate(1016%) hue-rotate(82deg) brightness(92%) contrast(88%);
}

.company-experience-content {
	width: calc(100% - 65px);
	text-align: left;
}

.company-experience-content h3 {
	font-size: 18px;
	font-weight: 500;
}

.company-experience-content p {
	text-transform: capitalize;
	margin: 0;
}

/* .about-content {
	padding-left: 80px;
} */

.about-content-body {
	margin-bottom: 30px;
}

.about-content-body ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

.about-content-body ul li {
	position: relative;
	width: calc(50% - 10px);
	font-size: 18px;
	font-weight: 500;
	color: var(--primary-color);
	text-transform: capitalize;
	padding-left: 30px;
}

.about-content-body ul li:before {
	content: '\f058';
	font-family: "Font Awesome 6 Free";
	color: var(--accent-color);
	font-size: 20px;
	font-weight: 900;
	position: absolute;
	top: 0;
	left: 0;
}


/************************************/
/***     06. Our Services css	  ***/
/************************************/


.our-services {
	/* background: var(--secondary-color) url('../images/section-bg-img-2.png') no-repeat; */
	background-position: left -100px bottom -250px;
	padding: 50px 0 0px;
}

.our-service-content {
	position: sticky;
	top: 20px;
	margin-bottom: 30px;
}

.our-services .section-btn {
	text-align: left;
}

.service-item {
	position: relative;
	background-color: var(--white-color);
	/* border: 1px solid var(--divider-color); */
	box-shadow: 0 5px 20px rgba(0, 0, 0, .08);
	border-radius: 25px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	padding: 15px;
	transition: all 0.4s ease-in-out;
	overflow: hidden;
	/* cursor: none; */
}

/* .service-item::before {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	top: 100%;
	border-radius: 0px;
	background: linear-gradient(180deg, var(--accent-color) 0%, var(--gradient-color) 100%);
	transition: all 0.4s ease-in-out;
	height: 100%;
	z-index: 1;
} */

.service-item:hover:before {
	top: 0;
}

.service-item {
	margin-top: 20px;
}

.service-item .icon-box {
	position: relative;
	z-index: 2;
	margin-bottom: 20px;

}

.service-item .icon-box img {
	transition: all 0.4s ease-in-out;
	border-radius: 15px;
	border: 1px solid #ffffff31;
	transition: transform .5s ease;
	height: 270px;
    object-fit: cover;
}

.service-item .icon-box img:hover {
	transform: scale(1.10);
	transform-origin: center center;
}

/* .service-item:hover .icon-box img {
	filter: brightness(0) invert(1);
} */

.service-body {
	position: relative;
	z-index: 2;
	margin-bottom: 20px;
}

.service-body h3 {
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 10px;
	transition: all 0.3s ease-in-out;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	line-clamp: 1;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.service-item:hover .service-body h3 {
	color: #000;
}

.service-body p {
	margin: 0;
	transition: all 0.3s ease-in-out;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	font-size: 14px;
}

.service-item:hover .service-body p {
	color: #000;
}

.service-footer {
	position: relative;
	z-index: 2;
}

.service-footer a {
	background-color: var(--accent-color);
	width: 45px;
	height: 45px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.service-footer a img {
	max-width: 20px;
	transition: all 0.4s ease-in-out;
	transform: rotate(-45deg);
}

.service-item:hover .service-footer a img {
	transform: rotate(0deg);
}

/************************************/
/***     07. Our Strategy css	  ***/
/************************************/

.our-strategy {
	/* background: url('../images/section-bg-img-3.png') no-repeat; */
	background-position: top right;
	padding: 50px 0;
}

.strategy-image {
	display: flex;
	align-items: start;
	text-align: left;
	position: relative;
}

.strategy-image::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	background: url('../images/strategy-image-bg.png') no-repeat;
	background-position: center top;
	width: 100%;
	height: 100%;
	z-index: -1;
}

.strategy-img-1 {
	margin-right: 30px;
}

.strategy-img-2 {
	padding-top: 80px;
}

.strategy-img-2 figure,
.strategy-img-1 figure {
	display: block;
}

.strategy-img-2 img,
.strategy-img-1 img {
	border-radius: 25px;
}

.our-strategy-box {
	padding-left: 80px;
}

.strategy-item {
	background-color: var(--white-color);
	/* border: 1px solid var(--divider-color); */
	box-shadow: 0 5px 20px rgba(0, 0, 0, .08);
	border-radius: 25px;
	display: flex;
	align-items: center;
	padding: 30px;
	margin-bottom: 30px;
}

.strategy-item:last-child {
	margin-bottom: 0;
}

.strategy-item .icon-box {
	position: relative;
	/* border: 1px solid var(--divider-color); */
	border-radius: 50%;
	width: 75px;
	height: 75px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	margin-right: 20px;
	transition: all 0.3s ease-in-out;
}

.strategy-item:hover .icon-box {
	border-color: transparent;
}

.strategy-item .icon-box::before {
	content: '';
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg, var(--accent-color) 0%, var(--gradient-color) 100%);
	top: 0;
	left: 0;
	transform: scale(0);
	transition: all 0.3s ease-in-out;
	border-radius: 50px;
}

.strategy-item:hover .icon-box:before {
	transform: scale(1);
}

.strategy-item .icon-box img {
	position: relative;
	z-index: 1;
	transition: all 0.4s ease-in-out;
	filter: brightness(0) saturate(100%) invert(36%) sepia(18%) saturate(1016%) hue-rotate(82deg) brightness(92%) contrast(88%);
}

.strategy-item:hover .icon-box img {
	filter: brightness(0) invert(1);
}

.strategy-progress-bar {
	width: calc(100% - 95px);
}

.skillbar .skill-data {
	display: flex;
	justify-content: space-between;
	margin-bottom: 10px;
}

.skillbar .skill-data .skill-title {
	font-size: 20px;
	font-weight: 600;
	color: var(--primary-color);
	text-transform: capitalize;
}

.skillbar .skill-data .skill-no {
	font-size: 16px;
	font-weight: 600;
	color: var(--accent-color);
}

.skillbar .skill-progress {
	width: 100%;
	height: 12px;
	background: var(--dark-divider-color);
	border-radius: 25px;
	position: relative;
}

.skillbar .skill-progress .count-bar {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	background: linear-gradient(180deg, var(--accent-color) 0%, var(--gradient-color) 100%);
	border-radius: 25px;
}

/************************************/
/***    08. Company Feature css   ***/
/************************************/

.company-feature {
	/* background: var(--secondary-color) url('../images/section-bg-img-1.png') no-repeat; */
	background-position: right -100px bottom -100px;
	padding: 50px 0;
	background-color: #f8f9fa;
}

.company-feature-item {
	background-color: var(--white-color);
	box-shadow: 0 5px 20px rgba(0, 0, 0, .08);
	/* border: 1px solid var(--divider-color); */
	border-radius: 25px;
	display: flex;
	align-items: center;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	padding: 15px 20px;
}

.company-feature-item .icon-box {
	position: relative;
	border: 1px solid var(--divider-color);

	border-radius: 50%;
	width: 75px;
	height: 75px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	margin-right: 15px;
	transition: all 0.3s ease-in-out;
}

.company-feature-item:hover .icon-box {
	border-color: transparent;
}

.company-feature-item .icon-box::before {
	content: '';
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg, var(--accent-color) 0%, var(--gradient-color) 100%);
	top: 0;
	left: 0;
	transform: scale(0);
	transition: all 0.3s ease-in-out;
	border-radius: 50px;
}

.company-feature-item:hover .icon-box:before {
	transform: scale(1);
}

.company-feature-item .icon-box img {
	position: relative;
	z-index: 1;
	transition: all 0.4s ease-in-out;
	filter: brightness(0) saturate(100%) invert(36%) sepia(18%) saturate(1016%) hue-rotate(82deg) brightness(92%) contrast(88%);
}

.company-feature-item:hover .icon-box img {
	filter: brightness(0) invert(1);
}

.feature-item-content {
	width: calc(100% - 90px);
	text-align: left;
}

.feature-item-content h3 {
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 5px;
}

.feature-item-content p {
	margin: 0;
}

.company-feature-image {
	text-align: center;
}

/************************************/
/***     09. How It Work css      ***/
/************************************/

.how-it-work {
	padding: 30px 0;
	background-color: #f8f9fa;
}

.how-work-item {
	position: relative;
	/* border: 1px solid var(--divider-color); */
	box-shadow: 0 5px 20px rgba(0, 0, 0, .08);
	border-radius: 25px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	padding: 30px;
	transition: all 0.4s ease-in-out;
	overflow: hidden;
	text-align: center;
	/* cursor: none; */
	background-color: #fff;
}

.how-work-item::before {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	top: 100%;
	border-radius: 0px;
	/* background: linear-gradient(180deg, var(--accent-color) 0%, var(--gradient-color) 100%); */
	background-color: #f3bd1a;
	transition: all 0.4s ease-in-out;
	height: 100%;
	z-index: 1;
	cursor: pointer;
}

.how-work-item:hover:before {
	top: 0;
}

.how-work-item .icon-box {
	position: relative;
	z-index: 2;
	margin-bottom: 20px;
	width: 80px;
	height: 80px;
	line-height: 80px;
	margin: 0 auto 20px;
	border-radius: 50%;
	background: #f4f4f4;
	font-size: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.5s ease;
	transform-style: preserve-3d;
	cursor: pointer;
}

.how-work-item:hover .icon-box {
	background: linear-gradient(180deg, var(--gradient-color) 0%, var(--accent-color) 100%);
	color: #fff;
	transform: rotateY(360deg);
}


.how-work-item .icon-box img {
	width: 55px;
	transition: all 0.4s ease-in-out;
	filter: brightness(0) saturate(100%) invert(36%) sepia(18%) saturate(1016%) hue-rotate(82deg) brightness(92%) contrast(88%);
}

.how-work-item:hover .icon-box img {
	filter: brightness(0) invert(1);
}

.how-work-content {
	position: relative;
	z-index: 2;
}

.how-work-content h3 {
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 20px;
	transition: all 0.3s ease-in-out;
}

.how-work-item:hover .how-work-content h3 {
	color: var(--white-color);
}

.how-work-content p {
	margin: 0;
	transition: all 0.3s ease-in-out;
}

.how-work-item:hover .how-work-content p {
	color: var(--white-color);
}

/************************************/
/***     10. Our Pricing css	  ***/
/************************************/

.our-pricing {
	background-color: #fff;
	padding: 50px 0 30px;
}

.pricing-item {
	background-color: var(--white-color);
	box-shadow: 0 5px 20px rgba(0, 0, 0, .08);
	border-radius: 25px;
	height: calc(100% - 30px);
	padding: 40px 30px;
	margin-bottom: 30px;
}

.pricing-header {
	border-bottom: 1px solid var(--dark-divider-color);
	text-align: center;
	padding-bottom: 40px;
	margin-bottom: 40px;
}

.pricing-header h3 {
	font-size: 18px;
	font-weight: 500;
	text-transform: capitalize;
	margin-bottom: 15px;
}

.pricing-header h2 {
	font-size: 48px;
	margin-bottom: 15px;
}

.pricing-header p {
	margin: 0;
}

.pricing-body {
	margin-bottom: 40px;
}

.pricing-body ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.pricing-body ul li {
	position: relative;
	font-size: 18px;
	font-weight: 500;
	margin-bottom: 15px;
}

.pricing-body ul li:last-child {
	margin-bottom: 0;
}

.pricing-body ul li i {
	position: absolute;
	top: 2px;
	right: 0;
	font-size: 18px;
	color: #3BC13B;
}

.pricing-body ul li i.fa-solid.fa-xmark {
	color: var(--error-color);
}

.pricing-footer {
	text-align: center;
}

.pricing-item.highlighted-box {
	position: relative;
	background-color: var(--primary-color);
	overflow: hidden;
}

.pricing-item.highlighted-box::before {
	content: '';
	display: block;
	position: absolute;
	top: -40px;
	right: -60px;
	transform: rotate(45deg);
	background: url('../images/icon-star.svg') no-repeat, linear-gradient(to right, var(--accent-color) 35%, var(--gradient-color) 2.05%, var(--accent-color) 99.13%);
	background-position: right 50px top 60px;
	width: 140px;
	height: 100px;
	z-index: 1;
}

.pricing-item.highlighted-box .pricing-body ul li,
.pricing-item.highlighted-box .pricing-header p,
.pricing-item.highlighted-box .pricing-header h2,
.pricing-item.highlighted-box .pricing-header h3 {
	color: var(--white-color);
}

/************************************/
/***     11. Our Projects css	  ***/
/************************************/

.our-project {
	padding: 50px 0 30px;
}

.our-projects-nav {
	margin-bottom: 30px;
}

.our-projects-nav ul {
	list-style: none;
	text-align: center;
	padding: 0;
	margin: 0;
}

.our-projects-nav ul li {
	display: inline-block;
	margin-right: 20px;
	margin-bottom: 10px;
}

.our-projects-nav ul li:last-child {
	margin-right: 0;
}

.our-projects-nav ul li a {
	position: relative;
	display: inline-block;
	background-color: transparent;
	/* border: 1px solid var(--divider-color); */
	border-radius: 10px;
	color: var(--text-color);
	font-weight: 600;
	padding: 8px 20px;
	text-transform: capitalize;
	transition: all 0.3s ease-in-out;
	overflow: hidden;
}

.our-projects-nav ul li a:hover {
	color: var(--white-color);
}

.our-projects-nav ul li a::before {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	top: 100%;
	border-radius: 0px;
	background: linear-gradient(180deg, var(--accent-color) 0%, var(--gradient-color) 100%);
	transition: all 0.3s ease-in-out;
	height: 100%;
	z-index: -1;
}

.our-projects-nav ul li a:hover:before {
	top: 0;
}

.our-projects-nav ul li a.active-btn {
	background: linear-gradient(180deg, var(--accent-color) 0%, var(--gradient-color) 100%);
	color: var(--white-color);
}

.project-item-box .project-item {
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.project-item {
	position: relative;
	overflow: hidden;
	/* cursor: none; */
	box-shadow: 0 5px 20px rgba(0, 0, 0, .08);
	/* border: 1px solid var(--divider-color); */
	border-radius: 25px;
}

.project-image a {
	position: relative;
	/* cursor: none; */
	display: block;
}

.project-image img {
	width: 100%;
	border-radius: 25px;
	aspect-ratio: 1/1.1;
	object-fit: cover;
}

.project-body {
	position: absolute;
	bottom: 20px;
	right: 20px;
	left: 20px;
	transform: translateY(100%);
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: space-between;
	opacity: 0;
	border-radius: 10px;
	padding: 20px;
	z-index: 1;
	transition: all 0.5s ease-in-out;
}

.project-body::before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	background-color: var(--primary-color);
	border-radius: 10px;
	opacity: 90%;
	z-index: -1;
}

.project-item:hover .project-body {
	opacity: 1;
	transform: translateY(0px);
}

.project-content {
	text-align: left;
}

.project-content h3 {
	font-size: 20px;
	font-weight: 600;
	color: var(--white-color);
	text-transform: capitalize;
	margin-bottom: 5px;
}

.project-content p {
	color: var(--white-color);
	text-transform: capitalize;
	margin: 0;
}

.project-readmore-btn a {
	background-color: var(--accent-color);
	width: 45px;
	height: 45px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.project-readmore-btn a img {
	max-width: 20px;
	transform: rotate(-45deg);
	transition: all 0.4s ease-in-out;
}

.project-body:hover .project-readmore-btn a img {
	transform: rotate(0deg);
}

/************************************/
/***    12. Our Testimonial css	  ***/
/************************************/

.our-testimonial {
	padding: 50px 0 30px;
	/* background: var(--secondary-color) url('../images/section-bg-img-3.png') no-repeat; */
	background-image: linear-gradient(213deg, #f8cd4a 0%, #6f8f4d 40%, #3a7a49 100%);
	background-position: top right;
	background-color: #f8f9fa;
}

.our-testimonial .section-title {
	text-align: center;

}

.our-testimonial .section-title h2 span {
	color: #fff;

}

.our-testimonial .section-title h3 {
	color: #fff;

}

.our-testimonial .section-title h2 {
	color: #fff;

}

.our-testimonial .section-title p {
	color: #fff;

}

.testimonial-slider .testimonial-item {
	background: var(--white-color);
	/* border: 1px solid var(--divider-color); */
	border-radius: 25px;
	padding: 30px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, .08);
}

.testimonial-slider .swiper-wrapper {
	cursor: pointer;
}

.companies_logo_slider .swiper-wrapper {
	transition-timing-function: linear !important;
}

.testimonial-header {
	margin-bottom: 15px;
}

.testimonial-header .author-image {
	margin-bottom: 15px;
}

.testimonial-header .author-image figure,
.testimonial-header .author-image img {
	height: 78px;
	width: 78px;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	border-radius: 100%;
}

.testimonial-header .testimonial-rating i {
	font-size: 14px;
	color: #FF9529;
}

.testimonial-body {
	padding-bottom: 15px;
	margin-bottom: 15px;
	border-bottom: 1px solid var(--dark-divider-color);
}

.testimonial-body p {
	margin: 0;
	font-size: 15px;
}

.testimonial-footer .author-content h3 {
	font-size: 20px;
	text-transform: capitalize;
}

.testimonial-footer .author-content p {
	margin: 0;
	text-transform: capitalize;
}

.testimonial-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 30px;
}

.testimonial-slider .testimonial-button-next,
.testimonial-slider .testimonial-button-prev {
	position: relative;
	width: 40px;
	height: 40px;
	border-radius: 100%;
	background-color: var(--accent-color);
	transition: all 0.4s ease-in-out;
}

.testimonial-slider .testimonial-button-next {
	margin-left: 15px;
}

.testimonial-slider .testimonial-button-prev {
	margin-right: 15px;
}

.testimonial-slider .testimonial-button-next:hover,
.testimonial-slider .testimonial-button-prev:hover {
	background-color: var(--primary-color);
}

.testimonial-slider .testimonial-button-next::before,
.testimonial-slider .testimonial-button-prev::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: url('../images/icon-arrow.svg') no-repeat center center;
	background-size: 15px auto;
	transform: rotate(180deg);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.4s ease-in-out;
}

.testimonial-slider .testimonial-button-next::before {
	content: '';
	background: url('../images/icon-arrow.svg') no-repeat center center;
	background-size: 15px auto;
	transform: rotate(0deg);
}

/************************************/
/***      13. Our Blog css	      ***/
/************************************/

.our-blog {
	padding: 50px 0 30px;
	background-color: #f8f9fa;
}

.our-blog .section-title {
	text-align: center;
}

.blog-item {
	/* border: 1px solid var(--divider-color); */
	border-radius: 25px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, .08);
	overflow: hidden;
	margin-bottom: 30px;
	height: calc(100% - 30px);
}

.blog-item .post-item-content {
	padding: 30px;
}

.post-featured-image figure a {
	display: block;
	cursor: none;
}

.blog-item .post-featured-image img {
	aspect-ratio: 1 / 0.6;
	object-fit: cover;
	transition: all 0.5s ease-in-out;
}

.blog-item:hover .post-featured-image img {
	transform: scale(1.1);
}

.post-item-body h2 {
	font-size: 20px;
	color: var(--primary-color);
	line-height: 1.4em;
	margin-bottom: 20px;
}

.post-item-body h2 a {
	color: inherit;
}

.post-item-body p {
	margin-bottom: 20px;
}

.post-item-footer a {
	background-color: var(--accent-color);
	width: 45px;
	height: 45px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.post-item-footer a img {
	max-width: 20px;
	transition: all 0.4s ease-in-out;
	transform: rotate(-45deg);
}

.blog-item:hover .post-item-footer a img {
	transform: rotate(0deg);
}

.blog-recent img {
	width: 90px;
	border-radius: 8px;
}

.knjte img {
	position: relative;
	z-index: 1;
	transition: all 0.4s ease-in-out;
	filter: brightness(0) saturate(100%) invert(21%) sepia(22%) saturate(1038%) hue-rotate(97deg) brightness(95%) contrast(92%);
}


.portfolio-info-content .text a {
	color: #000;
	transition: all 0.3s ease;
}

.portfolio-info-content .text a:hover {
	color: var(--accent-color);
	text-decoration: underline;
}

.post-entry p {
	font-size: 16px;

}

.kit {
	position: relative;
}

.buttons {
	position: absolute;
	top: 0;
	margin: 10px;
}

.buttons button {
	background-color: #000;
	color: #fff;
	outline: none;
	border: none;
	border-radius: 5px;

}

/************************************/
/***    	14. Footer css		  ***/
/************************************/

.main-footer {
	background: var(--primary-color);
	padding: 100px 0 0;
}

.about-footer {
	padding-right: 25px;
}

.footer-logo {
	margin-bottom: 30px;
}

.footer-contact-box .footer-info-box {
	position: relative;
	padding-left: 30px;
	margin-bottom: 20px;
}

.footer-contact-box .footer-info-box:last-child {
	margin-bottom: 0;
}

.footer-info-box .icon-box {
	position: absolute;
	top: 2px;
	left: 0;
}

.footer-info-box .icon-box i {
	color: var(--white-color);
	font-size: 20px;
}

.footer-info-box p {
	color: var(--white-color);
	margin: 0;
}

.footer-links h3 {
	font-size: 20px;
	font-weight: 500;
	color: var(--white-color);
	text-transform: capitalize;
	margin-bottom: 30px;
}

.footer-links ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer-links ul li {
	margin-bottom: 15px;
}

.footer-links ul li:last-child {
	margin-bottom: 0;
}

.footer-links ul li a {
	font-size: 16px;
	color: var(--white-color);
	text-transform: capitalize;
	transition: all 0.3s ease-in-out;
}

.footer-links ul li a:hover {
	color: var(--accent-color);
}

.footer-copyright {
	margin-top: 80px;
	padding: 20px 0;
	border-top: 1px solid #FFFFFF26;
}

.footer-copyright-text p {
	color: var(--white-color);
	margin: 0;
}

.footer-copyright .footer-social-links ul {
	list-style: none;
	margin: 0;
	padding: 0;
	text-align: end;
}

.footer-copyright .footer-social-links ul li {
	display: inline-block;
	margin-right: 10px;
}

.footer-copyright .footer-social-links ul li:last-child {
	margin-right: 0;
}

.footer-copyright .footer-social-links ul li a {
	background-color: var(--white-color);
	color: var(--primary-color);
	height: 36px;
	width: 36px;
	border-radius: 100%;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease-in-out;
}

.footer-copyright .footer-social-links ul li a i {
	font-size: 18px;
}

.footer-copyright .footer-social-links ul li a:hover {
	background: var(--accent-color);
	color: var(--white-color);
}

/************************************/
/***     15. About us Page css    ***/
/************************************/

.page-header {
	position: relative;
	padding: 90px 0px 60px 0px;
	background: linear-gradient(179.5deg, var(--primary-color) 0.06%, var(--box-shadow-color) 90.6%), url('../images/page-header-bg.jpg') no-repeat center center;
	background-size: cover;
}

.page-header-box {
	position: relative;
	z-index: 1;
	text-align: center;
}

.page-header-box h1 {
	color: var(--white-color);
	font-size: 30px;
	letter-spacing: -0.02em;
	margin-bottom: 20px;
	cursor: none;
}

.page-header-box ol {
	margin: 0;
	padding: 0;
	justify-content: center;
	background-color: transparent;
}

.page-header-box ol li.breadcrumb-item {
	color: var(--white-color);
	font-size: 16px;
	line-height: 1.1em;
	text-transform: capitalize;
}

.page-header-box ol li.breadcrumb-item a {
	color: inherit;
}

.page-header-box ol .breadcrumb-item+.breadcrumb-item::before {
	color: var(--white-color);
}

.page-about {
	padding: 50px 0;
	/* background: var(--secondary-color) url('../images/section-bg-img-1.png') no-repeat; */
	background-position: right -100px bottom -100px;
}

.page-about .row.section-row {
	max-width: 100%;
	text-align: left;
}

.page-about .section-row .section-title {
	margin-bottom: 30px;
}

.about-us-image {
	position: relative;
	margin-right: 40px;
}

.about-img-1 {
	position: relative;
	width: 380px;
}

.about-img-2 {
	position: absolute;
	bottom: 0;
	right: 0;
}

.about-img-2 figure,
.about-img-1 figure {
	display: block;
}

.about-img-1 img {
	aspect-ratio: 1 /1.32;
	object-fit: cover;
	border-radius: 219px 219px 0 0;
}

.about-img-2 figure {
	border-radius: 219px 219px 0 0;
}

.about-img-2 img {
	aspect-ratio: 1 /1.26;
	object-fit: cover;
	border-width: 10px 0 0 10px;
	border-style: solid;
	border-color: var(--secondary-color);
	border-radius: 219px 219px 0 0;
}

.experience-counter-item {
	position: absolute;
	top: 50px;
	right: 0;
	display: flex;
	align-items: center;
	width: 250px;
	padding: 15px;
	background: var(--white-color);
	/* border: 1px solid var(--divider-color); */
	border-radius: 25px;
	animation: moveobject 3s infinite linear alternate;
	box-shadow: 0 5px 20px rgba(0, 0, 0, .08);
}

@keyframes moveobject {
	50% {
		right: 50px;
	}
}

.experience-counter-item .icon-box {
	margin-right: 15px;
}

.experience-counter-item .icon-box img {
	width: 50px;
}

.experience-counter-item .experience-counter-content {
	width: calc(100% - 60px);
}

.experience-counter-item .experience-counter-content h3 {
	font-size: 18px;
	font-weight: 500;
}

.experience-counter-item .experience-counter-content p {
	font-weight: 500;
	text-transform: capitalize;
	margin: 0;
}

.about-us-content-body ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

.about-us-content-body ul li {
	position: relative;
	width: calc(50% - 10px);
	font-size: 18px;
	font-weight: 500;
	color: var(--primary-color);
	text-transform: capitalize;
	padding-left: 30px;
}

.about-us-content-body ul li:before {
	content: '\f058';
	font-family: "Font Awesome 6 Free";
	color: var(--accent-color);
	font-size: 20px;
	font-weight: 900;
	position: absolute;
	top: 0;
	left: 0;
}

.trusted-company {
	background-color: var(--accent-color);
	padding: 12px 0px;
}

.trusted-companies-title h3 {
	font-size: 18px;
	font-weight: 500;
	text-transform: capitalize;
}

.why-choose-us {
	padding: 100px 0;
	background: var(--secondary-color) url('../images/section-bg-img-2.png') no-repeat;
	background-position: left -120px bottom -300px;
}

.why-choose-us .section-title {
	text-align: center;
}

.faq-accordion.why-choose-accordion .accordion-item {
	position: relative;
	background: none;
	border-bottom: 1px solid var(--dark-divider-color);
	padding-bottom: 25px;
	margin-bottom: 25px;
}

.faq-accordion.why-choose-accordion .accordion-item:last-child {
	border: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

.faq-accordion.why-choose-accordion .accordion-header {
	position: relative;
}

.faq-accordion.why-choose-accordion .accordion-header .icon-box {
	position: absolute;
	left: 0;
	top: 4px;
}

.faq-accordion.why-choose-accordion .accordion-item .accordion-button {
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	color: var(--primary-color);
	border: none;
	box-shadow: none;
	padding: 5px 35px 5px 55px;
	position: relative;
	transition: all 0.3s ease-in-out;
}

.faq-accordion.why-choose-accordion .accordion-item .accordion-button.collapsed::after,
.faq-accordion.why-choose-accordion .accordion-item .accordion-button:after {
	display: none;
}

.faq-accordion.why-choose-accordion .accordion-item .accordion-button span {
	position: absolute;
	right: 0;
	top: 0;
	bottom: auto;
	transform: translateY(50%);
	font-size: 26px;
	line-height: 1em;
	color: var(--accent-color);
	transition: all 0.3s ease-in-out;
}

.faq-accordion.why-choose-accordion .accordion-item .accordion-body {
	padding: 5px 30px 5px 55px;
}

.faq-accordion.why-choose-accordion .accordion-item.accordion-body p {
	margin: 0;
}

.why-choose-image {
	display: flex;
	align-items: start;
	justify-content: end;
	position: relative;
	margin-left: 60px;
}

.why-choose-image::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	background: url('../images/why-choose-image-bg.png') no-repeat;
	background-position: center top;
	width: 100%;
	height: 100%;
	z-index: 0;
}

.why-choose-img-1 {
	margin-right: 30px;
}

.why-choose-img-2 {
	padding-top: 80px;
}

.wwhy-choose-img-1 figure,
.why-choose-img-2 figure {
	display: block;
}

.why-choose-img-1 img,
.why-choose-img-2 img {
	border-radius: 25px;
}

.our-team {
	padding: 100px 0 70px;
}

.our-team .section-row {
	width: 100%;
	max-width: 100%;
	text-align: left;
}

.team-member-item {
	margin-bottom: 30px;
}

.team-image {
	position: relative;
	overflow: hidden;
	border-radius: 25px;
	margin-bottom: 15px;
}

.team-image img {
	width: 100%;
	border-radius: 0px;
	aspect-ratio: 1/1.2;
	object-fit: cover;
	transition: all 0.5s ease-in-out;
}

.team-member-item:hover .team-image img {
	transform: scale(1.1);
}

.team-social-icon {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	text-align: center;
	transition: all 0.4s ease-in-out;
	opacity: 0;
	z-index: 1;
}

.team-member-item:hover .team-social-icon {
	opacity: 1;
	bottom: 20px;
}

.team-social-icon ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.team-social-icon ul li {
	display: inline-block;
	text-align: center;
	margin-right: 10px;
}

.team-social-icon ul li:last-child {
	margin-right: 0;
}

.team-social-icon ul li a {
	display: block;
}

.team-social-icon ul li a i {
	background-color: var(--accent-color);
	width: 40px;
	height: 40px;
	border-radius: 99px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease-out;
	color: var(--white-color);
	font-size: 18px;
}

.team-social-icon ul li a i:hover {
	background-color: var(--primary-color);
}

.team-content {
	text-align: center;
}

.team-content h3 {
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 5px;
}

.team-content p {
	text-transform: capitalize;
	margin: 0;
}

/* .about-company-counter {
	background: linear-gradient(180deg, var(--white-color) 50%, var(--secondary-color) 50%);
} */

.about-company-counter .company-counter-box {
	background: linear-gradient(180deg, var(--accent-color) 0%, var(--gradient-color) 100%);
	border-radius: 25px;
	padding: 40px 0;
}

.gytfiu {
	background-color: #f8f9fa;
}

.gytf {
	background: linear-gradient(180deg, var(--accent-color) 0%, var(--gradient-color) 100%);
}

.company-counter-item {
	text-align: center;
}

.company-counter-item .company-counter-content h3 {
	font-size: 40px;
	color: var(--white-color);
	margin-bottom: 5px;
}

.company-counter-item .company-counter-content p {
	font-size: 20px;
	font-weight: 600;
	color: var(--white-color);
	text-transform: capitalize;
	margin: 0;
}

.our-faq {
	padding: 50px 0;
	/* background: var(--white-color) url('../images/section-bg-img-2.png') no-repeat; */
	background-position: left -100px bottom -250px;
}

.faq-image {
	position: relative;
	padding-bottom: 110px;
	margin-right: 20px;
}

.faq-img-2 {
	position: absolute;
	bottom: 0;
	right: 0;
}

.faq-img-1 {
	position: relative;
	width: 450px;
}

.faq-img-2 figure,
.faq-img-1 figure {
	display: block;
}

.faq-img-1 img {
	aspect-ratio: 1 / 1;
	object-fit: cover;
	border-radius: 25px;
}

.faq-img-2 img {
	aspect-ratio: 1 /1.25;
	object-fit: cover;
	border: 10px solid var(--secondary-color);
	border-radius: 25px;
}

.faq-accordion .accordion-item {
	position: relative;
	background: none;
	border-bottom: 1px solid var(--dark-divider-color);
	padding-bottom: 15px;
	margin-bottom: 15px;
}

.faq-accordion .accordion-item:last-child {
	border: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

.faq-accordion .accordion-item .accordion-button {
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	color: var(--white-color);
	border: none;
	box-shadow: none;
	padding: 5px 30px 5px 0px;
	position: relative;
	transition: all 0.3s ease-in-out;
}

.faq-accordion .accordion-item .accordion-button::after,
.faq-accordion .accordion-item .accordion-button.collapsed::after {
	content: '\f068';
	font-family: "Font Awesome 6 Free";
	position: absolute;
	right: 0px;
	top: 50%;
	bottom: auto;
	transform: translate(0px, -10px);
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 900;
	font-size: 20px;
	width: 20px;
	height: 20px;
	padding: 5px;
	color: var(--white-color);
}

.faq-accordion .accordion-item .accordion-button.collapsed::after {
	content: '\f067';
	color: var(--white-color);
}

.faq-accordion .accordion-item .accordion-body {
	padding: 5px 10px 5px 10px;
}

.faq-accordion .accordion-item .accordion-body p {
	margin-top: 10px;
	margin-bottom: 0;
}

/************************************/
/***     16. Services Page css    ***/
/************************************/

.page-services {
	/* background: var(--secondary-color) url('../images/section-bg-img-1.png') no-repeat; */
	background-position: right -100px bottom -100px;
	padding: 50px 0 70px;
}

.our-pricing.service-pricing {
	background: var(--secondary-color) url(../images/section-bg-img-2.png) no-repeat;
	background-position: left -100px bottom -250px;
}

/************************************/
/***   17. Service Single css	  ***/
/************************************/

.page-service-single {
	padding: 50px 0;
	/* background: var(--secondary-color) url('../images/section-bg-img-2.png') no-repeat; */
	background-position: left -100px bottom -250px;
}

.service-sidebar {
	position: sticky;
	top: 20px;
}

.service-list {
	background: var(--white-color);
	/* border: 1px solid var(--divider-color); */
	border-radius: 25px;
	padding: 30px;
	margin-bottom: 30px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, .08);
}

.service-list h3 {
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 30px;
}

.service-list ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.service-list ul li {
	border-bottom: 1px solid var(--dark-divider-color);
	margin-bottom: 15px;
	padding-bottom: 15px;
}

.service-list ul li:last-child {
	border: none;
	margin-bottom: 0px;
	padding-bottom: 0px;
}

.service-list ul li a {
	display: block;
	position: relative;
	color: var(--text-color);
	font-size: 16px;
	text-transform: capitalize;
	transition: all 0.3s ease-in-out;
}

.service-list ul li a:after {
	content: '\f105';
	font-family: "Font Awesome 6 Free";
	font-weight: 700;
	display: block;
	position: absolute;
	top: 50%;
	right: 0px;
	transform: translateY(-50%);
	color: var(--accent-color);
}

.service-list ul li a:hover {
	color: var(--accent-color);
}

.sidebar-cta-box {
	background: var(--white-color);
	/* border: 1px solid var(--divider-color); */
	border-radius: 25px;
	padding: 30px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, .08);
}

.sidebar-cta-box .icon-box {
	margin-bottom: 20px;
}

.sidebar-cta-box .cta-content h3 {
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 20px;
}

.sidebar-cta-box .cta-content p {
	margin-bottom: 20px;
}

.service-featured-image {
	margin-bottom: 30px;
}

.service-featured-image figure {
	display: block;
}

.service-featured-image img {
	aspect-ratio: 1 / 0.6;
	object-fit: cover;
	border-radius: 25px;
}

.service-entry {
	margin-bottom: 30px;
}

.service-entry h3 {
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 20px;
}

.company-growth .company-growth-img figure {
	display: block;
}

.company-growth .company-growth-img img {
	border-radius: 25px;
}

.company-growth-content h3 {
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 20px;
}

.company-growth-content p {
	margin-bottom: 20px;
}

.company-growth-content ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.company-growth-content ul li {
	position: relative;
	font-size: 18px;
	font-weight: 500;
	color: var(--primary-color);
	padding-left: 25px;
	margin-bottom: 12px;
}

.company-growth-content ul li:last-child {
	margin-bottom: 0;
}

.company-growth-content ul li:before {
	content: '';
	position: absolute;
	background: url('../images/icon-check.svg') no-repeat center center;
	background-size: 100% auto;
	height: 16px;
	width: 16px;
	top: 5px;
	left: 0;
}

.about-company-growth-content {
	margin-top: 20px;
}

.about-company-growth-content p {
	margin: 0;
}

.our-solution-faq {
	padding: 100px 0;
}

.our-solution-faq .solution-faqs {
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
}

/************************************/
/***    18. Blog Archive css  	  ***/
/************************************/

.page-blog {
	padding: 100px 0;
}

.post-pagination {
	margin-top: 30px;
	text-align: center;
}

.post-pagination ul {
	justify-content: center;
	padding: 0;
	margin: 0;
}

.post-pagination ul li a,
.post-pagination ul li span {
	display: flex;
	text-decoration: none;
	justify-content: center;
	align-items: center;
	background: var(--accent-color);
	color: var(--white-color);
	width: 40px;
	height: 40px;
	margin: 0 4px;
	border-radius: 4px;
	font-weight: 700;
	transition: all 0.3s ease-in-out;
}

.post-pagination ul li.active a,
.post-pagination ul li a:hover {
	background: var(--primary-color);
}

/************************************/
/***    19. Blog Single css  	  ***/
/************************************/

.page-single-post {
	padding: 30px 0;
}

.post-single-meta ol li i {
	font-size: 16px;
	color: var(--white-color);
	margin-right: 5px;
}

.post-image {
	position: relative;
	margin-bottom: 30px;
}

.post-image figure {
	display: block;
}

.post-image figure,
.post-image img {
	aspect-ratio: 1 / 0.50;
	object-fit: cover;
	border-radius: 25px;
}

.post-content {
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
}

.post-entry {
	border-bottom: 1px solid var(--dark-divider-color);
	padding-bottom: 30px;
	margin-bottom: 30px;
}

.post-entry:after {
	content: '';
	display: block;
	clear: both;
}

.post-entry a {
	color: var(--accent-color);
}

.post-entry h1,
.post-entry h2,
.post-entry h3,
.post-entry h4,
.post-entry h5,
.post-entry h6 {
	margin: 0 0 0.6em;
}

.post-entry h1 {
	font-size: 58px;
}

.post-entry h2 {
	font-size: 25px;
}

.post-entry h3 {
	font-size: 40px;
}

.post-entry h4 {
	font-size: 30px;
}

.post-entry h5 {
	font-size: 24px;
}

.post-entry h6 {
	font-size: 18px;
}

.post-entry p {
	margin-bottom: 20px;
}

.post-entry p:last-child {
	margin-bottom: 0;
}

.post-entry p strong {
	color: var(--primary-color);
	font-size: 18px;
	font-weight: 700;
}

.post-entry ol {
	margin: 0 0 30px;
}

.post-entry ol li {
	margin-bottom: 20px;
	font-size: 18px;
	font-weight: 700;
	color: var(--text-color);
}

.post-entry ul {
	padding: 0;
	margin: 20px 0 20px;
	padding-left: 20px;
}

.post-entry ul li {
	font-size: 16px;
	font-weight: 500;
	color: var(--primary-color);
	position: relative;
	margin-bottom: 10px;
}

.post-entry ul li:last-child {
	margin-bottom: 0;
}

.post-entry ul ul,
.post-entry ul ol,
.post-entry ol ol,
.post-entry ol ul {
	margin-top: 20px;
	margin-bottom: 0;
}

.post-entry ul ul li:last-child,
.post-entry ul ol li:last-child,
.post-entry ol ol li:last-child,
.post-entry ol ul li:last-child {
	margin-bottom: 0;
}

.post-entry blockquote {
	background: #f8f8f8 url('../images/icon-blockquote.svg') no-repeat 40px 46px;
	background-size: 45px;
	border-radius: 25px;
	padding: 40px 40px 40px 110px;
	margin-bottom: 30px;
}

.post-entry blockquote p {
	color: var(--primary-color);
	font-size: 16px;
	font-weight: normal;
	font-style: italic;
}

.post-entry blockquote p:last-child {
	margin-bottom: 0;
}

.tag-links {
	font-size: 20px;
	font-weight: 600;
	color: var(--primary-color);
	display: inline-block;
}

.post-tags .tag-links a {
	display: inline-block;
	font-size: 16px;
	font-weight: 700;
	text-transform: capitalize;
	background-color: var(--accent-color);
	color: var(--white-color);
	border-radius: 10px;
	padding: 8px 20px;
	margin-left: 10px;
	margin-bottom: 10px;
	transition: all 0.3s ease-in-out;
}

.post-tags .tag-links a:hover {
	background: var(--primary-color);
}

.post-social-sharing {
	text-align: right;
}

.post-social-sharing ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.post-social-sharing ul li {
	display: inline-block;
	margin-right: 10px;
}

.post-social-sharing ul li:last-child {
	margin-right: 0;
}

.post-social-sharing ul li a {
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	text-align: center;
	background-color: var(--accent-color);
	color: var(--white-color);
	width: 38px;
	height: 38px;
	transition: all 0.3s ease-in-out;
}

.post-social-sharing ul li:hover a {
	background-color: var(--primary-color);
}

.post-social-sharing ul li a i {
	font-size: 18px;
	color: inherit;
	transition: all 0.3s ease-in-out;
}

.post-social-sharing ul li:hover a i {
	color: var(--secondry-color);
}

/************************************/
/***    20. Project Page css  	  ***/
/************************************/

.page-project {
	padding: 100px 0;
}

/************************************/
/***   21. Project Single css    ***/
/************************************/

.page-project-single {
	padding: 100px 0;
	background: var(--secondary-color) url('../images/section-bg-img-2.png') no-repeat;
	background-position: left -100px bottom -250px;
}

.project-featured-image {
	margin-bottom: 30px;
}

.project-featured-image figure {
	display: block;
}

.project-featured-image img {
	border-radius: 25px;
	aspect-ratio: 1/ 0.6;
	object-fit: cover;
}

.project-single-content .project-section-title h3 {
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 20px;
}

.project-detail,
.project-values-content,
.project-about-image {
	margin-bottom: 30px;
}

.project-values-content ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

.project-values-content ul li {
	position: relative;
	width: calc(50% - 10px);
	text-transform: capitalize;
	padding-left: 30px;
}

.project-values-content ul li:before {
	content: '';
	position: absolute;
	background: url('../images/icon-check.svg') no-repeat center center;
	background-size: 100% auto;
	height: 16px;
	width: 16px;
	top: 5px;
	left: 0;
}

.project-about-image .project-about-img-2 figure,
.project-about-image .project-about-img-1 figure {
	display: block;
}

.project-about-image .project-about-img-1 img,

.project-about-image .project-about-img-2 img {
	aspect-ratio: 1 / 0.8;
	object-fit: cover;
	border-radius: 25px;
}

.project-result-content p {
	margin: 0;
}

.project-sidebar {
	position: sticky;
	top: 20px;
}

.portfolio-info-box {
	background: var(--white-color);
	/* border: 1px solid var(--divider-color); */
	border-radius: 25px;
	padding: 30px;
	margin-bottom: 30px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, .08);
}

.portfolio-info-box-title {
	margin-bottom: 30px;
}

.portfolio-info-box-title h3 {
	font-size: 20px;
	text-transform: capitalize;
}

.portfolio-info-item {
	display: flex;
	border-bottom: 1px solid var(--dark-divider-color);
	margin-bottom: 20px;
	padding-bottom: 20px;
}

.portfolio-info-item:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border: none;
}

.portfolio-info-item .icon-box {
	margin-right: 15px;
}

.portfolio-info-content {
	width: calc(100% - 65px);
}

.portfolio-info-content h3 {
	font-size: 16px;
	font-weight: 400;
	color: var(--text-color);
	text-transform: capitalize;
	margin-bottom: 3px;
}

.portfolio-info-content p {
	font-size: 18px;
	font-weight: 500;
	color: var(--primary-color);
	text-transform: capitalize;
	margin: 0;
}

/************************************/
/***	  22. Team Page css       ***/
/************************************/

.page-team {
	background: var(--white-color) url('../images/section-bg-img-2.png') no-repeat;
	background-position: left -120px bottom -300px;
	padding: 100px 0 70px;
}

/************************************/
/***   23. Contact us Page css    ***/
/************************************/

.page-contact-us {
	padding: 50px 0;
	/* background: var(--secondary-color) url('../images/section-bg-img-2.png') no-repeat; */
	background-position: left -100px bottom -250px;
}

.contact-info .contact-info-box {
	margin-bottom: 25px;
}

.contact-info .contact-info-box:last-child {
	margin-bottom: 0;
}

.contact-info-box .contact-info-title {
	margin-bottom: 20px;
}

.contact-info-box .contact-info-title h2 {
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 10px;
}

.contact-info-box .contact-info-title p {
	margin: 0;
}

.contact-info-item {
	position: relative;
	padding-left: 35px;
	margin-bottom: 20px;
}

.contact-info-item a {
	text-decoration: underline;
	color: var(--primary-color);
}

.contact-info-item:last-child {
	margin-bottom: 0;
}

.contact-info-item .icon-box {
	position: absolute;
	top: 0px;
	left: 0px;
	background-image: linear-gradient(to right, #3c6c47 16%, #00723d 50%, #4e9a5f 100%);
	border-radius: 50%;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.contact-info-item .icon-box img {
	filter: invert();

}

.contact-info-item .icon-box i {
	color: #fff;
}

.contact-info-item {
	position: relative;
	padding-left: 60px;
	margin-bottom: 20px;
}

.contact-info-item .contact-info-content p {
	color: var(--primary-color);
	text-transform: capitalize;
	margin: 0;
}

.contact-form {
	background: var(--white-color);
	/* border: 1px solid var(--divider-color); */
	border-radius: 25px;
	padding: 40px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, .08);
}

.contact-form-content p {
	margin-bottom: 20px;
}

.contact-form .form-control {
	padding: 10px 20px;
	background-color: #f2f2f2bd;
	color: var(--primary-color);
	box-shadow: none;
	/* border: 1px solid var(--divider-color); */
	border-radius: 10px;


}

.contact-form .form-control::placeholder {
	color: var(--primary-color);
	text-transform: capitalize;
}

.contact-form button.btn-default {
	width: auto;
	margin: auto;
	text-align: center;
	justify-content: center;
	display: flex;
}

.help-block.with-errors ul {
	margin-bottom: 0;
}

.help-block.with-errors ul li {
	color: var(--error-color);
	font-size: 14px;
}

.google-map .container-fluid {
	padding: 0;
}

.google-map-iframe,
.google-map-iframe iframe {
	width: 100%;
	height: 500px;
}

/************************************/
/***  	   24. FAQs Page css      ***/
/************************************/

.page-faqs {
	padding: 100px 0;
	background: var(--white-color) url('../images/section-bg-img-2.png') no-repeat;
	background-position: left -120px bottom -300px;
}

.faq-sidebar {
	position: sticky;
	top: 20px;
}

.faq-category-box {
	padding: 30px;
	/* border: 1px solid var(--divider-color); */
	border-radius: 25px;
}

.faq-category-box ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.faq-category-box ul li {
	border-bottom: 1px solid var(--dark-divider-color);
	margin-bottom: 15px;
	padding-bottom: 15px;
}

.faq-category-box ul li:last-child {
	border: none;
	margin-bottom: 0px;
	padding-bottom: 0px;
}

.faq-category-box ul li a {
	display: block;
	position: relative;
	color: var(--text-color);
	font-size: 16px;
	text-transform: capitalize;
	transition: all 0.3s ease-in-out;
}

.faq-category-box ul li a:after {
	content: '\f105';
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	display: block;
	position: absolute;
	top: 50%;
	right: 0px;
	transform: translateY(-50%);
	color: var(--accent-color);
}

.faq-category-box ul li a:hover {
	color: var(--accent-color);
}

.faq-section {
	margin-bottom: 60px;
}

.faq-section:last-child {
	margin-bottom: 0;
}

/************************************/
/***	  25. 404 Page css        ***/
/************************************/

.error-page {
	padding: 100px 0;
	/* background: var(--secondary-color); */
}

.technical-data {
	padding: 30px 0;
	/* background: var(--secondary-color); */
}

.error-page-image {
	text-align: center;
	margin-bottom: 60px;
}

.error-page .error-page-content {
	text-align: center;
}

.error-page-content-heading {
	margin-bottom: 30px;
}

.error-page-content-heading h2 {
	font-size: 46px;
}

.error-page-content-heading h2 span {
	color: var(--accent-color);
}

/************************************/
/***      26. Responsive css      ***/
/************************************/

@media only screen and (max-width: 1024px) {

	.main-menu ul li {
		margin-left: 0;
	}
}

@media only screen and (max-width: 991px) {

	#magic-cursor {
		display: none !important;
	}

	.slicknav_nav li,
	.slicknav_nav ul {
		display: block;
	}

	.responsive-menu,
	.navbar-toggle {
		display: block;
	}

	.section-row {
		margin-bottom: 40px;
	}

	.section-btn {
		text-align: left;
		margin-top: 15px;
	}

	.section-title h1,
	.section-title h2 {
		font-size: 20px;
	}

	.section-title-content {
		text-align: left;
		margin-left: 0;
		margin-top: 15px;
	}

	.hero {
		padding: 50px 0;
	}

	.hero-content {
		padding-right: 0px;
		margin-bottom: 30px;
	}

	.hero-content .section-title.hero-content-title h1 {
		font-size: 46px;
	}

	.about-us {
		background-position: right -200px bottom -200px;
		padding: 50px 0;
	}

	.about-image {
		margin-bottom: 30px;
	}

	.about-content {
		padding-left: 0px;
	}

	.our-services {
		background-position: left -100px bottom -250px;
		padding: 50px 0 20px;
	}

	.service-item {
		padding: 20px;
	}

	.our-strategy {
		padding: 50px 0;
	}

	.strategy-image {
		justify-content: center;
		margin-bottom: 30px;
	}

	.our-strategy-box {
		padding-left: 0px;
	}

	.strategy-item {
		padding: 20px;
		margin-bottom: 20px;
	}

	.company-feature {
		background-position: right -200px bottom -200px;
		padding: 50px 0;
	}

	.company-feature-content {
		margin-bottom: 10px;
	}

	.company-feature-item .icon-box {
		width: 60px;
		height: 60px;
	}

	.company-feature-item .icon-box img {
		width: 35px;
	}

	.feature-item-content {
		width: calc(100% - 75px);
	}

	.how-it-work {
		padding: 50px 0 20px;
	}

	.how-work-item {
		padding: 20px;
	}

	.how-work-content h3 {
		margin-bottom: 15px;
	}

	.our-pricing {
		padding: 50px 0 20px;
	}

	.pricing-item {
		padding: 30px 20px;
	}

	.pricing-header h2 {
		font-size: 38px;
		margin-bottom: 10px;
	}

	.pricing-header {
		padding-bottom: 30px;
		margin-bottom: 30px;
	}

	.pricing-body {
		margin-bottom: 30px;
	}

	.our-project {
		padding: 50px 0 20px;
	}

	.project-body {
		padding: 15px;
	}

	.our-testimonial {
		padding: 50px 0;
	}

	.testimonial-item {
		padding: 20px;
	}

	.testimonial-header .author-image figure,
	.testimonial-header .author-image img {
		height: 65px;
		width: 65px;
	}

	.testimonial-btn {
		margin-top: 30px;
	}

	.our-blog {
		padding: 50px 0 20px;
	}

	.blog-item .post-item-content {
		padding: 25px;
	}

	.main-footer {
		padding: 50px 0 0;
	}

	.footer-logo {
		margin-bottom: 30px;
	}

	.about-footer {
		margin-bottom: 30px;
		padding-right: 0;
	}

	.footer-links h3 {
		margin-bottom: 20px;
	}

	.footer-copyright {
		margin-top: 60px;
		padding: 15px 0;
	}

	.page-header {
		padding: 100px 0px;
	}

	.page-header-box h1 {
		font-size: 15px;
	}

	.page-about {
		padding: 50px 0;
	}

	.about-us-image {
		width: 100%;
		max-width: 580px;
		margin: 0 auto;
		margin-bottom: 30px;
	}

	.about-us-content-body ul li {
		font-size: 16px;
	}

	/* .trusted-company {
		margin-top: 40px;
	} */

	.trusted-companies-title {
		margin-bottom: 20px;
	}

	.why-choose-us {
		padding: 50px 0;
	}

	.why-choose-image {
		justify-content: center;
	}

	.faq-accordion.why-choose-accordion {
		margin-bottom: 30px;
	}

	.faq-accordion .accordion-item {
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

	.faq-accordion.why-choose-accordion .accordion-item .accordion-button span {
		font-size: 22px;
	}

	.why-choose-image {
		margin-left: 0;
	}

	.our-team {
		padding: 50px 0 20px;
	}

	.about-company-counter .company-counter-box {
		padding: 30px;
	}

	.company-counter-item .company-counter-content h3 {
		font-size: 32px;
	}

	.company-counter-item .company-counter-content p {
		font-size: 18px;
	}

	.our-faq {
		padding: 50px 0;
	}

	.faq-image {
		max-width: 650px;
		margin: 0 auto;
		margin-bottom: 30px;
	}

	.page-services {
		padding: 50px 0 20px;
	}

	.page-service-single {
		padding: 50px 0;
	}

	.service-sidebar {
		margin-bottom: 30px;
	}

	.service-list {
		padding: 20px;
	}

	.service-list h3 {
		margin-bottom: 20px;
	}

	.sidebar-cta-box {
		padding: 20px;
	}

	.sidebar-cta-box .icon-box {
		margin-bottom: 15px;
	}

	.sidebar-cta-box .icon-box img {
		width: 50px;
	}

	.sidebar-cta-box .cta-content h3 {
		margin-bottom: 15px;
	}

	.company-growth-content ul li {
		font-size: 16px;
	}

	.our-solution-faq {
		padding: 50px 0;
	}

	.page-blog {
		padding: 50px 0;
	}

	.page-single-post {
		padding: 50px 0;
	}

	.post-image {
		margin-bottom: 20px;
	}

	.post-entry blockquote {
		background: var(--secondary-color) url('../images/icon-blockquote.svg') no-repeat 30px 36px;
		background-size: 45px;
		padding: 30px 30px 30px 90px;
		margin-bottom: 20px;
	}

	.post-entry blockquote p {
		font-size: 18px;
	}

	.post-entry h2 {
		font-size: 18px;
	}

	.post-entry ul li {
		font-size: 16px;
	}

	.post-tag-links {
		padding: 0 0px;
	}

	.post-tags {
		margin-bottom: 10px;
	}

	.post-social-sharing ul {
		text-align: left;
	}

	.post-tags .tag-links a {
		padding: 8px 15px;
	}

	.page-project {
		padding: 50px 0;
	}

	.post-pagination {
		margin-top: 20px;
	}

	.page-project-single {
		padding: 50px 0;
	}

	.project-sidebar {
		margin-top: 30px;
	}

	.portfolio-info-box {
		padding: 20px;
	}

	.portfolio-info-item .icon-box img {
		width: 40px;
	}

	.portfolio-info-content {
		width: calc(100% - 55px);
	}

	.page-team {
		padding: 50px 0 20px;
	}

	.page-contact-us {
		padding: 50px 0;
	}

	.contact-info .contact-info-box {
		margin-bottom: 30px;
	}

	.contact-info {
		margin-bottom: 30px;
	}

	.contact-form {
		padding: 20px;
	}

	.contact-info-box .contact-info-title {
		margin-bottom: 15px;
	}

	.contact-info-item {
		margin-bottom: 15px;
	}

	.google-map-iframe,
	.google-map-iframe iframe {
		height: 500px;
	}

	.page-faqs {
		padding: 50px 0;
	}

	.faq-sidebar {
		margin-bottom: 30px;
	}

	.faq-category-box {
		padding: 20px;
	}

	.faq-section {
		margin-bottom: 30px;
	}

	.error-page {
		padding: 50px 0;
	}

	.error-page-image {
		margin-bottom: 30px;
	}

	.error-page-content-heading {
		margin-bottom: 20px;
	}

	.error-page-content-heading h2 {
		font-size: 38px;
	}
}

@media only screen and (max-width: 767px) {

	.btn-default {
		font-size: 16px;
		padding: 15px 25px;
	}

	.section-title h1,
	.section-title h2 {
		font-size: 19px;
	}

	.topbar-contact-info {
		text-align: center;
	}

	.topbar-contact-info ul li {
		margin-right: 0;
		padding-right: 10px;
	}

	.topbar-social-links {
		display: none;
	}

	.hero-content .section-title.hero-content-title h1 {
		font-size: 36px;
	}

	.hero-content-footer {
		display: block;
	}

	.wide-client {
		margin-left: 0px;
		margin-top: 15px;
	}

	.hero-image {
		padding-bottom: 30px;
	}

	.company-sales {
		transform: translateY(0%);
		padding: 10px 15px 10px 10px;
	}

	.company-sales .icon-box img {
		width: 40px;
	}

	.company-sales-content {
		width: calc(100% - 55px);
	}

	.company-visit {
		top: 50%;
		transform: translateY(-50%);
		padding: 10px 15px 10px 10px;
	}

	.company-visit .icon-box img {
		width: 40px;
	}

	.company-visit-content {
		width: calc(100% - 55px);
	}

	.about-image {
		padding-bottom: 30px;
	}

	.company-experience {
		top: auto;
		bottom: 0%;
		right: 0;
		transform: translateY(0%);
		padding: 10px 15px 10px 10px;
	}

	.company-experience .icon-box img {
		width: 40px;
	}

	.company-experience-content {
		width: calc(100% - 55px);
	}

	.about-content-body ul {
		display: block;
	}

	.about-content-body ul li {
		width: 100%;
		font-size: 16px;
		margin-bottom: 15px;
	}

	.about-content-body ul li:last-child {
		margin-bottom: 0;
	}

	.about-content-body ul li:before {
		font-size: 18px;
	}

	.service-body h3 {
		font-size: 18px;
		margin-bottom: 5px;
	}

	.strategy-image::before {
		left: 50%;
		transform: translateX(-50%);
		background-size: contain;
		width: 150px;
		height: 200px;
		z-index: -1;
	}

	.strategy-img-1 {
		margin-right: 20px;
	}

	.strategy-img-2 {
		padding-top: 60px;
	}

	.strategy-item .icon-box {
		width: 60px;
		height: 60px;
		margin-right: 10px;
	}

	.strategy-item .icon-box img {
		width: 30px;
	}

	.strategy-progress-bar {
		width: calc(100% - 70px);
	}

	.skillbar .skill-data {
		margin-bottom: 5px;
	}

	.skillbar .skill-data .skill-title {
		font-size: 18px;
	}

	.feature-item-content h3 {
		font-size: 18px;
	}

	.how-work-content h3 {
		font-size: 18px;
		margin-bottom: 10px;
	}

	.pricing-header {
		padding-bottom: 20px;
		margin-bottom: 20px;
	}

	.pricing-header h2 {
		font-size: 28px;
	}

	.pricing-body ul li {
		font-size: 16px;
	}

	.our-projects-nav ul li {
		margin-right: 10px;
	}

	.our-projects-nav ul li a {
		padding: 8px 15px;
	}

	.project-content h3 {
		font-size: 18px;
	}

	.testimonial-footer .author-content h3 {
		font-size: 18px;
	}

	.post-item-body h2 {
		font-size: 18px;
		margin-bottom: 15px;
	}

	.post-item-body p {
		margin-bottom: 15px;
	}

	.footer-info-box .icon-box i {
		font-size: 18px;
	}

	.footer-links {
		margin-bottom: 30px;
	}

	.main-footer .col-12:last-child .footer-links {
		margin-bottom: 0;
	}

	.footer-links ul li {
		margin-bottom: 10px;
	}

	.footer-copyright {
		margin-top: 30px;
	}

	.footer-copyright-text {
		text-align: center;
		margin-bottom: 15px;
	}

	.footer-copyright .footer-social-links ul {
		text-align: center;
	}

	.page-header {
		padding: 30px 0px;
	}
	.page-header-box h1{
	    margin-top:30px;
	}

	.page-header-box h1 {
		font-size:14px;
	}
	.page-header-box ol li.breadcrumb-item a{
	    font-size:10px;
	}
.page-header-box ol li.breadcrumb-item{
      font-size:10px;
}
	.about-img-1 {
		width: 250px;
	}

	.about-img-2 img {
		width: 175px;
	}

	.experience-counter-item {
		padding: 10px 15px 10px 10px;
		width: 240px;
		top: 0;
	}

	.experience-counter-item .icon-box img {
		width: 40px;
	}

	.about-us-content-body ul li {
		width: 100%;
	}

	.trusted-companies-title h3 {
		font-size: 16px;
	}

	.why-choose-image::before {
		left: 50%;
		transform: translateX(-50%);
		background-size: contain;
		width: 150px;
		height: 200px;
	}

	.faq-accordion.why-choose-accordion .accordion-header .icon-box {
		top: 0;
	}

	.faq-accordion.why-choose-accordion .accordion-item .accordion-button span {
		font-size: 18px;
	}

	.faq-accordion.why-choose-accordion .accordion-item .accordion-button {
		font-size: 18px;
	}

	.why-choose-img-1 {
		margin-right: 20px;
	}

	.why-choose-img-2 {
		padding-top: 60px;
	}

	.team-content h3 {
		font-size: 18px;
	}

	.about-company-counter .company-counter-box {
		padding: 30px 30px 0;
	}

	.company-counter-item {
		margin-bottom: 30px;
		height: calc(100% - 30px);
	}

	.company-counter-item {
		margin-bottom: 30px;
		height: calc(100% - 30px);
	}

	.company-counter-item .company-counter-content h3 {
		font-size: 24px;
	}

	.company-counter-item .company-counter-content p {
		font-size: 16px;
	}

	.faq-img-1 {
		width: 250px;
	}

	.faq-img-2 img {
		width: 175px;
		border-width: 6px;
	}

	.faq-accordion .accordion-item .accordion-button {
		font-size: 18px;
	}

	.faq-accordion .accordion-item .accordion-button::after,
	.faq-accordion .accordion-item .accordion-button.collapsed::after {
		font-size: 18px;
	}

	.service-list h3 {
		font-size: 18px;
	}

	.sidebar-cta-box .cta-content h3 {
		font-size: 18px;
	}

	.service-entry h3 {
		font-size: 18px;
	}

	.company-growth-content h3 {
		font-size: 18px;
	}

	.company-growth-img {
		margin-bottom: 30px;
	}

	.post-entry blockquote {
		background: var(--secondary-color) url('../images/icon-blockquote.svg') no-repeat 20px 20px;
		background-size: 35px;
		padding: 55px 20px 20px 20px;
	}

	.post-entry h2 {
		font-size: 15px;
	}

	.tag-links {
		font-size: 18px;
	}

	.project-single-content .project-section-title h3 {
		font-size: 18px;
	}

	.project-values-content ul {
		gap: 10px;
	}

	.project-values-content ul li {
		width: 100%;
		padding-left: 25px;
	}

	.project-values-content ul li:before {
		height: 14px;
		width: 14px;
		top: 6px;
	}

	.project-about-image .project-about-img-1 {
		margin-bottom: 20px;
	}

	.portfolio-info-box-title h3 {
		font-size: 18px;
	}

	.contact-info-box .contact-info-title h2 {
		font-size: 18px;
	}

	.contact-form .form-control {
		padding: 12px 15px;
	}

	.google-map-iframe,
	.google-map-iframe iframe {
		height: 350px;
	}

	.error-page-content-heading h2 {
		font-size: 30px;
	}
}

/* /////////////social-icon side////////////// */
/* Fixed Social Bar */
.ns-social-fixed {
	position: fixed;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	z-index: 9999;
}

/* Social Buttons */
.ns-social-fixed a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	margin: 3px 0;
	transition: all 0.3s ease;
	border-radius: 10px 0 0 10px;
	text-decoration: none;
}

/* Icon */
.ns-social-fixed a img {
	transition: transform 0.3s ease;
}

/* Hover Animation */
.ns-social-fixed a:hover {
	padding-right: 12px;
}

.ns-social-fixed a:hover img {
	transform: scale(1.15);
}


/* Individual Colors */
.ns-linkedin {
	background: #4e7547;
}

.ns-linkedin:hover {
	background: #000;
}

a.ns-twitter {
	background: #4e7547;
}

a.ns-twitter:hover {
	background: #000;
}

a.ns-twitter img {
	filter: invert(1);
}

.ns-facebook {
	background: #4e7547;
}

.ns-facebook:hover {
	background: #1877f2;
}

.ns-instagram {
	background: #4e7547;
}

.ns-instagram:hover {
	background: #e4405f;
}

.ns-whatsapp {
	background: #4e7547;
}

.ns-whatsapp:hover {
	background: #25d366;
}

.ns-youtube {
	background: #4e7547;
}

.ns-youtube:hover {
	background: #fff;
}

/*===================================
    FOOTER DESIGN CSS
===================================*/

.main-footer {
	position: relative;
	overflow: hidden;
	padding-top: 30px;
	padding-bottom: 0;
}

/* Footer Top */
.footer-top-item {
	border-radius: 20px;
	margin-bottom: 10px;
}

.footer-logo img {
	max-width: 180px;
}

/* Contact Item */
.footer-right-item .icon-item {
	display: flex;
	align-items: center;
	gap: 15px;
}

.footer-right-item .icon i {
	color: #fff;
	font-size: 14px;
}

.footer-right-item .icon {
	width: 40px;
	height: 40px;
	min-width: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
	background-color: #0178a7;
}

.icon-item {
	display: flex;
	align-items: center;
	gap: 15px;
}

.cont span {
	color: #fff;
}

.nhjb {
	border-bottom: 1px solid #ffffff70;
	border-top: 1px solid #ffffff70;
	padding: 20px 0px;

}

.cont h3 {
	font-size: 17px;
	color: #fff;
}

.cont h3 a {
	color: #fff;
}

.njn {
	width: 40px;
	height: 40px;
	min-width: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
	background-color: #0178a7;
}

i.fa-solid.fa-location-dot {
	color: #fff;
	font-size: 14px;
}

.footer-right-item .cont span {
	display: block;
	font-size: 14px;
	margin-bottom: 6px;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #fff;
}

.footer-right-item .cont h3 {
	font-size: 17px;
	line-height: 1.6;
	margin: 0;
	font-weight: 600;
}

.footer-right-item .cont h3 a {
	text-decoration: none;
	transition: all 0.3s ease;
	word-break: break-word;
	color: #fff;
}

/* Footer Widget */
.footer-widget-wrapper {
	padding: 20px 0 50px;
}

.single-footer-widget {
	margin-bottom: 30px;
}

/* Widget Heading */
.widget-head {
	margin-bottom: 28px;
}

.widget-head h4 {
	font-size: 24px;
	margin: 0;
	position: relative;
	padding-bottom: 14px;
	text-transform: capitalize;
	color: #FFF;
}

.widget-head h4::before {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 50px;
	height: 2px;
}

/* About Text */
.list-abo p {
	line-height: 1.9;
	margin-bottom: 25px;
	color: #fff;
}

/* Footer Menu */
.list-area {
	margin: 0;
	padding: 0;
	list-style: none;
}

.list-area li {
	margin-bottom: 16px;
}

.list-area li:last-child {
	margin-bottom: 0;
}

.list-area li a {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
	transition: all 0.3s ease;
	color: #fff;
}

.list-area li a:hover {
	transform: translateX(6px);
}

/* Social Icon */
.social-icon {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-top: 30px;
}

.social-icon a i {
	color: #fff;
}


.social-icon a {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	transition: all 0.3s ease;
	font-size: 16px;
	position: relative;
	overflow: hidden;
	z-index: 1;
	border: 1px solid #ffffff73;
}

/* Before Effect */
.social-icon a::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: #fff;
	transform: scale(0.5);
	border-radius: 50%;
	opacity: 0;
	transition: all 0.4s linear;
	z-index: -1;
}

/* Hover Effect */
.social-icon a:hover::before {
	transform: scale(1);
	opacity: 1;
}

.social-icon a:hover {
	transform: translateY(-5px);

}

.social-icon a:hover i {
	color: #000 !important;

}


/* Footer Bottom */
.footer-bottom {
	padding: 10px 0;

	border-top: 1px solid #ffffff73;
}

.footer-wrapper {
	text-align: center;
}

.footer-wrapper p {
	margin: 0;
	line-height: 1.8;
	font-size: 15px;
	color: #fff;
}

.footer-wrapper p a {
	text-decoration: none;
	font-weight: 600;
	color: #fff;
}

/* Responsive */
@media only screen and (max-width: 991px) {



	.footer-right-item .icon-item {
		margin-bottom: 25px;
	}

	.footer-widget-wrapper {
		padding-top: 10px;
	}
}

@media only screen and (max-width: 767px) {

	.main-footer {
		padding-top: 50px;
	}

	.footer-top-item {


		margin-bottom: 40px;
	}

	.footer-logo {
		text-align: center;
		margin-bottom: 30px;
	}

	.widget-head h4 {
		font-size: 22px;
	}

	.footer-right-item .cont h3 {
		font-size: 15px;
	}

	.social-icon {
		flex-wrap: wrap;
	}
}

.trusted-company h4 {
	font-size: 20px;
	color: #fff;
	font-weight: normal;
}

.ydtr img {
	filter: brightness(0) invert(1);
}

/* .ydtr {
	display: flex;
	align-items: center;
	justify-content: center;
} */

.call-btn img {
	height: 40px;
	width: 40px;
	position: fixed;
	left: 10px;
	bottom: 60px;
	z-index: 9999;
}

.whatsapp-link img {
	height: 40px;
	width: 40px;
	position: fixed;
	left: 10px;
	bottom: 20px;
	z-index: 9999;
}

.jbhhg img {
	border-radius: 45px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, .08);
}

/* footer {
	background-image: linear-gradient(159deg,
			#3c6c47 0%,
			#17341e 35%,
			#4e9a5f 140%);
} */

.footer-area-main {
	/* background: url('../images/footer-bg.jpg') no-repeat center center/cover; */
	position: relative;
	z-index: 1;
	padding-top: 50px;
}

.footer-area-main::before {
	content: '';
	position: absolute;
	inset: 0;
	/* background: rgba(5, 12, 32, 0.92); */
	z-index: -1;
}

.footer-top-wrap {
	padding-bottom: 10px;
}

/* 
.footer-about-box {
	padding-right: 30px;
} */

.footer-logo-box img {
	max-width: 80px;
}

.footer-about-text {
	color: #000;
	font-size: 15px;
	line-height: 25px;
	margin: 30px 0;
	margin-top: 10px;
}

.footer-about-text a {
	color: var(--accent-color);
	text-decoration: underline;
	font-size: 12px;
}

.footer-social-links {
	display: flex;
	align-items: center;
	gap: 15px;
}

.footer-social-links a {
	width: 40px;
	height: 40px;
	border: 1px solid rgba(0, 0, 0, 0.2);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #000;
	font-size: 16px;
	transition: all 0.4s ease;
	text-decoration: none;
}

.footer-social-links a:hover {
	background: var(--accent-color);
	border-color: var(--accent-color);
	transform: translateY(-5px);
	color: #fff;
}

.footer-widget-box {
	padding-left: 10px;
}

.footer-widget-heading {
	color: var(--accent-color);
	font-size: 25px;
	font-weight: 700;
	margin-bottom: 20px;
}

.footer-links-list {
	padding: 0;
	margin: 0;
}

.footer-links-list li:hover span {
	color: var(--accent-color);
	padding-left: 5px;
}

.footer-links-list li {
	list-style: none;
	margin-bottom: 12px;
	transition: all 0.3s ease;
	width: fit-content;
}


.footer-links-list li span {
	color: #000;
	margin-right: 3px;
	transition: all 0.3s ease;
}

.footer-links-list li a {
	color: #000;
	font-size: 16px;
	text-decoration: none;
	transition: all 0.3s ease;
}

.footer-links-list li a:hover {
	color: var(--accent-color);

}

.footer-contact-list {
	padding: 0;
	margin: 0;
}

.footer-contact-list li {
	display: flex;
	gap: 18px;
	margin-bottom: 15px;
	list-style: none;
}

.footer-contact-icon {
	width: 40px;
	height: 40px;
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 18px;
	flex-shrink: 0;
	background-color: var(--accent-color);
}

.footer-contact-info p,
.footer-contact-info a {
	color: #000;
	font-size: 17px;
	line-height: 30px;
	margin: 0;
	text-decoration: none;
	transition: all 0.3s ease;
}

.footer-contact-info a:hover {
	color: var(--accent-color);
	padding-left: 5px;
}

.footer-bottom-bar {
	border-top: 1px solid rgb(0 0 0 / 21%);
	padding: 10px 0;
}

.footer-bottom-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	flex-wrap: wrap;
}

.footer-bottom-content p {
	color: #000;
	margin: 0;
	font-size: 16px;
}

.footer-bottom-content p a {
	color: var(--accent-color);
	transition: all 0.5s ease;
}

.footer-bottom-content p a:hover {
	color: #000;
	text-decoration: underline;
}

.footer-policy-links {
	display: flex;
	align-items: center;
	gap: 25px;
}

.footer-policy-links a {
	color: var(--accent-color);
	text-decoration: none;
	transition: all 0.3s ease;
}

.footer-policy-links a:hover {
	color: #000;
	text-decoration: underline;
	transition: all 0.3s ease;
}

@media(max-width:991px) {

	.footer-widget-box {
		margin-top: 40px;
		padding-left: 0;
	}

	.footer-about-box {
		padding-right: 0;
	}

	.footer-bottom-content {
		justify-content: center;
		text-align: center;
	}
}

@media(max-width:767px) {

	.footer-widget-heading {
		font-size: 24px;
	}

	.footer-about-text,
	.footer-links-list li a,
	.footer-contact-info p,
	.footer-contact-info a {
		font-size: 15px;
	}

	.footer-policy-links {
		justify-content: center;
		flex-wrap: wrap;
		gap: 15px;
	}
}

.lite {
	background-image: linear-gradient(to right, #3c6c47 0%, #17341e 50%, #4e9a5f 100%);
}

.uhou {
	background-image: linear-gradient(to right, #3c6c47 0%, #17341e 50%, #4e9a5f 100%);
}

.product-title {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.vision-mission-section {
	background: #f8f9fa;
}

.vm-card {
	background: #fff;
	border-radius: 20px;
	padding: 35px 25px;
	text-align: center;
	height: 100%;
	box-shadow: 0 5px 20px rgba(0, 0, 0, .08);
	transition: all .4s ease;
	cursor: pointer;
}

.vm-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, .12);
}

.vm-icon {
	width: 80px;
	height: 80px;
	line-height: 80px;
	margin: 0 auto 20px;
	font-size: 40px;
	border-radius: 50%;
	background: #fff4eb;

}

.vm-card h3 {
	font-size: 28px;
	font-weight: 700;
	margin-bottom: 15px;
	color: #222;
}

.vm-card p {
	color: #6c757d;
	line-height: 1.8;
	margin-bottom: 0;
}

@media(max-width:991px) {
	.vm-card {
		padding: 30px 20px;
	}

	.vm-card h3 {
		font-size: 24px;
	}
}

.vm-card {
	background: #fff;
	border-radius: 20px;
	padding: 35px 25px;
	text-align: center;
	height: 100%;
	transition: all .4s ease;
	box-shadow: 0 5px 20px rgba(0, 0, 0, .08);
	overflow: hidden;
}

.vm-icon {
	width: 80px;
	height: 80px;
	line-height: 80px;
	margin: 0 auto 20px;
	border-radius: 50%;
	background: #f4f4f4;
	font-size: 40px;
	transition: all .4s ease;
}

.vm-card h3,
.vm-card p {
	transition: all .4s ease;
}

.vm-card::before {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	/* background: linear-gradient(180deg, var(--accent-color) 0%, var(--gradient-color) 100%); */
	background-color: #f3bd1a;
	transform: scaleY(0);
	transform-origin: bottom;
	transition: transform .5s ease-in-out;
	z-index: -1;
	border-radius: 20px;
}

.vm-card:hover::before {
	transform: scaleY(1);
	border-radius: 20px;
}

.vm-card:hover h3,
.vm-card:hover p {
	color: #fff;
}

.vm-card:hover .vm-icon {
	background: linear-gradient(180deg, var(--gradient-color) 0%, var(--accent-color) 100%);
	color: #fff;
	transform: rotateY(360deg);
}

.video-showcase {
	padding: 30px 0;
	background: #fff;
	margin-top: 10px;
}

.video-card {
	position: relative;
	height: 450px;
	overflow: hidden;
	border-radius: 25px;
	cursor: pointer;
	box-shadow: 0 5px 20px rgba(0, 0, 0, .08);
	padding: 15px;


}

.video-card video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all .6s ease;
	border-radius: 25px;
}

.video-overlay {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 30px;
	background: linear-gradient(transparent, rgba(0, 0, 0, .85));
}

.video-overlay h3 {
	color: #fff;
	font-size: 24px;
	font-weight: 700;
	margin: 0;
}

/* .video-card:hover video {
	transform: scale(1.08);
} */

.video-card::before {
	content: '';
	position: absolute;
	inset: 0;
	/* background: rgba(0, 0, 0, .15); */
	z-index: 1;
}

.video-overlay {
	z-index: 2;
}

.scroll-to-top {
	position: fixed;
	right: 30px;
	bottom: 30px;
	width: 70px;
	height: 70px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	z-index: 999;
}

.scroll-to-top {
	display: none;
}

.progress-ring {
	position: absolute;
	transform: rotate(-90deg);
}

.progress-ring .bg {
	fill: none;
	stroke: #e5e5e5;
	stroke-width: 4;
}

.progress-ring .progress {
	fill: none;
	stroke: #3c6c47;
	stroke-width: 4;
	stroke-linecap: round;
	transform: rotate(-90deg);
	transform-origin: 50% 50%;
}

.scroll-to-top span {
	width: 60px;
	height: 60px;
	border: 2px solid #3c6c47;
	/* Inner Border */
	border-radius: 50%;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #3c6c47;
	font-size: 16px;
	font-weight: 700;
}

.blog-layout {
	align-items: stretch;
}

.featured-blog {
	background: #fff;
	border-radius: 12px;
	overflow: hidden;
	height: 100%;
	box-shadow: 0 5px 20px rgba(0, 0, 0, .08);
}

.featured-img img {
	width: 100%;
	height: 320px;
	object-fit: cover;
}

.featured-content {
	padding: 25px;
}

.featured-content h2 {
	font-size: 25px;
	margin: 12px 0;
	line-height: 1.3;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;

}

.featured-content h2 a {
	color: #000;

}

.blog-cat {
	color: #3c6c47;
	font-size: 14px;
	font-weight: 600;
}

.mini-blog {
	display: flex;
	gap: 20px;
	background: #fff;
	padding: 15px;
	border-radius: 12px;
	margin-bottom: 15px;
	align-items: center;
	box-shadow: 0 5px 20px rgba(0, 0, 0, .08);
	transition: .4s;
}

.mini-blog:hover {
	transform: translateY(-5px);
}

.mini-blog-img {
	width: 120px;
	flex-shrink: 0;
}

.mini-blog-img img {
	width: 100%;
	height: 85px;
	object-fit: cover;
	border-radius: 8px;
}

.mini-blog-content span {
	color: #3c6c47;
	font-size: 13px;
	font-weight: 600;
}

.mini-blog-content h4 {
	font-size: 18px;
	margin: 8px 0;
	line-height: 1.4;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	width: 440px;
}

.featured-blog.blog-item {
	height: auto;
}

.mini-blog.blog-item {
	height: auto;
}

.mini-blog.blog-item .post-item-footer a {
	height: 35px;
	width: 35px;
}

.mini-blog.blog-item .post-item-footer a img {
	width: 18px;
}

.mini-blog-content h4 a {
	color: #000;
}

@media(max-width:991px) {

	.featured-img img {
		height: 250px;
	}

	.mini-blog {
		margin-top: 20px;
	}
}

.whatsapp-float {
	position: fixed;
	bottom: 70px;
	left: 20px;
	width: 50px;
	height: 50px;
	background: #25D366;
	color: #fff !important;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 30px;
	text-decoration: none;
	z-index: 9999;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
	transition: all 0.3s ease;
}

.whatsapp-float:hover {
	transform: scale(1.1);
	background: #1ebe5d;
}

/* Pulse Ring */
.whatsapp-float::before,
.whatsapp-float::after {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: 50%;
	background: rgba(37, 211, 102, 0.5);
	z-index: -1;
	animation: pulse-ring 2.5s linear infinite;
}

.whatsapp-float::after {
	animation-delay: 1.25s;
}

@keyframes pulse-ring {
	0% {
		transform: scale(1);
		opacity: 0.8;
	}

	100% {
		transform: scale(2.2);
		opacity: 0;
	}
}

@media (max-width:576px) {
	.whatsapp-float {
		width: 50px;
		height: 50px;
		font-size: 26px;
		right: 15px;

	}
}

.call-float {
	position: fixed;
	bottom: 140px;
	left: 20px;
	width: 50px;
	height: 50px;
	background: #007bff;
	color: #fff !important;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	text-decoration: none;
	z-index: 9999;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
	animation: phoneRing 1.5s infinite;
	transform-origin: center;
}

.call-float i {
	display: inline-block;
	transform: scaleX(-1) rotate(-15deg);
}

.call-float:hover {
	animation-play-state: paused;
	transform: scale(1.1);
}

@keyframes phoneRing {

	0%,
	100% {
		transform: rotate(0deg);
	}

	10% {
		transform: rotate(15deg);
	}

	20% {
		transform: rotate(-15deg);
	}

	30% {
		transform: rotate(12deg);
	}

	40% {
		transform: rotate(-12deg);
	}

	50% {
		transform: rotate(8deg);
	}

	60% {
		transform: rotate(-8deg);
	}

	70% {
		transform: rotate(4deg);
	}

	80% {
		transform: rotate(-4deg);
	}
}

.add-foo {
	display: flex;
	/* align-items: center; */
	margin-bottom: 25px;
}

.add-foo p a {
	position: relative;
	text-decoration: none;
}

.add-foo a:hover {
	text-decoration: underline;
}

.baa-border {
	border-top: 1px solid #ffffff0f;
	padding-top: 10px;
}

.hmb-contact-card {
	background: #fff;
	padding: 35px;
	border-radius: 20px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, .08);
}

.hmb-contact-title {
	font-size: 32px;
	font-weight: 700;
	margin-bottom: 30px;
	color: #0d2240;
}

.hmb-contact-item {
	display: flex;
	align-items: flex-start;
	gap: 15px;
	margin-bottom: 28px;
}

.hmb-contact-icon {
	width: 55px;
	height: 55px;
	border-radius: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	flex-shrink: 0;
}

.hmb-email-icon {
	background: #dfe8ff;
	color: #3366ff;
}

.hmb-phone-icon {
	background: #d7f1f7;
	color: #0aa6c2;
}

.hmb-whatsapp-icon {
	background: #daf8e5;
	color: #25D366;
}

.hmb-location-icon {
	background: #f0dfff;
	color: #a43cff;
}

.hmb-contact-details h4 {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 5px;
	color: #0d2240;
}

.hmb-contact-details a {
	text-decoration: none;
	color: #555;
	font-size: 15px;
}

.hmb-contact-details p {
	margin: 0;
	color: #555;
	font-size: 15px;
	line-height: 1.6;
}

.hmb-brochure-wrap {
	margin-top: 25px;
	padding-top: 25px;
	border-top: 1px solid #d6dfe3;
}

.hmb-brochure-btn {
	margin: auto;
	align-items: center;
	justify-content: center;
	display: flex;
	width: 50%;
}



@media(max-width:767px) {

	.hmb-contact-card {
		padding: 25px;
	}

	.hmb-contact-title {
		font-size: 26px;
	}

	.hmb-contact-icon {
		width: 48px;
		height: 48px;
		font-size: 18px;
	}
}

.hmb-cta-section {
	padding: 30px 0;
}

.hmb-cta-box {
	background: linear-gradient(135deg, #3c6c47 0%, #f8cd4a 100%);
	border-radius: 25px;
	padding: 60px 30px;
	text-align: center;
}

.hmb-cta-box h2 {
	color: #fff;
	font-size: 42px;
	font-weight: 700;
	margin-bottom: 15px;
}

.hmb-cta-box p {
	color: rgba(255, 255, 255, 0.9);
	font-size: 18px;
	max-width: 700px;
	margin: 0 auto 30px;
}

.hmb-cta-buttons {
	display: flex;
	justify-content: center;
	gap: 15px;
	flex-wrap: wrap;
}

.hmb-btn-primary {
	background: #fff;
	color: #3c6c47;
	padding: 15px 35px;
	border-radius: 45px;
	text-decoration: none;
	font-weight: 600;
	transition: .3s;
}

.hmb-btn-primary:hover {
	transform: translateY(-3px);
	color: #3c6c47;
}

.hmb-btn-outline {
	border: 2px solid #fff;
	color: #fff;
	padding: 15px 35px;
	border-radius: 50px;
	text-decoration: none;
	font-weight: 600;
	transition: .3s;
}

.hmb-btn-outline:hover {
	background: #fff;
	color: #3c6c47;
}

@media(max-width:768px) {

	.hmb-cta-box {
		padding: 40px 20px;
	}

	.hmb-cta-box h2 {
		font-size: 30px;
	}

	.hmb-cta-box p {
		font-size: 16px;
	}

	.hmb-btn-primary,
	.hmb-btn-outline {
		width: 100%;
	}
}

.jknh li {
	margin-bottom: 20px;
	width: fit-content;
	border-radius: 20px;
	padding: 2px 10px;
}

.jknh li:hover {
	background-color: var(--accent-color);
	border-radius: 20px;
}

.jknh li:hover span,
.jknh li:hover a {
	color: #fff;
}

.jknh li a,
.jknh li span {
	font-size: 15px;
}

.why-choose-section {
	background: linear-gradient(135deg, #f8cd4a 0%, #3c6c47 100%);
	overflow: hidden;
}

.why-wrapper {
	display: flex;
	align-items: stretch;
}

/* Left Image */
.why-image {
	width: 40%;
}

.why-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* Center Title */
.why-title {
	width: 120px;
	background: #3c6c47;
	display: flex;
	justify-content: center;
	align-items: center;
}

.why-title h2 {
	color: #fff;
	font-size: 55px;
	font-weight: 700;
	writing-mode: vertical-rl;
	transform: rotate(180deg);
	margin: 0;
}

/* Right Side */
.why-content {
	width: calc(60% - 120px);
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	position: relative;
}

.why-content::before {
	content: '';
	position: absolute;
	width: 1px;
	height: 80%;
	background: rgba(255, 255, 255, .15);
	left: 50%;
	top: 10%;
}

.why-content::after {
	content: '';
	position: absolute;
	width: 80%;
	height: 1px;
	background: rgba(255, 255, 255, .15);
	top: 50%;
	left: 10%;
}

.why-box {
	padding: 45px 50px;
	position: relative;
	color: #fff;

}

.why-box .icon-box {
	position: relative;
	border: 1px solid #fff;
	border-radius: 50%;
	width: 75px;
	height: 75px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	margin-right: 15px;
	transition: all 0.3s ease-in-out;
}

.why-box:hover .icon-box {
	border-color: transparent;
}

.why-box .icon-box::before {
	content: '';
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg, var(--accent-color) 0%, var(--gradient-color) 100%);
	top: 0;
	left: 0;
	transform: scale(0);
	transition: all 0.3s ease-in-out;
	border-radius: 50px;
}

.why-box:hover .icon-box:before {
	transform: scale(1);
}

.why-box .icon-box img {
	position: relative;
	z-index: 1;
	transition: all 0.4s ease-in-out;
	filter: brightness(0) invert(1);
}

.why-box:hover .icon-box img {
	filter: brightness(0) invert(1);
}


.why-number {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 55px;
	height: 55px;
	line-height: 55px;
	text-align: center;
	background: rgba(255, 255, 255, .1);
	border-radius: 50%;
	transform: translate(-50%, -50%);
	font-weight: 700;
}

.why-box h3 {
	font-size: 19px;
	color: #fff;
	margin-bottom: 5px;
	margin-top: 5px;
}

.why-box p {
	color: rgba(255, 255, 255, .75);
	line-height: 1.9;
	margin-bottom: 0;
}

/* ===== Laptop ===== */
@media(max-width:1200px) {

	.why-title {
		width: 90px;
	}

	.why-title h2 {
		font-size: 50px;
	}

	.why-box {
		padding: 40px 30px;
	}

}

/* ===== Tablet ===== */
@media(max-width:991px) {

	.why-wrapper {
		flex-direction: column;
	}

	.why-image {
		width: 100%;
		height: 400px;
	}

	.why-title {
		width: 100%;
		padding: 25px 0;
	}

	.why-title h2 {
		writing-mode: horizontal-tb;
		transform: none;
		font-size: 50px;
	}

	.why-content {
		width: 100%;
		grid-template-columns: repeat(2, 1fr);
	}

}

/* ===== Mobile ===== */
@media(max-width:767px) {

	.why-image {
		height: 300px;
	}

	.why-title h2 {
		font-size: 34px;
	}

	.why-content {
		grid-template-columns: 1fr;
	}

	.why-content::before,
	.why-content::after {
		display: none;
	}

	.why-box {
		padding: 35px 25px;
		text-align: center;
	}

	.why-number {
		position: relative;
		left: auto;
		top: auto;
		transform: none;
		margin: auto auto 20px;
	}

	.why-box h3 {
		font-size: 14px;
	}

	.why-box .icon-box {
		margin: auto;
	}

}

.cont-add {
	background-color: #f5f5f5;
	padding-top: 25px;
}

.hbhyb {
	margin: auto;
	text-align: center;
	margin-bottom: 20px;
}

.accordion-header {
	background-image: linear-gradient(to right, #3c6c47 16%, #1c632c 50%, #4e9a5f 100%);
	padding: 0px 10px;
	border-radius: 50px;
	box-shadow: 0px 0px 10px 0px var(--box-shadow-color);
}

/* PRODUCT AREA */

/* .product-wrapper {
	display: grid;
	grid-template-columns: 700px 1fr;
	gap: 40px;
	background: #fff;
	padding: 30px;
	border-radius: 20px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
} */

/* GALLERY */
.product-content a.btn-default {
	margin-top: 10px;
	margin-left:5px;
}

.product-gallery {
	display: flex;
	gap: 15px;
	position: relative;
}

.thumbnail-list {
	width: 90px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.thumbnail-list img {
	width: 80px;
	height: 80px;
	object-fit: cover;
	border: 2px solid #ddd;
	border-radius: 10px;
	cursor: pointer;
	transition: .3s;
}

.thumbnail-list img.active,
.thumbnail-list img:hover {
	border-color: var(--accent-color);
	transform: translateY(-3px);
}

.main-image-wrapper {
	width: 550px;
	height: 600px;
	position: relative;
	overflow: hidden;
	border: 1px solid #eee;
	border-radius: 15px;
	background: #fff;
	cursor: crosshair;
}

.main-image-wrapper img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.zoom-lens {
	position: absolute;
	width: 150px;
	height: 150px;
	border: 2px solid var(--white-color);
	background: rgba(255, 255, 255, 0.288);
	display: none;
	pointer-events: none;
	border-radius: 50%;
}

.zoom-result {
	width: 600px;
	height: 600px;
	border: 1px solid #ddd;
	border-radius: 15px;
	background-repeat: no-repeat;
	display: none;
	overflow: hidden;
}

/* CONTENT */

.product-content h1 {
	font-size: 30px;
	margin-bottom: 1px;
}

.rating {
	color: #ff9800;
	font-size: 18px;
	margin-bottom: 20px;
}

.price {
	display: flex;
	align-items: center;
	gap: 15px;
	margin-bottom: 20px;
}

.new-price {
	font-size: 38px;
	font-weight: 700;
}

.old-price {
	text-decoration: line-through;
	color: #999;
}

.discount {
	color: red;
	font-weight: 700;
}

.product-content p {
	line-height: 1.8;
	color: #666;
	margin-bottom: 5px;
}

.features {
	margin: 25px 0;
}

.features li {
	list-style: none;
	margin-bottom: 12px;
	padding-left: 25px;
	position: relative;
}

.features li:before {
	content: "✓";
	position: absolute;
	left: 0;
	color: var(--accent-color);
	font-weight: bold;
}

.btns {
	display: flex;
	gap: 15px;
	margin-top: 30px;
}

.btn-cart,
.btn-buy {
	padding: 15px 35px;
	text-decoration: none;
	border-radius: 10px;
	font-weight: 600;
	transition: .3s;
}

.btn-cart {
	border: 2px solid #000;
	color: #000;
}

.btn-buy {
	background: var(--accent-color);
	color: #fff;
}

.btn-cart:hover,
.btn-buy:hover {
	transform: translateY(-4px);
}

/* POPUP */

.image-popup {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, .95);
	display: none;
	justify-content: center;
	align-items: center;
	z-index: 99999;
}

.image-popup.active {
	display: flex;
}

.image-popup img {
	max-width: 90%;
	max-height: 90vh;
}

.close-popup {
	position: absolute;
	top: 20px;
	right: 30px;
	color: #fff;
	font-size: 55px;
	cursor: pointer;
}

.product-wrapper {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px;
}

.product-gallery {
	display: flex;
	width: 100%;
	gap: 15px;
}

.thumbnail-list {
	width: 90px;
	flex-shrink: 0;
}

.main-image-wrapper {
	width: calc(100% - 90px);
	height: 450px;
}

.zoom-result {
	position: absolute;
	left: 100%;
	top: 0;
	width: 600px;
	height: 400px;
	margin-left: 20px;
	z-index: 99;
}

.popup-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 60px;
	height: 60px;
	border: none;
	border-radius: 50%;
	background: rgba(255, 255, 255, .2);
	color: #fff;
	font-size: 28px;
	cursor: pointer;
}

.prev {
	left: 30px;
}

.next {
	right: 30px;
}

/* MOBILE */

@media(max-width:1200px) {

	.zoom-result {
		display: none !important;
	}

	.product-wrapper {
		grid-template-columns: 1fr;
	}

}

@media(max-width:768px) {

	.product-gallery {
		flex-direction: column-reverse;
		overflow: hidden;
	}

	.thumbnail-list {
		width: 100%;
		flex-direction: row;
		overflow-x: auto;
	}

	.main-image-wrapper {
		width: 100%;
		height: auto;
	}

	.product-content h1 {
		font-size: 28px;
	}

	.btns {
		flex-direction: column;
	}
}

.main-image-wrapper {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

.nav-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(0, 0, 0, 0.6);
	color: #fff;
	border: none;
	width: 45px;
	height: 45px;
	border-radius: 50%;
	cursor: pointer;
	font-size: 20px;
	z-index: 10;
}

.prev-btn {
	left: 10px;
}

.next-btn {
	right: 10px;
}

.nav-btn:hover {
	background: #000;
}

/* Product-page Nav-tbe */

.wt-tabs {
	background: #fff;
	border-radius: 15px;
	padding: 25px;
	box-shadow: 0 5px 10px rgba(0, 0, 0, .08);
}

.nav-tabs {
	display: flex;
	gap: 12px;
	margin: 0 0 25px;
	padding: 0;
	list-style: none;
	border: none;
}

.nav-tabs a {
	display: block;
	padding: 15px 30px;
	border-radius: 50px;
	background: #f1f3f5;
	color: #333;
	text-decoration: none;
	font-weight: 600;
	transition: .4s;
	line-height: 1em;
	font-size: 18px;
	box-shadow: 0 0px 2px rgba(0, 0, 0, .08);

}

.nav-tabs a:hover,
.nav-tabs a.active:hover {
	background-position: right center;
}

.nav-tabs a:hover,
.nav-tabs a.active {
	display: inline-block;
	font-size: 18px;
	font-weight: 600;
	line-height: 1em;
	color: var(--white-color);
	text-transform: capitalize;
	background-image: linear-gradient(to right, #3c6c47 16%, #f8cd4a 50%, #4e9a5f 100%);
	background-size: 200% auto;
	padding: 15px 30px;
	border-radius: 50px;
	border: none;
	transition: 0.3s ease-in-out;
	position: relative;
	overflow: hidden;
	z-index: 1;
	transform: translateY(-2px);
}

.nav-tabs {
	border: none !important;
}

/* Tablet */
@media (max-width: 768px) {
	.nav-tabs {
		gap: 10px;
	}

	.nav-tabs li {
		flex: 1 1 calc(50% - 10px);
	}

	.nav-tabs li a {
		display: block;
		text-align: center;
		width: 100%;
	}
}

/* Mobile */
@media (max-width: 576px) {
	.nav-tabs {
		flex-direction: column;
		gap: 8px;
	}

	.nav-tabs li {
		width: 100%;
	}

	.nav-tabs li a {
		display: block;
		width: 100%;
		text-align: center;
	}
}

.tab-pane.active {
	display: block;
	animation: fadeIn .5s ease forwards;
}

.tab-content>.active {

	text-align: justify;
}

.sotr-dic p {
	text-align: justify;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(20px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.site-list-style-two {
	margin: 0;
	padding: 0;
	list-style: none;
}

.site-list-style-two li {
	position: relative;
	padding: 5px 0 5px 30px;
	border-bottom: 1px solid #e9ecef;
	color: #555;
	font-size: 15px;
	line-height: 1.7;
}

.site-list-style-two li:last-child {
	border-bottom: none;
}

.site-list-style-two li:before {
	content: "✓";
	position: absolute;
	left: 0;
	top: 10px;
	width: 15px;
	height: 15px;
	line-height: 15px;
	text-align: center;
	background: var(--accent-color);
	color: #fff;
	font-size: 10px;
	font-weight: 700;
	border-radius: 50%;
}

.site-list-style-two li strong {
	color: #222;
	font-weight: 600;
}

.sotr-dic {
	background-color: #dddddd05;
	padding: 14px 0px;
	margin-bottom: 15px;
}

.sotr-dic p {
	margin-bottom: 0;
}

#callbackPopup .modal-content {
	border-radius: 20px;
	overflow: hidden;
	border: none;
	box-shadow: 0 15px 40px rgba(0, 0, 0, .15);
}

#callbackPopup .modal-content .modal-title {
	color: #fff;
}

#callbackPopup .modal-content h4 {
	margin-bottom: 10px;
	color: var(--accent-color);
	font-size:17px;
}

#callbackPopup .modal-content img {
	border-radius: 20px;
}

#callbackPopup .modal-header {
	border: none;
	padding: 20px 25px;
}

#callbackPopup .modal-body {
	padding: 30px;
}

#callbackPopup .form-control {
	height: 50px;
	border-radius: 12px;
}

#callbackPopup .btn-default {
	border-radius: 12px;
	padding: 12px 35px;
}

#callbackPopup .modal-dialog {
	max-width: 30%;
}

@media(max-width:768px) {
	#callbackPopup .modal-dialog {
		max-width: 100%;
	}
}

/* ==========================
   TERMS PAGE CSS
========================== */

.terms-page {
	padding: 30px 0;
	background: #f8fafc;
}

.project-single-content {
	background: #fff;
	padding: 50px;
	border-radius: 25px;
	box-shadow: 0 0px 5px rgba(0, 0, 0, 0.08);
}

.project-section-title h2 {
	font-size: 28px;
	font-weight: 700;
	color: #111;
	margin-bottom: 15px;
	position: relative;
}

.project-section-title h2 span {
	color: var(--accent-color);
}

.project-section-title p {
	color: #666;
	max-width: 700px;
	margin: auto;
}

.project-values-content {
	background: #fff;
	border: 1px solid #edf0f5;
	border-radius: 18px;
	padding: 30px;
	margin-bottom: 25px;
	transition: all .4s ease;
	animation: fadeUp .8s ease forwards;
	cursor: pointer;
}

.project-values-content:hover {
	transform: translateY(-8px);
	box-shadow: 0 0px 5px rgba(0, 0, 0, .08);
}

.project-values-content h3 {
	font-size: 26px;
	font-weight: 600;
	color: var(--accent-color);
	margin-bottom: 20px;
	position: relative;
	padding-left: 20px;
}

.project-values-content h3::before {
	content: '';
	width: 8px;
	height: 100%;
	background: var(--accent-color);
	position: absolute;
	left: 0;
	top: 0;
	border-radius: 10px;
}

.project-values-content p {
	color: #666;
	line-height: 1.9;
	margin-bottom: 15px;
}

.project-values-content ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.project-values-content ul li {
	position: relative;
	padding-left: 38px;
	margin-bottom: 14px;
	color: #555;
	line-height: 1.8;
	transition: .3s;
}

.project-values-content ul li:hover {
	transform: translateX(8px);
}

.project-values-content ul li::before {
	content: '✓';
	position: absolute;
	left: 0;
	top: 2px;
	width: 24px;
	height: 24px;
	line-height: 24px;
	text-align: center;
	background: var(--accent-color);
	color: #fff;
	border-radius: 50%;
	font-size: 12px;
	font-weight: bold;
}

/* Animation */
@keyframes fadeUp {
	from {
		opacity: 0;
		transform: translateY(40px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Responsive */
@media(max-width:991px) {

	.project-single-content {
		padding: 35px;
	}

	.project-section-title h2 {
		font-size: 38px;
	}
}

@media(max-width:767px) {

	.terms-page {
		padding: 70px 0;
	}

	.project-single-content {
		padding: 25px;
	}

	.project-section-title h2 {
		font-size: 30px;
	}

	.project-values-content {
		padding: 20px;
	}

	.project-values-content h3 {
		font-size: 22px;
	}
}

/* Main Section */
.mesh-calculator-section {
	max-width: 1450px;
	margin: auto;
	padding: 0px 25px;
}

.mesh-main-grid {
	display: grid;
	grid-template-columns: 2.15fr 1fr;
	gap: 28px;
	align-items: start;
}

/* Main Calculator Card */
.mesh-card {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: 18px;
	padding: 42px;
	box-shadow: 0 5px 10px rgba(19, 61, 40, 0.06);
	animation: fadeUp 0.7s ease both;
	transition: 0.35s ease;
}

.mesh-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 5px 10px rgba(19, 61, 40, 0.06);
}

.mesh-title {
	font-size: 28px;
	font-weight: 700;
	color: var(--text);
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 32px;
}

.mesh-title i {
	color: var(--green);
	font-size: 24px;
}

/* Form */
.mesh-form-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 32px;
	margin-bottom: 30px;
}

.mesh-form-column {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.mesh-field label {
	display: block;
	font-size: 13px;
	color: #52606d;
	letter-spacing: 0.3px;
	font-weight: 700;
	margin-bottom: 9px;
}

.mesh-field input,
.mesh-field select {
	width: 100%;
	height: 52px;
	border: 1px solid var(--border);
	border-radius: 30px;
	background: var(--light-bg);
	padding: 0 20px;
	outline: none;
	font-size: 15px;
	color: #263238;
	transition: 0.25s ease;
}

.mesh-field input:focus,
.mesh-field select:focus {
	border-color: var(--gold);
	background: #fff;
	box-shadow: 0 0 0 4px rgba(232, 173, 28, 0.14);
}

.lury {
	margin-top: 29px;
	min-height: 55px;
}

/* Button */
.mesh-recalculate-btn {
	width: 100%;
	min-height: 52px;
	margin-top: 29px;
	border: none;
	border-radius: 8px;
	background: var(--green);
	color: #fff;
	cursor: pointer;
	font-size: 14px;
	font-weight: 700;
	transition: 0.3s ease;
	position: relative;
	overflow: hidden;
}

.mesh-recalculate-btn i {
	margin-left: 8px;
}

.mesh-recalculate-btn::before {
	content: "";
	width: 38px;
	height: 170%;
	position: absolute;
	top: -35%;
	left: -80px;
	background: rgba(255, 255, 255, 0.25);
	transform: skewX(-20deg);
	transition: 0.6s ease;
}

.mesh-recalculate-btn:hover::before {
	left: 115%;
}

.mesh-recalculate-btn:hover {
	background: var(--green-dark);
	transform: translateY(-3px);
	box-shadow: 0 8px 18px rgba(25, 91, 55, 0.25);
}

.mesh-recalculate-btn.loading {
	opacity: 0.75;
	pointer-events: none;
}

.mesh-recalculate-btn.loading i {
	animation: rotateIcon 1s linear infinite;
}

/* Result Area */
.mesh-results {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	background: #f5f7f6;
	border-left: 5px solid var(--gold);
	border-radius: 10px;
	padding: 24px 16px;
}

.mesh-result-item {
	padding: 0 18px;
	border-right: 1px solid #dedede;
}

.mesh-result-item:last-child {
	border-right: none;
}

.mesh-result-label {
	display: block;
	font-size: 11px;
	color: #667085;
	font-weight: 700;
	letter-spacing: 0.6px;
	text-transform: uppercase;
	margin-bottom: 8px;
}

.mesh-result-value {
	color: var(--text);
	font-size: 32px;
	font-weight: 800;
	line-height: 1;
}

.mesh-result-value.total {
	color: var(--green);
}

.mesh-bottom-row {
	margin-top: 26px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.mesh-formula {
	font-size: 12px;
	color: #7d8791;
	font-style: italic;
}

.mesh-whatsapp-btn {
	border: 2px solid var(--green);
	border-radius: 30px;
	color: var(--green);
	text-decoration: none;
	padding: 12px 20px;
	font-size: 12px;
	font-weight: 700;
	white-space: nowrap;
	transition: 0.3s ease;
}

.mesh-whatsapp-btn i {
	margin-right: 6px;
}

.mesh-whatsapp-btn:hover {
	background: var(--green);
	color: #fff;
	transform: translateY(-3px);
	box-shadow: 0 8px 16px rgba(25, 91, 55, 0.18);
}

/* Sidebar Card */
.mesh-side-box {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: 18px;
	padding: 28px;
	box-shadow: 0 5px 10px rgba(19, 61, 40, 0.06);
	animation: fadeUp 0.8s ease both;
}

.mesh-side-heading {
	display: inline-block;
	font-size: 20px;
	color: var(--text);
	margin-bottom: 20px;
	padding-bottom: 5px;
	border-bottom: 3px solid var(--gold);
}

/* Tables */
.mesh-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 14px;
}

.mesh-table th {
	color: var(--text);
	font-size: 13px;
	padding: 9px 5px;
	text-align: center;
	border-bottom: 1px solid #e4e4e4;
}

.mesh-table td {
	color: #344054;
	padding: 8px 5px;
	text-align: center;
	border-bottom: 1px solid #eeeeee;
}

.mesh-table tbody tr {
	transition: 0.25s ease;
}

.mesh-table tbody tr:hover {
	background: #eff8f1;
	transform: scale(1.015);
}

/* Note Box */
.mesh-note {
	margin-top: 18px;
	padding: 22px;
	background: #fff5f5;
	border-left: 5px solid var(--danger);
	border-radius: 12px;
	display: flex;
	align-items: flex-start;
	gap: 12px;
	animation: fadeUp 0.9s ease both;
}

.mesh-note i {
	color: var(--danger);
	font-size: 20px;
	margin-top: 2px;
}

.mesh-note p {
	font-size: 12px;
	line-height: 1.7;
	color: #5c6470;
}

/* Bottom Cards */
.mesh-bottom-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 28px;
	margin-top: 38px;
}

.mesh-conversion-card {
	border: 1px solid var(--border);
	border-radius: 18px;
	background: var(--white);
	padding: 32px;
	box-shadow: 0 5px 10px rgba(19, 61, 40, 0.06);
	transition: 0.35s ease;
	animation: fadeUp 1s ease both;
}

.mesh-conversion-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 5px 10px rgba(19, 61, 40, 0.06);
}

.mesh-conversion-card .mesh-title {
	font-size: 22px;
	margin-bottom: 22px;
}

/* Animation */
@keyframes fadeUp {
	from {
		opacity: 0;
		transform: translateY(25px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes rotateIcon {
	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(360deg);
	}
}

/* Tablet */
@media (max-width: 991px) {
	.mesh-main-grid {
		grid-template-columns: 1fr;
	}
}

/* Mobile */
@media (max-width: 767px) {
	.mesh-calculator-section {
		padding: 35px 15px;
	}

	.mesh-card,
	.mesh-side-box,
	.mesh-conversion-card {
		padding: 22px;
		border-radius: 14px;
	}

	.mesh-title {
		font-size: 22px;
		line-height: 1.35;
	}

	.mesh-title i {
		font-size: 19px;
	}

	.mesh-form-grid,
	.mesh-bottom-grid {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.mesh-field input,
	.mesh-field select {
		height: 48px;
		font-size: 14px;
	}

	.mesh-recalculate-btn {
		min-height: 48px;
		margin-top: 10px;
	}

	.mesh-results {
		grid-template-columns: 1fr;
		gap: 15px;
		padding: 20px 14px;
	}

	.mesh-result-item {
		border-right: none;
		border-bottom: 1px solid #ddd;
		padding: 0 8px 14px;
	}

	.mesh-result-item:last-child {
		border-bottom: none;
		padding-bottom: 0;
	}

	.mesh-result-value {
		font-size: 28px;
	}

	.mesh-bottom-row {
		flex-direction: column;
		align-items: stretch;
	}

	.mesh-whatsapp-btn {
		text-align: center;
		padding: 13px 15px;
	}

	.mesh-table {
		font-size: 13px;
	}

	.mesh-table th,
	.mesh-table td {
		padding: 8px 3px;
	}
}

/* ==============================
       INDUSTRIAL IMAGE GRID SECTION
    ============================== */

.industrial-gallery-section {
	padding: 70px 20px;
	background: #ffffff;
	border-top: 1px solid #e3e7e4;
	border-bottom: 1px solid #e3e7e4;
}

.industrial-gallery-container {
	max-width: 1280px;
	margin: 0 auto;
}

.industrial-gallery-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.industrial-gallery-card {
	position: relative;
	min-height: 390px;
	overflow: hidden;
	cursor: pointer;
	border-radius: 14px;
	background: #173f2b;
	box-shadow: 0 10px 25px rgba(14, 57, 35, 0.12);
	animation: galleryFadeUp 0.8s ease both;
	transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.industrial-gallery-card:nth-child(2) {
	animation-delay: 0.15s;
}

.industrial-gallery-card:nth-child(3) {
	animation-delay: 0.3s;
}

.industrial-gallery-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 22px 40px rgba(14, 57, 35, 0.22);
}

.industrial-gallery-image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	transition: transform 0.7s ease, filter 0.5s ease;
}

.industrial-gallery-card:hover .industrial-gallery-image {
	transform: scale(1.12);
	filter: brightness(0.72);
}

/* dark overlay */
.industrial-gallery-card::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(to top,
			rgba(7, 35, 22, 0.78) 0%,
			rgba(7, 35, 22, 0.18) 48%,
			rgba(7, 35, 22, 0.03) 100%);
	opacity: 0;
	transition: opacity 0.4s ease;
}

.industrial-gallery-card:hover::after {
	opacity: 1;
}

/* Label */
.industrial-gallery-label {
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 2;
	background: #1e5b39;
	color: #ffffff;
	padding: 16px 22px;
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 1px;
	border-radius: 0 12px 0 0;
	transition: background 0.3s ease, padding 0.35s ease;
}

.industrial-gallery-card.gold-label .industrial-gallery-label {
	background: #e1b53e;
	color: #152d21;
}

.industrial-gallery-card:hover .industrial-gallery-label {
	padding-right: 42px;
	background: #123f28;
}

.industrial-gallery-card.gold-label:hover .industrial-gallery-label {
	background: #f0c64d;
}

/* Hover download text */
.industrial-gallery-download {
	position: absolute;
	left: 24px;
	top: 24px;
	z-index: 3;
	background: #ffffff;
	color: #195b37;
	padding: 11px 14px;
	border-radius: 8px;
	font-size: 12px;
	font-weight: 700;
	opacity: 0;
	transform: translateY(-15px);
	transition: all 0.35s ease;
	box-shadow: 0 8px 18px rgba(0, 0, 0, 0.14);
}

.industrial-gallery-download i {
	margin-right: 7px;
}

.industrial-gallery-card:hover .industrial-gallery-download {
	opacity: 1;
	transform: translateY(0);
}

/* ==============================
   DOWNLOAD BROCHURE MODAL FIX
============================== */

.brochure-modal {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 20px;
	background: rgba(8, 30, 19, 0.72);
	backdrop-filter: blur(5px);

	/* Screen ke andar modal rahega */
	overflow-y: auto;
}

.brochure-modal.active {
	display: flex;
	animation: modalFadeIn 0.3s ease both;
}

.brochure-modal-box {
	width: 100%;
	max-width: 520px;
	background: #ffffff;
	border-radius: 18px;
	padding: 30px 35px;
	position: relative;
	box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
	animation: modalPop 0.35s ease both;
}

/* Close button scroll karte waqt upar dikhega */
.brochure-close {
	position: sticky;
	float: right;
	top: 0;
	z-index: 5;
	margin-top: -12px;
	margin-right: -12px;
	width: 36px;
	height: 36px;
	border: none;
	border-radius: 50%;
	background: #f1f4f2;
	color: #1c5133;
	font-size: 19px;
	cursor: pointer;
	transition: 0.25s ease;
}

.brochure-close:hover {
	background: #195b37;
	color: #fff;
	transform: rotate(90deg);
}

.brochure-modal-icon {
	width: 56px;
	height: 56px;
	border-radius: 14px;
	background: #e9f3ec;
	color: #195b37;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	margin-bottom: 14px;
}

.brochure-modal-box h3 {
	font-size: 26px;
	color: #143e29;
	margin-bottom: 8px;
}

.brochure-modal-box>p {
	color: #667085;
	font-size: 14px;
	line-height: 1.6;
	margin-bottom: 18px;
}

.brochure-form-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px;
}

.brochure-field.full {
	grid-column: 1 / -1;
}

.brochure-field label {
	display: block;
	margin-bottom: 7px;
	color: #344054;
	font-size: 12px;
	font-weight: 700;
}

.brochure-field input,
.brochure-field select,
.brochure-field textarea {
	width: 100%;
	border: 1px solid #d8dfdb;
	border-radius: 8px;
	padding: 12px 13px;
	outline: none;
	font-size: 14px;
	transition: 0.25s ease;
	font-family: inherit;
}

.brochure-field textarea {
	min-height: 72px;
	resize: vertical;
}

.brochure-field input:focus,
.brochure-field select:focus,
.brochure-field textarea:focus {
	border-color: #e1b53e;
	box-shadow: 0 0 0 4px rgba(225, 181, 62, 0.16);
}

.brochure-submit-btn {
	width: 100%;
	border: none;
	border-radius: 8px;
	background: #195b37;
	color: #fff;
	padding: 14px;
	margin-top: 18px;
	cursor: pointer;
	font-size: 14px;
	font-weight: 700;
	transition: 0.3s ease;
}

.brochure-submit-btn:hover {
	background: #103f27;
	transform: translateY(-2px);
	box-shadow: 0 10px 18px rgba(25, 91, 55, 0.22);
}

@keyframes galleryFadeUp {
	from {
		opacity: 0;
		transform: translateY(35px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes modalFadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@keyframes modalPop {
	from {
		opacity: 0;
		transform: scale(0.9) translateY(20px);
	}

	to {
		opacity: 1;
		transform: scale(1) translateY(0);
	}
}

@media (max-width: 991px) {
	.industrial-gallery-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 600px) {
	.industrial-gallery-section {
		padding: 45px 15px;
	}

	.industrial-gallery-grid {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.industrial-gallery-card {
		min-height: 330px;
	}

	.industrial-gallery-label {
		font-size: 13px;
		padding: 14px 17px;
	}

	.brochure-modal-box {
		padding: 28px 20px;
	}

	.brochure-modal-box h3 {
		font-size: 23px;
	}

	.brochure-form-grid {
		grid-template-columns: 1fr;
	}
}

.hmb-expertise-section {
	background: #003b2f;
	padding: 85px 20px;
	overflow: hidden;
	position: relative;
}

.hmb-expertise-section::before {
	content: "";
	position: absolute;
	width: 520px;
	height: 520px;
	right: -180px;
	top: -180px;
	border: 1px solid rgba(229, 187, 59, 0.16);
	border-radius: 50%;
	box-shadow:
		0 0 0 55px rgba(229, 187, 59, 0.035),
		0 0 0 110px rgba(229, 187, 59, 0.025);
	pointer-events: none;
}

.hmb-expertise-container {
	max-width: 1280px;
	margin: auto;
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: 1.05fr 1fr;
	gap: 55px;
	align-items: center;
}

/* LEFT CONTENT */
.hmb-expertise-tag {
	color: #e7bd3f;
	font-size: 13px;
	letter-spacing: 2px;
	font-weight: 700;
	text-transform: uppercase;
	margin: 0 0 14px;
}

.hmb-expertise-title {
	color: #fff;
	font-size: clamp(38px, 4vw, 62px);
	line-height: 1.1;
	font-weight: 800;
	margin: 0 0 26px;
	max-width: 650px;
}

.hmb-expertise-title span {
	color: #e7bd3f;
}

.hmb-expertise-description {
	color: #b6d0c7;
	max-width: 630px;
	font-size: 17px;
	line-height: 1.75;
	margin: 0;
}

.hmb-stats-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 28px 45px;
	margin-top: 42px;
}

.hmb-stat-item {
	border-left: 4px solid #e7bd3f;
	padding-left: 20px;
	transition: transform 0.35s ease;
}

.hmb-stat-item:hover {
	transform: translateX(8px);
}

.hmb-stat-number {
	color: #fff;
	font-size: clamp(30px, 3vw, 42px);
	line-height: 1;
	font-weight: 800;
	margin-bottom: 10px;
}

.hmb-stat-label {
	color: #b6d0c7;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 1px;
	line-height: 1.4;
	text-transform: uppercase;
}

/* RIGHT BENTO GRID */
.hmb-bento-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	animation: hmbSlideRight 0.9s ease both;
	animation-delay: 0.2s;
}

.hmb-bento-left {
	padding-top: 46px;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.hmb-bento-right {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.hmb-image-card,
.hmb-info-card {
	overflow: hidden;
	border-radius: 14px;
	transition: transform 0.45s ease, box-shadow 0.45s ease;
}

.hmb-image-card {
	background: #fff;
	padding: 4px;
	min-height: 255px;
}

.hmb-image-card img {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 247px;
	object-fit: cover;
	border-radius: 10px;
	filter: grayscale(100%);
	transition: transform 0.7s ease, filter 0.5s ease;
}

.hmb-image-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 18px 35px rgba(0, 0, 0, 0.25);
}

.hmb-image-card:hover img {
	transform: scale(1.1);
	filter: grayscale(15%);
}

.hmb-info-card {
	min-height: 152px;
	padding: 26px;
	position: relative;
}

.hmb-info-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 18px 35px rgba(0, 0, 0, 0.22);
}

.hmb-info-card.green {
	background: #245d38;
}

.hmb-info-card.gold {
	background: #e3bd43;
	color: #06382c;
}

.hmb-info-icon {
	font-size: 25px;
	margin-bottom: 16px;
	display: block;
}

.hmb-info-card.green .hmb-info-icon {
	color: #e7bd3f;
}

.hmb-info-card.gold .hmb-info-icon {
	color: #003b2f;
}

.hmb-info-card h4 {
	font-size: 17px;
	line-height: 1.35;
	margin: 0 0 10px;
	font-weight: 800;
	text-transform: uppercase;
}

.hmb-info-card.green h4 {
	color: #fff;
}

.hmb-info-card p {
	font-size: 13px;
	line-height: 1.5;
	margin: 0;
}

.hmb-info-card.green p {
	color: #b8d2c8;
}

.hmb-info-card.gold p {
	color: #174d3b;
	font-weight: 500;
}

/* CSS ONLY LOAD ANIMATION */
.hmb-left-content {
	animation: hmbSlideLeft 0.85s ease both;
}

.hmb-stat-item {
	animation: hmbFadeUp 0.7s ease both;
}

.hmb-stat-item:nth-child(1) {
	animation-delay: 0.25s;
}

.hmb-stat-item:nth-child(2) {
	animation-delay: 0.35s;
}

.hmb-stat-item:nth-child(3) {
	animation-delay: 0.45s;
}

.hmb-stat-item:nth-child(4) {
	animation-delay: 0.55s;
}

@keyframes hmbSlideLeft {
	from {
		opacity: 0;
		transform: translateX(-55px);
	}

	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes hmbSlideRight {
	from {
		opacity: 0;
		transform: translateX(55px);
	}

	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes hmbFadeUp {
	from {
		opacity: 0;
		transform: translateY(25px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (max-width: 991px) {
	.hmb-expertise-section {
		padding: 65px 20px;
	}

	.hmb-expertise-container {
		grid-template-columns: 1fr;
		gap: 45px;
	}

	.hmb-bento-grid {
		max-width: 650px;
	}
}

@media (max-width: 600px) {
	.hmb-expertise-section {
		padding: 55px 15px;
	}

	.hmb-expertise-title {
		font-size: 37px;
	}

	.hmb-expertise-description {
		font-size: 15px;
	}

	.hmb-stats-grid {
		gap: 22px 15px;
		margin-top: 32px;
	}

	.hmb-stat-item {
		padding-left: 13px;
	}

	.hmb-stat-number {
		font-size: 30px;
	}

	.hmb-stat-label {
		font-size: 11px;
	}

	.hmb-bento-grid {
		gap: 10px;
	}

	.hmb-bento-left {
		padding-top: 30px;
		gap: 10px;
	}

	.hmb-bento-right {
		gap: 10px;
	}

	.hmb-image-card {
		min-height: 180px;
	}

	.hmb-image-card img {
		min-height: 172px;
	}

	.hmb-info-card {
		min-height: 135px;
		padding: 16px;
	}

	.hmb-info-card h4 {
		font-size: 13px;
	}

	.hmb-info-card p {
		font-size: 11px;
	}

	.hmb-info-icon {
		font-size: 19px;
		margin-bottom: 10px;
	}
}

.brochure-list-section {
	padding: 70px 20px;
	position: relative;
	overflow: hidden;
	isolation: isolate;

	/* Full section dotted background */
	background-color: #ffffff;
	background-image:
		radial-gradient(circle, rgba(218, 218, 218, 0.38) 2px, transparent 2.6px),
		radial-gradient(circle, rgba(247, 247, 247, 0.22) 3px, transparent 3.7px),
		radial-gradient(circle, rgba(241, 241, 241, 0.35) 2px, transparent 2.8px);

	background-size:
		24px 24px,
		42px 42px,
		60px 60px;

	background-position:
		0 0,
		12px 16px,
		28px 32px;

	animation: fullDotsMove 12s linear infinite;
}

/* Center ko clean / white rakhega, image jaisa effect */
.brochure-list-section::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	pointer-events: none;

	background: radial-gradient(ellipse at center,
			rgba(255, 255, 255, .98) 0%,
			rgba(255, 255, 255, .94) 28%,
			rgba(255, 255, 255, .55) 52%,
			rgba(245, 245, 245, 0) 82%);
}

/* List content always above background */
.brochure-list-container {
	position: relative;
	z-index: 2;
}

@keyframes fullDotsMove {
	from {
		background-position:
			0 0,
			12px 16px,
			28px 32px;
	}

	to {
		background-position:
			24px 24px,
			54px 58px,
			88px 92px;
	}
}

@media (max-width: 767px) {
	.brochure-list-section {
		padding: 50px 15px;
		background-size:
			18px 18px,
			32px 32px,
			46px 46px;
	}
}

.brochure-list-container {
	max-width: 100%;
	margin: auto;
}

.brochure-list {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.brochure-list-item {
	min-height: 64px;
	padding: 10px 20px;
	background: #f3f3f3;
	color: #071c2c;
	display: flex;
	align-items: center;
	gap: 10px;
	cursor: pointer;
	font-family: Arial, sans-serif;
	font-size: 16px;
	font-weight: 500;
	border-left: 4px solid transparent;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
	margin-bottom: 15px;
	border-radius: 40px;
	border-left-color: #e5b93e;
}

.brochure-list-item span {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	/* sirf 2 line */
	overflow: hidden;
	text-overflow: ellipsis;
	line-height: 1.5;
	text-transform: capitalize;
	font-size: 15px;
	font-family: "Open Sans", sans-serif;
}

.brochure-list-item::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 0;
	height: 100%;
	background: var(--accent-color);
	transition: width 0.35s ease;
	z-index: 0;
}

.brochure-list-item span,
.brochure-list-item i {
	position: relative;
	z-index: 1;
}

.brochure-list-item i {
	color: red;
	font-weight: 900;
}



.brochure-list-item:hover::before {
	width: 100%;
}

.brochure-list-item:hover {
	color: #ffffff;
	transform: translateX(8px);
	box-shadow: 0 5px 10px rgba(7, 90, 158, 0.18);
}

.brochure-list-item:hover i {
	color: #fff;
}

/* .brochure-list-item.active {
	background: var(--accent-color);
	color: #ffffff;
	border-left-color: #e5b93e;
} */

.brochure-pdf-icon {
	font-size: 18px;
	color: inherit;
	flex-shrink: 0;
}

@media (max-width: 576px) {
	.brochure-list-section {
		padding: 35px 15px;
	}

	.brochure-list {
		gap: 12px;
	}

	.brochure-list-item {
		min-height: 58px;
		padding: 14px 15px;
		font-size: 13px;
		line-height: 1.5;
		align-items: flex-start;
	}

	.brochure-pdf-icon {
		font-size: 17px;
		margin-top: 2px;
	}
}
.iyert P{
    text-align:left !important;
    color: #000 !important;
    line-height: 32px;
    font-size: 15px;
}
footer{
    	box-shadow: 0 5px 20px rgba(0, 0, 0, .08);
}
.carousel-indicators{
    bottom:-15px !important;
}
.wt-img-effect {
    overflow: hidden;
    position: relative;
}

.wt-img-effect img {
    width: 100%;
    object-fit: cover;
    transition: transform 8s ease;
    transform: scale(1);
    cursor:pointer;
    padding: 15px 10px;
    border-radius: 20px 20px 0px 0px;
}

.wt-img-effect:hover img {
    transform: scale(1.15);
}