/* ----------------------------------------------------------------------------------------
* Author        : We Cadence
* File          : CSS File
* Version       : 1.0
* ---------------------------------------------------------------------------------------- */
/* INDEX
----------------------------------------------------------------------------------------
01. Global Variables
02. General css
03. Header css
04. Hero css
05. Scrolling Ticker css
06. About Us css
07. Our Services css
08. Why Choose Us css
09. Intro Video css
10. What We Do css
11. Our Facts css
12. Our Potential css
13. Our Testimonials css
14. Our Goals css
15. Our FAQs css
16. Our Blog css
17. Footer css
18. About Us Page css 
19. Services Page css 
20. Service Single css 
21. Blog Archive css 
22. Blog Single css 
23. Our Products css
24. Product Single css
25. Team Page css 
26. Team Single css 
27. Testimonials Page css 
28. Image Gallery css 
29. Video Gallery css 
30. FAQs Page css 
31. Contact Us Page css 
32. 404 Error Page css 
33. Responsive css 
-------------------------------------------------------------------------------------- */

/************************************/
/*** 	 01. Global Variables	  ***/
/************************************/

:root {
	--primary-color: #415041;
	--bg-color: #FFFAE9;
	--text-color: #626C6D;
	--accent-color: #b9c938;
	--white-color: #FFFFFF;
	--divider-color: #18555C1A;
	--dark-divider-color: #FFFFFF1A;
	--error-color: rgb(230, 87, 87);
	--default-font: "Anek Bangla", sans-serif;
}

/************************************/
/*** 	   02. General css		  ***/
/************************************/

body {
	position: relative;
	font-family: var(--default-font);
	font-size: 18px;
	font-weight: 400;
	line-height: 1.2em;
	color: var(--text-color);
	background: var(--bg-color);
}

::-webkit-scrollbar-track {
	background-color: var(--secondary-color);
	border-left: 1px solid var(--secondary-color);
}

::-webkit-scrollbar {
	width: 7px;
	background-color: var(--secondary-color);
}

::-webkit-scrollbar-thumb {
	background: var(--primary-color);
}

::selection {
	color: var(--primary-color);
	background-color: var(--accent-color);
	filter: invert(1);
}

p {
	line-height: 1.6em;
	/* margin-bottom: 1.5em; */
}

p.intro {
    margin-top: 20px;
    font-size: 16px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	font-weight: 600;
	line-height: 1.2em;
	color: #000;
}

figure {
	margin: 0;
}

img {
	max-width: 100%;
}

a {
	text-decoration: none;
}

a:hover {
	text-decoration: none;
	outline: 0;
}

a:focus {
	text-decoration: none;
	outline: 0;
}

html,
body {
	width: 100%;
	overflow-x: hidden;
}

.container {
	width: 100%;
	max-width: 1500px;
	margin: 0 auto;
	padding: 0 20px;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
	padding-right: 15px;
	padding-left: 15px;
}

.image-anime {
	position: relative;
	overflow: hidden;
}

.image-anime:after {
	content: "";
	position: absolute;
	width: 200%;
	height: 0%;
	left: 50%;
	top: 50%;
	background-color: rgba(255, 255, 255, .3);
	transform: translate(-50%, -50%) rotate(-45deg);
	z-index: 1;
}

.image-anime:hover:after {
	height: 250%;
	transition: all 600ms linear;
	background-color: transparent;
}

.reveal {
	position: relative;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	visibility: hidden;
	overflow: hidden;
}

.reveal img {
	height: 100%;
	width: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-webkit-transform-origin: left;
	transform-origin: left;
}

.row {
	margin-right: -15px;
	margin-left: -15px;
}

.row>* {
	padding-right: 15px;
	padding-left: 15px;
}

.row.no-gutters {
	margin-right: 0px;
	margin-left: 0px;
}

.row.no-gutters>* {
	padding-right: 0px;
	padding-left: 0px;
}

.btn-default {
	position: relative;
	display: inline-block;
	font-size: 18px;
	font-weight: 600;
	line-height: 1em;
	text-transform: capitalize;
	color: var(--black);
	background: var(--accent-color);
	border-radius: 10px;
	padding: 17px 52px 17px 20px;
	border: none;
	overflow: hidden;
	outline: none;
	transition: all 0.4s ease-in-out;
	z-index: 1;
	margin: 5px 0px 10px;
}

.btn-default:hover {
	color: var(--white-color);
}

.btn-default::before {
	content: '';
	position: absolute;
	top: 50%;
	right: 6px;
	width: 40px;
	height: 40px;
	background-color: var(--primary-color);
	background-image: url('../images/arrow-white.svg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 20px auto;
	border-radius: 6px;
	transform: translateY(-50%);
	transition: all 0.4s ease-in-out;
}

.btn-default:hover::before {
	background-color: var(--accent-color);
}

.btn-default::after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: 0;
	height: 100%;
	background: var(--primary-color);
	z-index: -1;
	transition: all 0.4s ease-in-out;
}

.btn-default:hover::after {
	right: auto;
	left: 0;
	width: 100%;
}

.readmore-btn {
	position: relative;
	font-size: 18px;
	font-weight: 600;
	line-height: 1.2em;
	text-transform: capitalize;
	color: var(--accent-color);
	padding-right: 28px;
	transition: all 0.3s ease-in-out;
}

.readmore-btn:hover {
	color: var(--accent-color);
}

.readmore-btn::before {
	content: '';
	position: absolute;
	top: 50%;
	right: 0;
	background-image: url('../images/arrow-accent.svg');
	background-repeat: no-repeat;
	background-size: cover;
	width: 20px;
	height: 20px;
	transform: translate(-3px, -50%);
	transition: all 0.3s ease-in-out;
}

.readmore-btn:hover::before {
	transform: translate(0px, -50%);
}

.cb-cursor:before {
	background: var(--accent-color);
}

.preloader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1000;
	background: var(--primary-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);
	}
}

.dark-section {
	background-color: #415041;
}

.section-row {
	margin-bottom: 30px;
}

.section-row .section-title {
	margin-bottom: 0;
}

.section-row .section-title.section-title-center {
	width: 100%;
	max-width: 700px;
	margin: 0 auto;
	text-align: center;
}

.section-btn {
	text-align: right;
}

.section-content-btn .section-btn {
	margin-top: 30px;
	text-align: left;
}

.section-title-content p {
	margin-bottom: 20px;
}

.section-title-content p:last-child {
	margin-bottom: 0;
}

.section-title {
	margin-bottom: 19px;
}

.section-title h3 {
	background-image: url('../images/icon-sub-heading.svg');
	background-repeat: no-repeat;
	background-position: left center;
	background-size: 20px auto;
	display: inline-block;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.2em;
	line-height: normal;
	text-transform: uppercase;
	color: var(--primary-color);
	padding-left: 30px;
	margin-bottom: 10px;
}

.section-title h1 {
	font-size: 55px;
	font-weight: 700;
	line-height: 1.1em;
	margin-bottom: 0;
	cursor: none;
}

.section-title h2 {
	font-size: 35px;
	font-weight: 700;
	line-height: 1.1em;
	margin-bottom: 0;
	cursor: none;
}

.section-title p {
	margin-top: 20px;
	margin-bottom: 0;
}

.dark-section .section-title h3,
.dark-section .section-title h1,
.dark-section .section-title h2,
.dark-section .section-title p,
.dark-section .section-title-content p {
	color: var(--white-color);
}

.help-block.with-errors ul {
	margin: 0;
	text-align: left;
}

.help-block.with-errors ul li {
	color: var(--error-color);
	font-weight: 500;
	font-size: 14px;
}

/************************************/
/**** 	   03. Header css		 ****/
/************************************/

header.main-header {
	position: absolute;
	top: 0;
	width: 100%;
	border-bottom: 1px solid var(--dark-divider-color);
	z-index: 100;
}

header.main-header .header-sticky {
	position: relative;
	top: 0;
	width: 100%;
	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(--primary-color);
	border-bottom: 1px solid var(--dark-divider-color);
	padding: 0 15px;
}

.navbar {
	padding: 0px 0px 0px;
	align-items: center;
}

.navbar-brand {
	padding: 0;
	margin: 0;
}

.main-menu .nav-menu-wrapper {
	flex: 1;
	text-align: center;
	margin: 0 1.042vw;
}

.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: 18px;
	font-weight: 400;
	line-height: 1.2em;
	padding: 14px 10px !important;
	color: var(--white-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: scale(1, 0.8);
	transform-origin: top;
	padding: 0;
	margin: 0;
	list-style: none;
	width: 235px;
	border-radius: 12px;
	position: absolute;
	left: 0;
	top: 100%;
	background: var(--accent-color);
	transition: all 0.3s ease-in-out;
	text-align: left;
}

.main-menu ul li.submenu:first-child ul {
	width: 235px;
}

.main-menu ul ul ul {
	left: 100%;
	top: 0;
	text-align: left;
}

.main-menu ul li:hover>ul {
	visibility: visible;
	opacity: 1;
	transform: scale(1, 1);
	padding: 5px 0;
}

.main-menu ul li.submenu ul li.submenu>a:after {
	content: '\f105';
	float: right;
}

.main-menu ul ul li {
	margin: 0;
	padding: 0;
}

.main-menu ul ul li a {
	color: var(--primary-color);
	padding: 6px 20px !important;
	transition: all 0.3s ease-in-out;
}

.main-menu ul ul li a:hover,
.main-menu ul ul li a:focus {
	color: var(--white-color);
	background-color: transparent;
	padding: 6px 20px 6px 23px !important;
}

.main-menu ul li.highlighted-menu {
	display: none;
}

.responsive-menu,
.navbar-toggle {
	display: none;
}

.responsive-menu {
	top: 0;
	position: relative;
}

.slicknav_btn {
	background: var(--accent-color);
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	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(--primary-color);
	border-radius: 6px;
	margin: 4px auto !important;
	transition: all 0.1s ease-in-out;
}

.slicknav_icon .slicknav_icon-bar:first-child {
	margin-top: 0 !important;
}

.slicknav_icon .slicknav_icon-bar:last-child {
	margin-bottom: 0 !important;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(1) {
	transform: rotate(-45deg) translate(-5px, 5px);
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(2) {
	opacity: 0;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(3) {
	transform: rotate(45deg) translate(-5px, -5px);
}

.slicknav_menu {
	position: absolute;
	width: 100%;
	padding: 0;
	background: var(--accent-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: 18px;
	font-weight: 400;
	text-transform: capitalize;
	padding: 2px 20px;
	color: var(--primary-color);
	line-height: normal;
	margin: 0;
	border-radius: 0 !important;
	transition: all 0.3s ease-in-out;
}

.slicknav_nav a:hover,
.slicknav_nav a:focus,
.slicknav_nav .slicknav_row:hover {
	background-color: transparent;
	color: var(--white-color);
}

.slicknav_menu ul ul li a {
	padding: 2px 20px 2px 30px;
}

.slicknav_arrow {
	font-size: 0 !important;
}

.slicknav_arrow:after {
	content: '\f107';
	font-family: 'FontAwesome';
	font-weight: 900;
	font-size: 12px;
	margin-left: 8px;
	color: var(--primary-color);
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translateY(-50%);
	transition: all 0.3s ease-out;
}

.slicknav_open>a .slicknav_arrow:after {
	transform: translateY(-50%) rotate(-180deg);
	color: var(--white-color);
}

/************************************/
/***         04. Hero css	      ***/
/************************************/

/* Hero gradient overlay without changing existing code */
/* #hero-section::after {
	content: '';
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg,
			rgba(65, 80, 65, 0.85) 0%,
			rgba(65, 80, 65, 0.55) 40%,
			rgba(0, 0, 0, 0.1) 100%),
		linear-gradient(180deg,
			rgba(0, 0, 0, 0.35) 0%,
			rgba(0, 0, 0, 0) 60%);
	z-index: 1;
	pointer-events: none;
}

/* Make sure content stays above gradient */
/* #hero-section .container {
	position: relative;
	z-index: 2;
} */

.hero {
	position: relative;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	/* desktop */
	padding: 200px 0 170px;
}

@media (max-width: 768px) {
	.hero {
		background-size: cover !important;
		background-position: center right !important;
		padding: 50px 0 30px !important;
		background-attachment: unset !important;
	}

	header.main-header {
		position: relative;
		background: #415041;
	}
}

.hero::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	/* background: linear-gradient(0deg, rgba(5, 5, 5, 0) 87.63%, rgba(36, 43, 36, 0.67) 100.45%), linear-gradient(90deg, rgb(65 80 65 / 83%) 24.36%, rgba(24, 85, 92, 0.00) 100%); */
	width: 100%;
	height: 100%;
	z-index: 0;
}

.hero .container {
	position: relative;
	z-index: 1;
}

.hero-content .section-title p {
	width: 100%;
	max-width: 750px;
}

.hero-btn {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 15px 30px;
	margin: 60px 0;
}

.hero-btn .readmore-btn {
	color: var(--white-color);
}

.hero-btn .readmore-btn:hover {
	color: var(--accent-color);
}

.hero-btn .readmore-btn::before {
	background-image: url('../images/arrow-white.svg');
}

.hero-content-body {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 20px;
}

.satisfy-client-img {
	position: relative;
	display: inline-block;
	border: 1px solid var(--primary-color);
	border-radius: 50%;
	overflow: hidden;
	margin-left: -16px;
	z-index: 1;
}

.satisfy-client-img:first-child {
	margin: 0;
}

.satisfy-client-img figure {
	display: block;
}

.satisfy-client-img img {
	max-width: 50px;
	border-radius: 50%;
}

.hero-counter-box h3 {
	font-size: 20px;
	text-transform: capitalize;
	color: var(--white-color);
	margin-bottom: 5px;
}

.hero-counter-box p {
	color: var(--white-color);
	margin: 0;
}

.hero-counter-box p i {
	color: var(--accent-color);
}

.hero-counter-box p span {
	font-weight: 600;
}

/************************************/
/***   05. Scrolling Ticker css   ***/
/************************************/

.our-scrolling-ticker {
	position: relative;
	background-color: var(--accent-color);
	padding: 25px 0;
	z-index: 1;
}

.scrolling-ticker-box {
	--gap: 30px;
	position: relative;
	display: flex;
	overflow: hidden;
	user-select: none;
	gap: var(--gap);
	align-items: center;
}

.scrolling-content {
	flex-shrink: 0;
	display: flex;
	gap: var(--gap);
	min-width: 100%;
	animation: scroll 50s linear infinite;
}

.scrolling-content span {
	display: inline-block;
	font-size: 28px;
	font-weight: 600;
	line-height: 1.2em;
	text-transform: capitalize;
	color: var(--primary-color);
}

.scrolling-content span img {
	width: 100%;
	max-width: 30px;
	margin-right: 30px;
}

@keyframes scroll {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(calc(-100% - var(--gap)));
	}
}

/************************************/
/***   	   06. About Us css       ***/
/************************************/

.about-us {
	padding: 60px 0;
}

.about-us-images {
	position: relative;
}

.about-us-images img {
	width: 100%;
	border-radius: 10px;
	height: auto;
	object-fit: cover;
}

.about-image-1 figure,
.about-image-2 figure,
.about-image-3 figure {
	display: block;
	border-radius: 20px;
	overflow: hidden;
}

.about-image-1 figure img,
.about-image-2 figure img,
.about-image-3 figure img {
	width: 100%;
	object-fit: cover;
	border-radius: 20px;
}

.about-image-1 {}

.about-image-1 figure img {
	aspect-ratio: 1 / 1.265;
}

.about-image-2 {
	position: absolute;
	top: 10px;
	right: 5px;
	width: 100%;
	max-width: 340px;
	transform: rotate(5deg);
}

.about-image-2 figure img {
	aspect-ratio: 1 / 0.521;
}

.about-image-3 {
	position: absolute;
	bottom: 15px;
	right: 20px;
	width: 100%;
	max-width: 255px;
	transform: rotate(9deg);
}

.about-image-3 figure img {
	aspect-ratio: 1 / 1.199;
}

.about-image-circle {
	position: absolute;
	top: -90px;
	left: 50px;
}

.about-image-circle a,
.about-image-circle a img {
	display: inline-block;
	border-radius: 50%;
	overflow: hidden;
	transition: all 0.3s ease-in-out;
}

.about-image-circle a img {
	width: 100%;
	max-width: 140px;
	animation: infiniterotate 25s infinite linear;
}

@keyframes infiniterotate {
	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(360deg);
	}
}

.about-image-circle a:hover img {
	animation-play-state: paused;
}

.about-us-list,
.about-us-body {
	margin-bottom: 40px;
}

.about-us-list ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.about-us-list ul li {
	position: relative;
	line-height: 1.4em;
	padding-left: 25px;
	margin-bottom: 15px;
}

.about-us-list ul li:last-child {
	margin-bottom: 0;
}

.about-us-list ul li::before {
	content: '\f14a';
	font-family: 'Font Awesome 6 Free';
	position: absolute;
	top: 0;
	left: 0;
	font-size: 18px;
	font-weight: 900;
	color: var(--accent-color);
}

.about-us-body {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 30px;
}

.about-body-image {
	width: calc(52% - 15px);
}

.about-body-content {
	width: calc(48% - 15px);
}

.about-body-image figure {
	display: block;
	border-radius: 20px;
}

.about-body-image img {
	width: 100%;
	object-fit: cover;
	aspect-ratio: 1 / 0.33;
	border-radius: 20px;
}

.about-body-content h3 {
	font-size: 22px;
	line-height: 1.4em;
}

.about-body-content h3 span {
	color: var(--accent-color);
}

.about-us-footer {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px 40px;
}

.contact-now-box {
	display: flex;
	align-items: center;
}

.contact-now-box .icon-box {
	position: relative;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--accent-color);
	border-radius: 50%;
	margin-right: 15px;
	overflow: hidden;
	transition: all 0.5s ease-in-out;
}

.contact-now-box .icon-box::before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--primary-color);
	width: 100%;
	height: 100%;
	border-radius: 50%;
	transform: scale(0);
	transition: all 0.3s ease-in-out;
	z-index: 0;
}

.contact-now-box:hover .icon-box::before {
	transform: scale(1);
}

.contact-now-box .icon-box img {
	position: relative;
	width: 100%;
	max-width: 25px;
	z-index: 1;
}

.contact-now-box-content p {
	margin-bottom: 5px;
}

.contact-now-box-content h3 {
	font-size: 20px;
}

.contact-now-box-content h3 a {
	color: inherit;
	transition: all 0.3s ease-in-out;
}

.contact-now-box-content h3 a:hover {
	color: var(--accent-color);
}


/************************************/
/***   	 07. Our Services css     ***/
/************************************/

.our-services {
	padding: 60px 0 40px;
}

.our-service-content {
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.service-item {
	position: relative;
	background-color: rgb(108 137 96 / 30%);
	border-radius: 20px;
	backdrop-filter: blur(12px);
	height: calc(100% - 30px);
	margin-bottom: 30px;
	padding: 40px;
	overflow: hidden;
}

.service-item::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--accent-color);
	border-radius: 999px 999px 0 0;
	height: 0;
	width: 100%;
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

.service-item.active::after,
.service-item:hover::after {
	height: 100%;
	border-radius: 0;
}

.service-item .icon-box {
	position: relative;
	height: 60px;
	width: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--accent-color);
	border-radius: 50%;
	margin-bottom: 40px;
	z-index: 1;
	display: none;
}

.service-item .icon-box::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: var(--primary-color);
	border-radius: 50%;
	height: 100%;
	width: 100%;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

.service-item.active .icon-box::before,
.service-item:hover .icon-box::before {
	transform: scale(1);
}

.service-item .icon-box img {
	position: relative;
	width: 100%;
	max-width: 30px;
	z-index: 1;
}

.service-item-content {
	position: relative;
	margin-bottom: 30px;
	z-index: 1;
}

.service-item-content h3 {
	font-size: 20px;
	color: var(--white-color);
	margin-bottom: 15px;
	transition: all 0.4s ease-in-out;
}

.service-item-content h3 a {
	color: inherit;
}

.service-item-content p {
	margin-bottom: 0;
	color: var(--white-color);
	transition: all 0.3s ease-in-out;
	text-align: justify;
}

.service-item.active .service-item-content h3,
.service-item:hover .service-item-content h3,
.service-item.active .service-item-content p,
.service-item:hover .service-item-content p {
	color: var(--primary-color);
}

.service-readmore-btn {
	position: relative;
	color: var(--accent-color);
	z-index: 1;
}

.service-readmore-btn a {
	color: var(--accent-color);
}

.service-readmore-btn a::before {
	background-image: url('../images/arrow-accent.svg');
}

.service-item.active .service-readmore-btn a,
.service-item:hover .service-readmore-btn a {
	color: var(--primary-color);
}

.service-item.active .service-readmore-btn a::before,
.service-item:hover .service-readmore-btn a::before {
	filter: brightness(0.9) invert(1);
}

.service-cta-box {
	position: relative;
	background: url('../img/ins/n2.jpg') no-repeat;
	background-position: center center;
	background-size: cover;
	border-radius: 20px;
	align-content: center;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	padding: 40px;
	overflow: hidden;
}

.service-cta-box::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background: var(--primary-color);
	opacity: 60%;
	width: 100%;
	height: 100%;
	z-index: 0;
}

.service-cta-box-info,
.service-cta-box .contact-now-box {
	position: relative;
	z-index: 1;
}

.service-cta-box-info {
	margin-bottom: 30px;
}

.service-cta-box-info h3 {
	font-size: 20px;
	color: var(--white-color);
	margin-bottom: 10px;
}

.service-cta-box-info h2 {
	font-size: 30px;
	color: var(--white-color);
}

.service-cta-box .contact-now-box-content p,
.service-cta-box .contact-now-box-content h3 {
	color: var(--white-color);
}

.section-footer-text {
	margin-top: 30px;
	text-align: center;
}

.section-footer-text p {
	margin-bottom: 0;
}

.dark-section .section-footer-text p {
	color: var(--white-color);
}

.section-footer-text span {
	font-size: 16px;
	font-weight: 600;
	line-height: 1.1em;
	display: inline-block;
	text-transform: capitalize;
	color: var(--primary-color);
	background: var(--accent-color);
	padding: 4px 10px;
	border-radius: 100px;
	margin-right: 12px;
}

.section-footer-text p a {
	font-weight: 600;
	text-transform: capitalize;
	text-decoration: underline;
	text-underline-offset: 3px;
	color: var(--accent-color);
	transition: all 0.3s ease-in-out;
}

.section-footer-text p a:hover {
	color: var(--primary-color);
}

.dark-section .section-footer-text p a:hover {
	color: var(--white-color);
}

/************************************/
/***   	 08. Why Choose Us css    ***/
/************************************/

.why-choose-us {
	padding: 60px 0;
	background-color: #415041;
}

.why-choose-box {
	display: flex;
	flex-wrap: wrap;
	align-items: start;
	gap: 30px;
}

.why-choose-content {
	width: calc(55% - 15px);
}

.why-choose-body {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.why-choose-content-box {
	width: calc(55% - 15px);
}

.why-choose-item {
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 40px;
	/* padding-bottom: 40px; */
	padding-right: 3.646vw;
}

.why-choose-item .icon-box {
	margin-bottom: 20px;
}

.why-choose-item .icon-box img {
	width: 100%;
	max-width: 40px;
}

.why-choose-item-content h3 {
	font-size: 20px;
	text-transform: capitalize;
}

.why-choose-list ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.why-choose-list ul li {
	position: relative;
	line-height: 1.4em;
	padding-left: 30px;
	margin-bottom: 15px;
}

.why-choose-list ul li:last-child {
	margin-bottom: 0;
}

.why-choose-list ul li:before {
	content: '\f14a';
	font-family: 'Font Awesome 6 Free';
	position: absolute;
	top: 0;
	left: 0;
	font-size: 18px;
	font-weight: 900;
	color: var(--accent-color);
}

.why-choose-btn {
	margin-top: 60px;
}

.why-choose-body-img {
	width: calc(45% - 15px);
}

.why-choose-body-img figure {
	display: block;
	border-radius: 20px;
	overflow: hidden;
}

.why-choose-body-img img {
	width: 100%;
	aspect-ratio: 1 / 1.405;
	object-fit: cover;
	border-radius: 20px;
}

.why-choose-image {
	width: calc(45% - 15px);
	position: relative;
	padding: 0 50px 50px 0;
}

.why-choose-img figure {
	display: block;
	border-radius: 20px;
}

.why-choose-img img {
	width: 100%;
	aspect-ratio: 1 / 1.333;
	object-fit: cover;
	border-radius: 20px;
}

.company-experience-box {
	position: absolute;
	right: 0;
	bottom: 0;
	width: 140px;
	height: 140px;
	display: flex;
	flex-wrap: wrap;
	gap: 5px;
	align-content: center;
	justify-content: center;
	background: var(--accent-color);
	border-radius: 50%;
	padding: 25px;
	text-align: center;
	transition: all 0.3s ease-in-out;
}

.company-experience-box:hover {
	background: var(--primary-color);
}

.company-experience-box h3 {
	font-size: 30px;
	color: var(--primary-color);
	transition: all 0.3s ease-in-out;
}

.company-experience-box p {
	line-height: 1.3em;
	color: var(--primary-color);
	text-transform: capitalize;
	margin: 0;
	transition: all 0.3s ease-in-out;
}

.company-experience-box:hover h3,
.company-experience-box:hover p {
	color: var(--white-color);
}

/************************************/
/***   	 09. Intro Video css      ***/
/************************************/
.intro-video {
	position: relative;
	padding: 29.167vw 0 47px;
	overflow: hidden;
}

/* VIDEO */
.intro-video-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	/* bilkul background-size: cover jaisa */
	z-index: 0;
}

/* GRADIENT OVERLAY (tumhara existing) */
.intro-video::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg,
			rgba(24, 85, 92, 0.00) 27.11%,
			var(--primary-color) 100%);
	z-index: 1;
}

/* CONTENT VIDEO KE UPAR */
.intro-video .container {
	position: relative;
	z-index: 2;
}

/* VIDEO */
.intro-video-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	/* bilkul background-size: cover jaisa */
	z-index: 0;
}

/* GRADIENT OVERLAY (tumhara existing) */
.intro-video::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg,
			rgba(24, 85, 92, 0.00) 27.11%,
			var(--primary-color) 100%);
	z-index: 1;
}

/* CONTENT VIDEO KE UPAR */
.intro-video .container {
	position: relative;
	z-index: 2;
}

.intro-video .container {
	position: relative;
	z-index: 1;
}

.intro-video .section-title {
	margin-bottom: 0;
}

.intro-video .section-title h2 {
	color: var(--white-color);
}

.video-play-button {
	display: flex;
	align-items: center;
	justify-content: center;
}

.video-play-button a {
	background-color: var(--accent-color);
	border-radius: 50%;
	height: 60px;
	width: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 20px;
	cursor: none;
}

.video-play-button a i {
	font-size: 20px;
	color: var(--primary-color);
	margin-left: 2px;
}

.video-play-button p {
	font-size: 20px;
	font-weight: 600;
	color: var(--white-color);
	margin: 0;
}

.intro-video-list {
	border-top: 1px solid var(--dark-divider-color);
	margin-top: 40px;
	padding-top: 40px;
}

.intro-video-list ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 20px 30px;
}

.intro-video-list ul li {
	position: relative;
	width: calc(25% - 22.5px);
	color: var(--white-color);
	line-height: 1.4em;
	padding-left: 30px;
}

.intro-video-list ul li:after {
	content: '\f14a';
	font-family: 'Font Awesome 6 Free';
	position: absolute;
	top: 0;
	left: 0;
	font-size: 18px;
	font-weight: 900;
	color: var(--accent-color);
}

/************************************/
/***   	  10. What We Do css      ***/
/************************************/

.what-we-do {
	position: relative;
	padding: 80px 0;
}

.what-we-do-content {
	margin-right: 30px;
}

.what-we-do-body {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 30px;
	margin-bottom: 40px;
}

.what-we-do-list {
	width: calc(100% - 210px);
}

.what-we-do-list ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.what-we-do-list ul li {
	position: relative;
	line-height: 1.4em;
	padding-left: 30px;
	margin-bottom: 15px;
}

.what-we-do-list ul li:last-child {
	margin-bottom: 0;
}

.what-we-do-list ul li::before {
	content: '\f14a';
	font-family: 'Font Awesome 6 Free';
	position: absolute;
	top: 0;
	left: 0;
	font-size: 18px;
	font-weight: 900;
	color: var(--accent-color);
}

.what-we-do-body .about-image-circle {
	position: initial;
}

.what-we-do-body .about-image-circle a img {
	position: initial;
	align-content: center;
	max-width: 180px;
}

.what-we-do-images {
	position: relative;
	padding: 15px 255px 155px 25px;
}

.what-we-do-img-1 {
	transform: rotate(-6.46deg);
	border-radius: 20px;
	overflow: hidden;
}

.what-we-do-img-2 {
	position: absolute;
	top: 15px;
	right: 25px;
	transform: rotate(10.67deg);
	width: 100%;
	max-width: 265px;
}

.what-we-do-img-2::before {
	content: '';
	position: absolute;
	bottom: 12px;
	right: 20px;
	background: url('../images/what-we-do-image-bg.svg') no-repeat;
	background-position: center center;
	background-size: contain;
	height: 125px;
	width: 95px;
	transform: translateY(100%);
}

.what-we-do-img-2,
.what-we-do-img-3 {
	border: 9px solid var(--bg-color);
	border-radius: 20px;
}

.what-we-do-img-3 {
	position: absolute;
	bottom: 20px;
	left: 10px;
	transform: rotate(-7.87deg);
	width: 100%;
	max-width: 370px;
}

.what-we-do-img-1 figure {
	display: block;
}

.what-we-do-img-2 figure,
.what-we-do-img-3 figure {
	display: block;
	border-radius: 12px;
}

.what-we-do-img-1 img,
.what-we-do-img-2 img,
.what-we-do-img-3 img {
	width: 100%;
	object-fit: cover;
}

.what-we-do-img-1 img {
	aspect-ratio: 1 / 1.48;
}

.what-we-do-img-2 img {
	aspect-ratio: 1 / 1.405;
}

.what-we-do-img-3 img {
	aspect-ratio: 1 / 0.644;
}

.client-review-box {
	position: absolute;
	bottom: 45px;
	right: 0;
	display: block;
	width: 100%;
	max-width: 215px;
	background: var(--primary-color);
	border-radius: 16px;
	padding: 20px;
	box-shadow: 0px 0px 11.8px 0px rgba(0, 0, 0, 0.12);
	animation: experienceobject 3s infinite linear alternate;
}

@keyframes experienceobject {
	50% {
		right: 40px;
	}
}

.client-review-images {
	display: flex;
	align-items: center;
	margin-bottom: 15px;
}

.client-review-image {
	display: inline-block;
	margin-left: -14px;
	overflow: hidden;
}

.client-review-image:first-child {
	margin: 0;
}

.client-review-image figure {
	display: block;
	width: 40px;
	height: 40px;
	border: 1px solid var(--primary-color);
	border-radius: 50%;
}

.client-review-image img {
	position: relative;
	width: 100%;
	z-index: 1;
}

.client-review-image.add-more {
	width: 40px;
	height: 40px;
	background-color: var(--white-color);
	border-radius: 50%;
	text-align: center;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	z-index: 1;
}

.client-review-image.add-more p {
	font-size: 14px;
	color: var(--primary-color);
	font-weight: 700;
	margin: 0;
}

.client-review-content p {
	color: var(--white-color);
	margin-bottom: 0;
}

.client-review-content p i {
	color: var(--accent-color);
	margin: 0 5px;
}

/************************************/
/***   	  11.  Our Facts css      ***/
/************************************/

.our-facts {
	padding: 50px 0;
}

.our-facts-image {
	margin-right: 65px;
	align-content: end;
	height: 100%;
}

.our-facts-image img {
	width: 100%;
	aspect-ratio: 1 / 1.55;
	object-fit: cover;
	margin-bottom: -50px;
}

.our-facts-content {
	height: 100%;
	align-content: center;
}

.facts-counter-box {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	border-top: 1px solid var(--dark-divider-color);
	border-bottom: 1px solid var(--dark-divider-color);
	padding: 40px 0;
	margin: 40px 0;
}

.fact-counter-item {
	position: relative;
	width: calc(33.33% - 20px);
}

.fact-counter-item::before {
	content: '';
	position: absolute;
	top: 0;
	right: -15px;
	bottom: 0;
	background: var(--dark-divider-color);
	width: 1px;
	height: 100%;
}

.fact-counter-item:nth-child(3n + 3):before,
.fact-counter-item:last-child:before {
	display: none;
}

.fact-counter-item h2 {
	font-size: 40px;
	color: var(--white-color);
	margin-bottom: 5px;
}

.fact-counter-item p {
	color: var(--white-color);
	margin: 0;
}

.our-facts-list ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 20px 30px;
}

.our-facts-list ul li {
	position: relative;
	width: calc(50% - 15px);
	color: #415041;
	font-weight: 600;
	line-height: 1.4em;
	padding-left: 30px;
}

.our-facts-list ul li::before {
	content: '\f14a';
	font-family: 'Font Awesome 6 Free';
	position: absolute;
	top: 0;
	left: 0;
	font-size: 18px;
	font-weight: 900;
	color: var(--accent-color);
}

.our-facts-btn {
	margin-top: 16px;
}

/************************************/
/***   	 12. Our Potential css    ***/
/************************************/

.our-potential {
	padding: 50px 0;
}

.our-potential-content {
	height: 100%;
}

.our-potential-counter {
	border-bottom: 1px solid var(--divider-color);
	padding-bottom: 40px;
	margin-bottom: 40px;
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.potential-counter-item {
	width: calc(50% - 15px);
	display: flex;
	align-items: center;
}

.potential-counter-item .counter-circle {
	width: 110px;
	height: 110px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 10px solid var(--accent-color);
	border-radius: 50%;
	margin-right: 20px;
}

.potential-counter-item .counter-circle h2 {
	font-size: 30px;
	font-weight: 700;
}

.potential-counter-content {
	width: calc(100% - 130px);
}

.potential-counter-content h3 {
	font-size: 20px;
}

.potential-body-content {
	margin-bottom: 20px;
}

.potential-body-content h3 {
	font-size: 20px;
	text-transform: capitalize;
	font-weight: 600;
	margin-bottom: 20px;
}

.potential-body-content p:last-child {
	margin-bottom: 0;
}

.potential-body-list ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.potential-body-list ul li {
	position: relative;
	line-height: 1.4em;
	padding-left: 30px;
	margin-bottom: 15px;
}

.potential-body-list ul li:last-child {
	margin-bottom: 0;
}

.potential-body-list ul li::before {
	content: '\f14a';
	font-family: 'Font Awesome 6 Free';
	position: absolute;
	top: 0;
	left: 0;
	font-size: 18px;
	font-weight: 900;
	color: var(--accent-color);
}

.our-potential-img {
	margin-left: 15px;
	height: 100%;
}

.our-potential-img figure {
	display: block;
	border-radius: 20px;
}

.our-potential-img img {
	width: 100%;
	object-fit: cover;
	aspect-ratio: 1 / 1.32;
	border-radius: 20px;
}

/************************************/
/***   	13. Our Testimonial css   ***/
/************************************/

.our-testimonial {
	background-image: url('../images/testimonial-bg.png');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	padding: 100px 0;
}

.our-testimonial-image {
	margin-right: 15px;
}

.our-testimonial-image figure {
	display: block;
	border-radius: 20px;
}

.our-testimonial-image img {
	width: 100%;
	aspect-ratio: 1 / 0.992;
	object-fit: cover;
	border-radius: 20px;
}

.testimonial-slider .swiper-wrapper {
	cursor: none;
}

.testimonial-rating {
	margin-bottom: 20px;
}

.testimonial-item .testimonial-rating i {
	color: var(--accent-color);
}

.testimonial-content {
	margin-bottom: 100px;
}

.testimonial-content p {
	font-size: 20px;
	font-weight: 500;
	color: var(--white-color);
	margin: 0;
}

.testimonial-body {
	display: flex;
	align-items: center;
}

.testimonial-body .author-image {
	margin-right: 15px;
}

.testimonial-body .author-image figure {
	border-radius: 10px;
}

.testimonial-body .author-image img {
	width: 60px;
	height: 60px;
	border-radius: 10px;
}

.testimonial-body .author-content {
	width: calc(100% - 75px);
}

.testimonial-body .author-content h3 {
	font-size: 20px;
	color: var(--accent-color);
	text-transform: capitalize;
	margin-bottom: 2px;
}

.testimonial-body .author-content p {
	color: var(--white-color);
	margin: 0;
}

.testimonial-btn {
	position: absolute;
	bottom: 0;
	right: 0;
	display: flex;
	align-items: center;
	justify-content: right;
	margin-top: 30px;
	z-index: 2;
}

.testimonial-slider .testimonial-button-next,
.testimonial-slider .testimonial-button-prev {
	position: relative;
	width: 56px;
	height: 56px;
	background: var(--accent-color);
	border-radius: 10px;
	transition: all 0.3s ease-in-out;
	overflow: hidden;
}

.testimonial-slider .testimonial-button-next {
	margin-left: 20px;
}

.testimonial-slider .testimonial-button-next:hover,
.testimonial-slider .testimonial-button-prev:hover {
	background: var(--bg-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/arrow-white.svg') no-repeat;
	background-position: center center;
	background-size: 24px auto;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease-in-out;
}

.testimonial-slider .testimonial-button-prev::before {
	transform: rotate(180deg);
}

.testimonial-slider .testimonial-button-next:hover::before,
.testimonial-slider .testimonial-button-prev:hover::before {
	filter: brightness(0) invert(0);
}

.testimonial-company-slider {
	border-top: 1px solid var(--dark-divider-color);
	padding-top: 80px;
	margin-top: 80px;
}

.testimonial-company-slider .company-logo {
	text-align: center;
}

.testimonial-company-slider .company-logo img {
	width: 100%;
	max-height: 40px;
}

/************************************/
/***   	   14. Our Goals css      ***/
/************************************/

.our-goals {
	padding: 100px 0;
}

.goals-content-body {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.goals-item {
	position: relative;
	width: calc(50% - 15px);
	background: var(--accent-color);
	border-radius: 20px;
	padding: 30px;
	overflow: hidden;
}

.goals-item::before {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--primary-color);
	border-radius: 999px 999px 0 0;
	width: 100%;
	height: 0;
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

.goals-item.active:before,
.goals-item:hover:before {
	height: 100%;
	border-radius: 0;
}

.goals-item .icon-box {
	position: relative;
	margin-bottom: 40px;
	z-index: 1;
}

.goals-item .icon-box img {
	width: 100%;
	max-width: 50px;
	transition: all 0.4s ease-in-out;
}

.goals-item.active .icon-box img,
.goals-item:hover .icon-box img {
	filter: brightness(0) invert(1);
}

.goals-item-content {
	position: relative;
	z-index: 1;
}

.goals-item-content h3 {
	font-size: 20px;
	margin-bottom: 5px;
	transition: all 0.3s ease-in-out;
}

.goals-item-content p {
	margin: 0;
	transition: all 0.3s ease-in-out;
}

.goals-item.active .goals-item-content h3,
.goals-item:hover .goals-item-content h3,
.goals-item.active .goals-item-content p,
.goals-item:hover .goals-item-content p {
	color: var(--white-color);
}

.goals-content-footer {
	display: flex;
	align-items: center;
	gap: 20px 30px;
	margin-top: 60px;
}

.our-goals-images {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
	margin-left: 20px;
}

.goals-image-box {
	width: calc(50% - 5px);
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.goals-image-box figure {
	display: block;
	width: 100%;
	border-radius: 20px;
}

.goals-image-box img {
	width: 100%;
	object-fit: cover;
	border-radius: 20px;
}

.goals-img-2,
.goals-img-1,
.goals-img-4,
.goals-img-3 {
	width: 100%;
}

.goals-img-1 img {
	aspect-ratio: 1 / 0.9672;
}

.goals-img-2 img {
	aspect-ratio: 1 / 1.068;
}

.goals-img-3 img {
	aspect-ratio: 1 / 1.2;
}

.goals-img-4 img {
	aspect-ratio: 1 / 1.085;
}

.our-goals-images .about-image-circle {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

/************************************/
/***   	   15. Our FAQs css       ***/
/************************************/

.our-faqs {
	padding: 100px 0;
}

.our-faqs-content {
	position: sticky;
	top: 40px;
	margin-right: 30px;
}

.faq-cta-box {
	position: relative;
	display: inline-flex;
	background: var(--accent-color);
	border-radius: 20px;
	padding: 40px;
	overflow: hidden;
}

.faq-cta-box::before {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	right: 0;
	width: 100%;
	height: 0;
	background: var(--white-color);
	border-radius: 20px;
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

.faq-cta-box:hover:before {
	height: 100%;
}

.faq-cta-box .icon-box {
	position: relative;
	margin-right: 20px;
	z-index: 1;
}

.faq-cta-box .icon-box img {
	max-width: 60px;
}

.faq-cta-box .faq-cta-content {
	position: relative;
	width: calc(100% - 80px);
	z-index: 1;
}

.faq-cta-content p {
	color: var(--primary-color);
	margin-bottom: 10px;
}

.faq-cta-content p:last-child {
	margin-bottom: 0;
}

.faq-cta-content p a {
	color: inherit;
	transition: all 0.3s ease-in-out;
}

.faq-cta-content p a:hover {
	color: var(--accent-color);
}

.faq-cta-content h3 {
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 10px;
}

.faq-accordion .accordion-item {
	border-bottom: 1px solid var(--dark-divider-color);
	margin-bottom: 30px;
	padding-bottom: 30px;
}

.faq-accordion .accordion-item:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}

.faq-accordion .accordion-header .accordion-button {
	font-size: 20px;
	font-weight: 600;
	line-height: 1.2em;
	color: var(--white-color);
	padding-right: 30px;
	transition: all 0.3s ease-in-out;
}

.faq-accordion .accordion-button:not(.collapsed) {
	color: var(--white-color);
	padding-bottom: 15px;
}

.faq-accordion .accordion-item .accordion-button::after,
.faq-accordion .accordion-item .accordion-button.collapsed::after {
	content: '\f107';
	font-family: 'FontAwesome';
	position: absolute;
	right: 0;
	top: 0;
	font-size: 20px;
	color: var(--white-color);
	transition: all 0.3s ease-in-out;
}

.faq-accordion .accordion-button:not(.collapsed)::after {
	transform: rotate(180deg);
	color: var(--accent-color);
}

.faq-accordion .accordion-item .accordion-body {
	padding-right: 30px;
}

.faq-accordion .accordion-item:last-child .accordion-body {
	padding-bottom: 0;
}

.faq-accordion .accordion-item .accordion-body p {
	color: var(--white-color);
	margin-bottom: 15px;
}

.faq-accordion .accordion-item .accordion-body p:last-child {
	margin-bottom: 0;
}

/************************************/
/***   	   16. Our Blogs css      ***/
/************************************/

.our-blog {
	padding: 25px 0 30px;
}

.post-item {
	border: 1px solid var(--divider-color);
	border-radius: 20px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	overflow: hidden;
}

.post-featured-image a {
	cursor: none;
	display: block;
	overflow: hidden;
}

.post-featured-image figure {
	display: block;
}

.post-featured-image img {
	aspect-ratio: 1 / 0.68;
	object-fit: cover;
	transition: all 0.4s ease-in-out;
}

.post-item:hover .post-featured-image img {
	transform: scale(1.1);
}

.post-item-body {
	padding: 20px;
}

.post-item-content {
	margin-bottom: 20px;
}

.post-item-content h2 {
	font-size: 20px;
	line-height: 1.4em;
}

.post-item-content h2 a {
	display: inline-block;
	color: inherit;
}

/************************************/
/***   	    17. Footer css        ***/
/************************************/

footer.main-footer {
	padding: 50px 0 0 0;
}

.newsletter-form .form-group {
	display: flex;
	width: 85%;
}

.newsletter-form .form-group .form-control {
	width: calc(100% - 60px);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5em;
	color: var(--white-color);
	background: transparent;
	border: 1px solid var(--dark-divider-color);
	border-right: none;
	border-radius: 10px 0 0 10px;
	outline: none;
	box-shadow: none;
	padding: 17px 20px;
}

.newsletter-form .form-group .form-control::placeholder {
	color: var(--white-color);
}

.newsletter-form .form-group .newsletter-btn {
	width: 60px;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: var(--accent-color);
	border: none;
	border-radius: 0 10px 10px 0;
	transition: all 0.3s ease-in-out;
}

.newsletter-form .form-group .newsletter-btn:hover {
	background-color: var(--white-color);
}

.newsletter-form .form-group .newsletter-btn i {
	font-size: 28px;
	color: var(--primary-color);
	margin-right: 3px;
}

.footer-link-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 30px;
}

.footer-links h3 {
	font-size: 20px;
	text-transform: capitalize;
	color: var(--white-color);
	margin-bottom: 25px;
}

.footer-links ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer-links ul li {
	text-transform: capitalize;
	line-height: 1.5em;
	/* margin-bottom: 10px; */
}

.footer-links ul li:last-child {
	margin-bottom: 0;
}

.footer-links ul li a {
	color: var(--white-color);
	transition: all 0.3s ease-in-out;
}

.footer-links ul li a:hover {
	color: var(--accent-color);
}

.footer-cta-box {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	background-color: var(--dark-divider-color);
	border-radius: 20px;
	/* margin-top: 35px; */
	padding: 15px;
}

.footer-logo img {
	width: 100%;
	max-width: 168px;
}

.footer-contact-box {
	display: flex;
	flex-wrap: wrap;
	gap: 20px 0;
}

.footer-contact-item {
	padding-right: 40px;
	margin-right: 40px;
	border-right: 1px solid var(--dark-divider-color);
}

.footer-contact-item:last-child {
	padding: 0;
	margin: 0;
	border: none;
}

.footer-contact-item p {
	color: var(--white-color);
	opacity: 80%;
	margin-bottom: 10px;
}

.footer-contact-item h3 {
	font-size: 20px;
	color: var(--white-color);
}

.footer-contact-item h3 a {
	color: inherit;
	transition: all 0.3s ease-in-out;
}

.footer-contact-item h3 a:hover {
	color: var(--accent-color);
}

.footer-copyright {
	padding: 15px 0;
}

.footer-copyright-text p {
	color: var(--white-color);
	margin: 0;
}

.footer-menu ul {
	list-style: none;
	margin: 0;
	padding: 0;
	text-align: right;
}

.footer-menu ul li {
	position: relative;
	display: inline-block;
	text-transform: capitalize;
	line-height: normal;
	color: var(--white-color);
	margin-right: 40px;
	transition: all 0.3s ease-in-out;
}

.footer-menu ul li:last-child {
	margin-right: 0;
}

.footer-menu ul li::before {
	content: '';
	position: absolute;
	top: 50%;
	right: -23px;
	background-color: var(--dark-divider-color);
	border-radius: 50%;
	height: 6px;
	width: 6px;
	transform: translateY(-50%);
}

.footer-menu ul li:last-child:before {
	display: none;
}

.footer-menu ul li:hover {
	color: var(--accent-color);
}

.footer-menu ul li a {
	color: inherit;
}

/************************************/
/***    18. About Us Page css     ***/
/************************************/

.page-header {
	position: relative;
	background: url('../img/new/b.png');
	background-repeat: no-repeat;
	background-position: center center !important;
	background-size: cover;
	padding: 200px 0 200px;
	background-attachment: unset !important;
}

.page-header::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	/* background: linear-gradient(0deg, rgb(65 80 65 / 0%) 87.63%, rgb(65 80 65 / 0%) 100.45%), linear-gradient(90deg, rgb(65 80 65 / 84%) 24.36%, rgb(65 80 65 / 0%) 100%); */
	width: 100%;
	height: 100%;
	z-index: 0;
}

.page-header-box {
	position: relative;
	z-index: 1;
}

.page-header-box h1 {
	display: inline-block;
	font-size: 50px;
	font-weight: 700;
	color: var(--white-color);
	margin-bottom: 10px;
	cursor: none;
}

.page-header-box ol {
	position: relative;
	margin: 0;
	padding: 0;
	z-index: 1;
}

.page-header-box ol li.breadcrumb-item {
	font-size: 18px;
	text-transform: capitalize;
	color: var(--white-color);
}

.page-header-box ol li.breadcrumb-item a {
	color: inherit;
}

.page-header-box ol .breadcrumb-item+.breadcrumb-item::before {
	color: var(--white-color);
}

.our-approach {
	padding: 50px 0;
}

.approach-goal-item {
	position: relative;
	margin-bottom: 20px;
}

.approach-goal-img figure {
	display: block;
	border-radius: 20px;
}

.approach-goal-img figure:before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	top: auto;
	right: 0;
	bottom: 0;
	left: 0;
	background: linear-gradient(180deg, rgba(38, 81, 74, 0.00) 37.39%, rgba(38, 81, 74, 0.80) 93.02%);
	z-index: 1;
}

.approach-goal-img img {
	width: 100%;
	aspect-ratio: 1 / 0.32;
	object-fit: cover;
}

.approach-goal-content {
	position: absolute;
	right: 40px;
	bottom: 40px;
	left: 40px;
	z-index: 1;
}

.approach-goal-content h3,
.mission-vision-item h3 {
	position: relative;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.2em;
	line-height: normal;
	text-transform: uppercase;
	color: var(--white-color);
	padding-left: 30px;
	margin-bottom: 15px;
}

.approach-goal-content h3::before,
.mission-vision-item h3::before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	background: url('../images/icon-sub-heading.svg') no-repeat;
	background-position: center center;
	background-size: cover;
	border-radius: 50%;
	width: 20px;
	height: 20px;
	transition: all 0.4s ease-in-out;
}

.approach-goal-content h2 {
	font-size: 22px;
	color: var(--white-color);
	text-transform: capitalize;
}

.our-approach-content {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.mission-vision-item {
	color: #fff;
	position: relative;
	margin-bottom: 30px;
	width: calc(100% - 15px);
	background: url('../images/mission-vision-item-bg.html') no-repeat;
	background-position: top left;
	background-size: auto;
	background: #415041;
	border-radius: 20px;
	padding: 2px 8px;
	overflow: hidden;
}

.mission-vision-item::before {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--accent-color);
	border-radius: 999px 999px 0 0;
	height: 0;
	width: 100%;
	transition: all 0.4s ease-in-out;
}

.mission-vision-item.active::before,
.mission-vision-item:hover::before {
	height: 100%;
	border-radius: 0;
}

.mission-vision-item.active h3::before,
.mission-vision-item:hover h3::before {
	filter: brightness(0) invert(0);
}

.mission-vision-item h3,
.mission-vision-item h2,
.mission-vision-item p {
	position: relative;
	z-index: 1;
}

.mission-vision-item h3 {
	color: var(--primary-color);
	margin-bottom: 40px;
}

.mission-vision-item h2 {
	font-size: 20px;
	margin-bottom: 20px;
}

.mission-vision-item p {
	color: #fff;
	margin: 0;
}

.our-features {
	padding: 60px 0;
}

.our-features-list {
	display: flex;
	flex-wrap: wrap;
	gap: 30px 60px;
}

.our-features-item {
	width: calc(33.33% - 40px);
	display: flex;
	flex-wrap: wrap;
	gap: 60px;
}

.our-features-item:nth-child(even) {
	flex-direction: column-reverse;
}

.our-features-image figure {
	display: block;
	border-radius: 20px;
}

.our-features-image img {
	width: 100%;
	aspect-ratio: 1 / 0.84;
	object-fit: cover;
	border-radius: 20px;
}

.our-features-content {
	display: flex;
	gap: 15px;
}

.our-features-body {
	width: calc(100% - 95px);
}

.our-features-body h2 {
	font-size: 50px;
	margin-bottom: 25px;
}

.our-features-body h3 {
	font-size: 20px;
	margin-bottom: 10px;
}

.our-features-body p {
	margin: 0;
}

.our-features-content .icon-box img {
	width: 100%;
	max-width: 80px;
}

.our-team {
	padding: 100px 0 70px;
}

.team-item {
	height: calc(100% - 30px);
	background: var(--white-color);
	box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.04);
	margin-bottom: 30px;
	border-radius: 20px;
	overflow: hidden;
}

.team-image {
	position: relative;
}

.team-image a {
	display: block;
	cursor: none;
	overflow: hidden;
}

.team-image img {
	width: 100%;
	aspect-ratio: 1 / 1.14;
	object-fit: cover;
	transition: all 0.4s ease-in-out;
}

.team-item:hover .team-image img {
	transform: scale(1.1);
}

.team-social-icon {
	position: absolute;
	top: 50%;
	left: 20px;
	right: 20px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(50%);
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.team-item:hover .team-social-icon {
	transform: translateY(-50%);
	opacity: 1;
	visibility: visible;
}

.team-social-icon ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	text-align: center;
	gap: 15px;
}

.team-social-icon ul li a {
	width: 30px;
	height: 30px;
	color: var(--white-color);
	background: var(--primary-color);
	border-radius: 4px;
	border: none;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.4s ease-in-out;
}

.team-social-icon ul li a:hover {
	background: var(--accent-color);
	color: var(--primary-color);
}

.team-social-icon ul li a i {
	color: inherit;
	font-size: 16px;
}

.team-content {
	padding: 20px;
	text-align: center;
}

.team-content h3 {
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 5px;
}

.team-content h3 a {
	display: inline-block;
	color: inherit;
}

.team-content p {
	text-transform: capitalize;
	margin: 0;
}

.our-expertise {
	padding: 100px 0;
}

.our-expertise-body ul {
	display: flex;
	flex-wrap: wrap;
	gap: 15px 30px;
	list-style: none;
	margin: 0 0 40px;
	padding: 0;
}

.our-expertise-body ul li {
	position: relative;
	line-height: 1.4em;
	padding-left: 30px;
}

.our-expertise-body ul li::before {
	content: '\f14a';
	font-family: 'Font Awesome 6 Free';
	position: absolute;
	top: 0;
	left: 0;
	font-size: 18px;
	font-weight: 900;
	color: var(--accent-color);
}

.skills-progress-bar {
	margin-bottom: 30px;
}

.skills-progress-bar:last-child {
	margin-bottom: 0px;
}

.skills-progress-bar .skill-data {
	display: flex;
	justify-content: space-between;
	gap: 10px;
	margin-bottom: 15px;
}

.skills-progress-bar .skill-data .skill-title,
.skills-progress-bar .skill-data .skill-no {
	color: var(--primary-color);
	text-transform: capitalize;
}

.skills-progress-bar .skillbar .skill-progress {
	position: relative;
	width: 100%;
	height: 16px;
	background: var(--divider-color);
	border-radius: 100px;
	overflow: hidden;
}

.skills-progress-bar .skillbar .skill-progress .count-bar {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	background: var(--accent-color);
	border-radius: 100px;
}

.expertise-image {
	position: relative;
	padding: 0 0 60px 80px;
	overflow: hidden;
	margin-left: 15px;
}

.expertise-img figure {
	display: block;
	border-radius: 20px;
}

.expertise-img img {
	width: 100%;
	aspect-ratio: 1 / 0.891;
	object-fit: cover;
	border-radius: 20px;
}

.expertise-image-list {
	max-width: 216px;
	position: absolute;
	bottom: 0;
	left: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	z-index: 1;
}

.expertise-list-img {
	border: 6px solid var(--bg-color);
	border-radius: 20px;
	overflow: hidden;
}

.expertise-list-img img {
	width: 100%;
	aspect-ratio: 1 / 0.99;
	object-fit: cover;
}

.expertise-image .about-image-circle {
	top: auto;
	left: auto;
	right: 180px;
	bottom: 0;
}

/************************************/
/*** 	 19. Services Page css	  ***/
/************************************/

.page-services {
	padding: 100px 0 70px;
}

.page-services .service-item {
	background: var(--primary-color);
}

/************************************/
/*** 	 20. Service Single css	  ***/
/************************************/

.page-service-single {
	padding: 100px 0;
}

.page-single-sidebar {
	position: sticky;
	top: 20px;
	margin-right: 15px;
}

.page-category-list {
	border-radius: 20px;
	margin-bottom: 60px;
	overflow: hidden;
}

.page-category-list h3 {
	font-size: 20px;
	text-transform: capitalize;
	background: var(--accent-color);
	padding: 26px 40px;
}

.page-category-list ul {
	background-color: var(--primary-color);
	list-style: none;
	margin: 0;
	padding: 40px;
}

.page-category-list ul li {
	text-transform: capitalize;
	line-height: 1.5em;
	border-bottom: 1px solid var(--dark-divider-color);
	padding-bottom: 20px;
	margin-bottom: 20px;
}

.page-category-list ul li:last-child {
	margin: 0;
	padding: 0;
	border-bottom: none;
}

.page-category-list ul li a {
	position: relative;
	display: block;
	color: var(--white-color);
	padding-right: 30px;
	transition: all 0.3s ease-in-out;
}

.page-category-list ul li:hover a {
	color: var(--accent-color);
}

.page-category-list ul li a::before {
	content: '';
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	background: url('../images/arrow-white.svg') no-repeat;
	background-size: cover;
	background-position: center center;
	width: 22px;
	height: 22px;
}

.sidebar-cta-box {
	position: relative;
	background: url('../images/sidebar-cta-bg.jpg') no-repeat;
	background-position: center center;
	background-size: cover;
	border-radius: 20px;
	padding: 40px;
	overflow: hidden;
}

.sidebar-cta-box:before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: var(--primary-color);
	opacity: 60%;
	width: 100%;
	height: 100%;
	z-index: 0;
}

.sidebar-cta-logo,
.cta-contact-item,
.sidebar-cta-image {
	position: relative;
	z-index: 1;
}

.sidebar-cta-logo {
	margin-bottom: 20px;
}

.sidebar-cta-logo img {
	width: 100%;
	max-width: 168px;
}

.cta-contact-item {
	background: var(--dark-divider-color);
	backdrop-filter: saturate(140%) blur(10px);
	-webkit-backdrop-filter: saturate(140%) blur(10px);
	padding: 20px 30px;
	border-radius: 20px;
	margin-bottom: 30px;
}

.cta-contact-header {
	display: flex;
	align-items: center;
	margin-bottom: 10px;
}

.cta-contact-header img {
	width: 100%;
	max-width: 20px;
	margin-right: 10px;
}

.cta-contact-header p {
	color: var(--white-color);
	margin-bottom: 0;
}

.cta-contact-item-content h3 {
	font-size: 24px;
	color: var(--white-color);
}

.cta-contact-item-content h3 a {
	color: inherit;
	transition: all 0.3s ease-in-out;
}

.cta-contact-item-content h3 a:hover {
	color: var(--accent-color);
}

.sidebar-cta-image {
	border-radius: 20px;
	overflow: hidden;
}

.sidebar-cta-image figure {
	display: block;
}

.sidebar-cta-image img {
	width: 100%;
	aspect-ratio: 1 / 0.483;
	object-fit: cover;
}

.page-single-image {
	margin-bottom: 40px;
}

.page-single-image figure {
	display: block;
	border-radius: 20px;
}

.page-single-image img {
	width: 100%;
	aspect-ratio: 1 / 0.598;
	object-fit: cover;
	border-radius: 20px;
}

.service-entry {
	margin-bottom: 60px;
}

.service-entry p {
	margin-bottom: 20px;
}

.service-entry p:last-child {
	margin-bottom: 0;
}

.service-entry h2 {
	font-size: 50px;
	font-weight: 700;
	margin-bottom: 20px;
}

.service-entry ul {
	display: flex;
	flex-wrap: wrap;
	gap: 15px 20px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.service-entry ul li {
	position: relative;
	width: calc(50% - 10px);
	line-height: 1.5em;
	padding-left: 30px;
}

.service-entry ul li::before {
	content: '\f14a';
	font-family: 'Font Awesome 6 Free';
	position: absolute;
	top: 0;
	left: 0;
	font-size: 18px;
	font-weight: 900;
	color: var(--accent-color);
}

.service-deliver-box,
.service-quality-box,
.service-caring-box {
	margin-top: 60px;
}

.service-deliver-image-content {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin-top: 40px;
}

.service-deliver-image,
.service-deliver-content {
	width: calc(50% - 15px);
}

.service-deliver-image figure {
	display: block;
	border-radius: 20px;
	height: 100%;
}

.service-deliver-image img {
	width: 100%;
	height: 100%;
	aspect-ratio: 1 / 0.75;
	object-fit: cover;
	border-radius: 20px;
}

.service-deliver-item {
	display: flex;
	background: var(--primary-color);
	border-radius: 20px;
	margin-bottom: 30px;
	padding: 30px;
}

.service-deliver-item:last-child {
	margin-bottom: 0;
}

.service-deliver-item .icon-box {
	position: relative;
	width: 50px;
	height: 50px;
	background: var(--accent-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 20px;
}

.service-deliver-item .icon-box::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background: var(--white-color);
	border-radius: 50%;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

.service-deliver-item:hover .icon-box::before {
	transform: scale(1);
}

.service-deliver-item .icon-box img {
	position: relative;
	width: 100%;
	max-width: 24px;
	z-index: 1;
}

.service-deliver-item-content {
	width: calc(100% - 70px);
}

.service-deliver-item-content h3 {
	font-size: 20px;
	text-transform: capitalize;
	color: var(--white-color);
	margin-bottom: 10px;
}

.service-deliver-item-content p {
	color: var(--white-color);
	margin-bottom: 0;
}

.service-quality-list,
.page-single-image-video {
	margin-top: 40px;
}

.page-single-image-video {
	position: relative;
	border-radius: 20px;
	overflow: hidden;
}

.page-single-image-video figure {
	display: block;
	border-radius: 20px;
}

.page-single-image-video figure::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--primary-color);
	opacity: 70%;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.page-single-image-video img {
	width: 100%;
	aspect-ratio: 1 / 0.35;
	object-fit: cover;
	border-radius: 20px;
}

.page-single-image-video .video-play-button {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 1;
}

.page-single-image-video .video-play-button a {
	width: 50px;
	height: 50px;
	margin: 0;
}

.page-single-image-video .video-play-button a:before,
.page-single-image-video .video-play-button a:after {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 160%;
	height: 160%;
	border: 50px solid var(--white-color);
	opacity: 30%;
	border-radius: 50%;
	transform: scale(0.6);
	z-index: -1;
	animation: border-zooming 1.2s infinite linear;
}

.page-single-image-video .video-play-button a:after {
	animation-delay: .3s;
}

@keyframes border-zooming {
	100% {
		transform: scale(1);
		opacity: 0;
	}
}

.service-caring-item-list {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin-top: 40px;
}

.service-caring-item {
	position: relative;
	width: calc(50% - 15px);
	display: flex;
	border-left: 4px solid var(--accent-color);
	background: var(--primary-color);
	border-radius: 20px;
	padding: 20px;
	overflow: hidden;
	transition: all 0.6s ease-in-out;
}

.service-caring-item:hover {
	background: transparent;
}

.service-caring-item::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	width: 0;
	height: 100%;
	background: var(--accent-color);
	transition: all 0.4s ease-in-out;
}

.service-caring-item:hover::before {
	width: 100%;
}

.service-caring-item .icon-box {
	position: relative;
	width: 50px;
	height: 50px;
	background: var(--accent-color);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: 20px;
	z-index: 1;
}

.service-caring-item .icon-box::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background: var(--white-color);
	border-radius: 50%;
	transform: scale(0);
	transition: all 0.3s ease-in-out;
	z-index: 0;
}

.service-caring-item:hover .icon-box::before {
	transform: scale(1);
}

.service-caring-item .icon-box img {
	position: relative;
	width: 100%;
	max-width: 24px;
	z-index: 1;
}

.service-caring-item-content {
	position: relative;
	width: calc(100% - 70px);
	z-index: 1;
}

.service-caring-item-content h3 {
	font-size: 20px;
	text-transform: capitalize;
	color: var(--white-color);
	margin-bottom: 5px;
	transition: all 0.4s ease-in-out;
}

.service-caring-item-content p {
	color: var(--white-color);
	margin-bottom: 0;
	transition: all 0.4s ease-in-out;
}

.service-caring-item:hover .service-caring-item-content h3,
.service-caring-item:hover .service-caring-item-content p {
	color: var(--primary-color);
}

.page-single-faqs .faq-accordion .accordion-item {
	border-bottom-color: var(--divider-color);
}

.page-single-faqs .faq-accordion .accordion-header .accordion-button {
	color: var(--primary-color);
}

.page-single-faqs .faq-accordion .accordion-item .accordion-button.collapsed::after {
	color: var(--primary-color);
}

.page-single-faqs .faq-accordion .accordion-item .accordion-body p {
	color: var(--text-color);
}

/************************************/
/*** 	 21. Blog Archive css	  ***/
/************************************/

.page-blog {
	padding: 100px 0;
}

.page-pagination {
	margin-top: 30px;
	text-align: center;
}

.page-pagination ul {
	justify-content: center;
	padding: 0;
	margin: 0;
}

.page-pagination ul li a,
.page-pagination ul li span {
	display: flex;
	text-decoration: none;
	justify-content: center;
	align-items: center;
	background: var(--divider-color);
	color: var(--primary-color);
	border-radius: 10px;
	width: 40px;
	height: 40px;
	margin: 0 5px;
	font-weight: 600;
	line-height: 1em;
	transition: all 0.3s ease-in-out;
}

.page-pagination ul li.active a,
.page-pagination ul li a:hover {
	background: var(--accent-color);
}

/************************************/
/*** 	 22. Blog Single css	  ***/
/************************************/

.page-single-post {
	padding: 100px 0;
}

.post-single-meta {
	margin-top: 5px;
}

.post-single-meta ol li {
	font-size: 18px;
	color: var(--white-color);
	margin-right: 15px;
}

.post-single-meta ol li:last-child {
	margin-right: 0;
}

.post-single-meta ol li i {
	font-size: 18px;
	color: var(--white-color);
	margin-right: 5px;
}

.post-image {
	position: relative;
	margin-bottom: 30px;
}

.post-image figure {
	display: block;
	border-radius: 20px;
	overflow: hidden;
}

.post-image img {
	width: 100%;
	aspect-ratio: 1 / 0.50;
	object-fit: cover;
	border-radius: 20px;
}

.post-content {
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
}

.post-entry {
	border-bottom: 1px solid var(--divider-color);
	padding-bottom: 30px;
	margin-bottom: 30px;
}

.post-entry:after {
	content: '';
	display: block;
	clear: both;
}

.post-entry a {
	color: var(--accent-color);
}

.post-entry h1,
.post-entry h2,
.post-entry h3,
.post-entry h4,
.post-entry h5,
.post-entry h6 {
	font-weight: 700;
	line-height: 1.1em;
	margin: 0 0 0.4em;
}

.post-entry h1 {
	font-size: 70px;
}

.post-entry h2 {
	font-size: 50px;
}

.post-entry h3 {
	font-size: 40px;
}

.post-entry h4 {
	font-size: 30px;
}

.post-entry h5 {
	font-size: 24px;
}

.post-entry h6 {
	font-size: 20px;
}

.post-entry p {
	margin-bottom: 20px;
}

.post-entry p:last-child {
	margin-bottom: 0;
}

.post-entry p strong {
	color: var(--primary-color);
	font-size: 18px;
	font-weight: 600;
}

.post-entry ol {
	margin: 0 0 30px;
}

.post-entry ul {
	padding: 0;
	margin: 20px 0 20px;
	padding-left: 20px;
}

.post-entry ol li,
.post-entry ul li {
	position: relative;
	font-size: 18px;
	font-weight: 500;
	line-height: 1.6em;
	color: var(--text-color);
	margin-bottom: 15px;
}

.post-entry ul li:last-child {
	margin-bottom: 0;
}

.post-entry ul ul,
.post-entry ul ol,
.post-entry ol ol,
.post-entry ol ul {
	margin-top: 20px;
	margin-bottom: 0;
}

.post-entry ul ul li:last-child,
.post-entry ul ol li:last-child,
.post-entry ol ol li:last-child,
.post-entry ol ul li:last-child {
	margin-bottom: 0;
}

.post-entry blockquote {
	background: url('../images/icon-blockquote.svg'), var(--primary-color);
	background-repeat: no-repeat;
	background-position: 30px 30px;
	background-size: 45px;
	border-radius: 20px;
	padding: 30px 30px 30px 90px;
	margin-bottom: 30px;
}

.post-entry blockquote p {
	font-size: 20px;
	font-weight: 700;
	line-height: 1.4em;
	color: var(--white-color);
}

.post-entry blockquote p:last-child {
	margin-bottom: 0;
}

.tag-links {
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	color: var(--primary-color);
	display: inline-flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 15px;
}

.post-tags .tag-links a {
	display: inline-block;
	font-size: 16px;
	font-weight: 600;
	text-transform: capitalize;
	line-height: 1em;
	background: var(--primary-color);
	color: var(--white-color);
	border-radius: 10px;
	padding: 12px 20px;
	transition: all 0.3s ease-in-out;
}

.post-tags .tag-links a:hover {
	background: var(--accent-color);
	color: var(--primary-color);
}

.post-social-sharing {
	text-align: right;
}

.post-social-sharing ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.post-social-sharing ul li {
	display: inline-block;
	margin-right: 10px;
}

.post-social-sharing ul li:last-child {
	margin-right: 0;
}

.post-social-sharing ul li a {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	background: var(--primary-color);
	color: var(--white-color);
	border-radius: 10px;
	width: 40px;
	height: 40px;
	transition: all 0.3s ease-in-out;
}

.post-social-sharing ul li:hover a {
	background: var(--accent-color);
	color: var(--primary-color);
}

.post-social-sharing ul li a i {
	font-size: 18px;
	color: inherit;
}

/************************************/
/*** 	 23. Our Products css	  ***/
/************************************/

.page-product {
	padding: 100px 0;
}

.our-product-box {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.product-item {
	width: calc(25% - 22.5px);
	background: var(--white-color);
	border-radius: 20px;
	text-align: center;
	padding: 30px;
}

.product-image {
	margin-bottom: 15px;
}

.product-image img {
	width: 220px;
	height: 220px;
	object-fit: contain;
}

.product-rating {
	margin-bottom: 15px;
}

.product-rating i {
	color: var(--accent-color);
}

.product-item-content h2 {
	font-size: 20px;
	margin-bottom: 10px;
}

.product-item-content h2 a {
	color: inherit;
}

.product-item-content h3 {
	font-size: 20px;
	color: var(--accent-color);
}

.product-item-content h3 span {
	font-size: 14px;
	text-decoration: line-through;
	color: var(--primary-color);
	opacity: 30%;
}

.page-product .page-pagination {
	margin-top: 60px;
}

/************************************/
/*** 	 24. Product Single css	  ***/
/************************************/

.page-product-single {
	padding: 100px 0;
}

.product-about-box {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 30px 60px;
}

.product-single-content,
.team-member-image {
	width: calc(50% - 30px);
}

.team-member-image {
	background: var(--white-color);
	border-radius: 20px;
	text-align: center;
	align-content: center;
	padding: 100px 40px;
}

.team-member-image figure img {
	width: 100%;
	max-width: 400px;
}

.customer-rating-box {
	margin-bottom: 30px;
}

.customer-rating-box i {
	font-size: 18px;
	color: var(--accent-color);
	margin-right: 2px;
}

.customer-rating-box i:last-child {
	margin-right: 0;
}

.customer-rating-box span {
	font-size: 14px;
	color: var(--primary-color);
	margin-left: 5px;
}

.product-single-content h3 {
	font-size: 30px;
	margin-bottom: 20px;
}

.product-single-content h3 span {
	font-size: 20px;
	color: var(--primary-color);
	opacity: 0.3;
	text-decoration: line-through;
}

.product-single-content h2 {
	font-size: 46px;
	margin-bottom: 20px;
}

.product-single-content p {
	margin-bottom: 20px;
}

.product-single-content ul {
	list-style: disc;
	padding: 0 0 0 22px;
	margin: 0 0 20px 0;
}

.product-single-content ul li {
	line-height: 1.4em;
	margin-bottom: 12px;
}

.product-single-content ul li:last-child {
	margin-bottom: 0;
}

.product-cart-btn {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin-top: 30px;
}

.product-cart-btn input {
	display: block;
	width: 50px;
	background: transparent;
	border: 1px solid var(--divider-color);
	border-radius: 10px;
	text-align: center;
	padding: 5px;
}

.product-cart-btn input:focus-visible {
	outline: none;
}

.product-cart-btn .btn-default {
	padding: 17px 20px;
}

.product-cart-btn .btn-default::before {
	display: none;
}

.product-single-info {
	margin-top: 100px;
}

.product-step-nav {
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 30px;
	padding-bottom: 30px;
}

.product-step-nav .nav-tabs {
	padding: 0;
	margin: 0;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	border: none;
}

.product-step-nav ul li {
	width: auto;
}

.product-step-nav ul li .nav-link {
	position: relative;
	width: 100%;
	background: transparent;
	border: none;
	color: var(--primary-color);
	font-size: 20px;
	font-weight: 600;
	line-height: 1em;
	padding: 0;
	border-radius: 0;
	margin: 0;
	text-transform: capitalize;
	transition: all 0.3s ease-in-out;
}

.product-step-nav ul li .nav-link.active,
.product-step-nav ul li .nav-link:hover {
	background: transparent;
	color: var(--accent-color);
}

.product-step-nav ul li .nav-link::before {
	content: '';
	display: block;
	position: absolute;
	top: auto;
	left: auto;
	bottom: -32px;
	right: 0;
	background: var(--primary-color);
	width: 0;
	height: 2px;
	transition: all 0.4s ease-in-out;
}

.product-step-nav ul li .nav-link.active::before,
.product-step-nav ul li .nav-link:hover:before {
	width: 100%;
	right: auto;
	left: 0;
}

.product-tab-item-box h3 {
	font-size: 20px;
	margin-top: 20px;
}

.product-tab-item-box h2 {
	font-size: 46px;
	margin-top: 20px;
}

.product-tab-item-box p {
	margin: 20px 0 0 0;
}

.product-tab-item-box ul {
	list-style: disc;
	padding: 0 0 0 22px;
	margin: 20px 0 0 0;
}

.product-tab-item-box ul li {
	line-height: 1.4em;
	margin-bottom: 12px;
}

.product-tab-item-box ul li:last-child {
	margin-bottom: 0;
}

.product-review-from-content {
	display: flex;
	flex-wrap: wrap;
	gap: 30px 60px;
}

.review-form,
.customer-review-list {
	width: calc(50% - 30px);
}

.customer-review-item {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 40px;
}

.customer-review-item:last-child {
	margin-bottom: 0;
}

.customer-review-item .icon-box {
	margin-right: 20px;
}

.customer-review-item .icon-box img {
	width: 100%;
	max-width: 60px;
	border-radius: 50%;
}

.customer-review-item-body {
	width: calc(100% - 80px);
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 10px;
}

.customer-review-item-content p {
	margin: 0 0 5px 0;
}

.customer-review-item-content p:last-child {
	margin-bottom: 0;
}

.customer-review-item-content p span {
	color: var(--primary-color);
	font-weight: 600;
}

.customer-review-item-rating i {
	color: var(--accent-color);
	font-size: 16px;
}

.review-form-content {
	margin-bottom: 30px;
}

.review-form-content h3 {
	font-size: 20px;
	margin: 0;
}

.review-form-content p {
	margin: 15px 0 0 0;
}

.review-form .form-control {
	font-size: 18px;
	font-weight: 400;
	line-height: 1.445em;
	color: var(--white-color);
	background-color: transparent;
	border: 1px solid var(--divider-color);
	border-radius: 10px;
	padding: 17px 20px;
	box-shadow: none;
	outline: none;
}

.review-form .form-control::placeholder {
	color: var(--primary-color);
}

.review-form-note {
	display: flex;
	align-items: baseline;
	gap: 5px;
}

.review-form-note .form-label {
	margin: 0;
}

.review-form .btn-default {
	width: 100%;
	padding: 17px;
	margin-top: 20px;
}

.review-form .btn-default::before {
	display: none;
}

.related-products-box {
	margin-top: 100px;
}

.related-products-list {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.related-products-box .section-title {
	max-width: 700px;
	margin: 0 auto 40px;
	text-align: center;
}

/************************************/
/*** 	   25. Team Page css	  ***/
/************************************/

.page-team {
	padding: 100px 0 70px;
}

/************************************/
/*** 	 26. Team Single css	  ***/
/************************************/

.page-team-single {
	padding: 100px 0;
}

.team-single-image {
	margin-bottom: 60px;
}

.team-single-image figure {
	display: block;
	border-radius: 20px;
}

.team-single-image img {
	width: 100%;
	aspect-ratio: 1 / 1.58;
	object-fit: cover;
	border-radius: 20px;
}

.team-sidebar-category-box {
	background: var(--white-color);
	border-radius: 20px;
	padding: 40px;
}

.team-sidebar-category-item {
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 25px;
	padding-bottom: 25px;
}

.team-sidebar-category-item:last-child {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

.team-sidebar-category-item h3 {
	font-size: 20px;
	margin-bottom: 10px;
}

.team-category-info {
	display: flex;
	align-items: center;
}

.team-category-info img {
	width: 100%;
	max-width: 20px;
	margin-right: 10px;
}

.team-category-info p {
	margin-bottom: 0;
}

.team-sidebar-category-item ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.team-sidebar-category-item ul li {
	display: inline-block;
	border-radius: 50%;
	margin-right: 15px;
}

.team-sidebar-category-item ul li:last-child {
	margin-right: 0;
}

.team-sidebar-category-item ul li a {
	background: var(--primary-color);
	border-radius: 50%;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.4s ease-in-out;
}

.team-sidebar-category-item ul li:hover a {
	background-color: var(--accent-color);
}

.team-sidebar-category-item ul li a i {
	color: var(--white-color);
	font-size: 18px;
	transition: all 0.3s ease-in-out;
}

.team-sidebar-category-item ul li:hover a i {
	color: var(--primary-color);
}

.team-member-about,
.team-member-service,
.team-skills-box {
	margin-bottom: 60px;
}

.team-member-about .section-title {
	margin-bottom: 0;
}

.member-service-list,
.member-service-counters {
	margin-top: 40px;
}

.member-service-list ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.member-service-list ul li {
	position: relative;
	line-height: 1.4em;
	padding-left: 25px;
	margin-bottom: 15px;
}

.member-service-list ul li:last-child {
	margin-bottom: 0;
}

.member-service-list ul li::before {
	content: '\f14a';
	font-family: 'Font Awesome 6 Free';
	position: absolute;
	top: 0;
	left: 0;
	font-size: 18px;
	font-weight: 900;
	color: var(--accent-color);
}

.member-service-counters {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.member-service-counter-item {
	position: relative;
	width: calc(33.33% - 20px);
	background: var(--white-color);
	border: 1px solid var(--divider-color);
	border-radius: 20px;
	padding: 40px 35px;
	overflow: hidden;
}

.member-service-counter-item::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 0;
	background-color: var(--primary-color);
	border-radius: 500px 500px 0 0;
	transition: all 0.4s ease-in-out;
}

.member-service-counter-item:hover:before {
	height: 100%;
	border-radius: 0;
}

.member-service-counter-item h2,
.member-service-counter-item p {
	position: relative;
	transition: all 0.3s ease-in-out;
	z-index: 1;
}

.member-service-counter-item h2 {
	font-size: 50px;
	margin-bottom: 5px;
}

.member-service-counter-item:hover h2 {
	color: var(--accent-color);
}

.member-service-counter-item p {
	margin-bottom: 0;
}

.member-service-counter-item:hover p {
	color: var(--white-color);
}

.team-skills-list {
	display: flex;
	flex-wrap: wrap;
	gap: 40px 30px;
	margin-top: 40px;
}

.team-skills-list .skills-progress-bar {
	width: calc(50% - 15px);
	margin-bottom: 0;
}

.team-skills-list .skills-progress-bar .skill-data .skill-title,
.team-skills-list .skills-progress-bar .skill-data .skill-no {
	color: var(--text-color);
}

.team-skills-list .skills-progress-bar .skillbar .skill-progress {
	background: var(--divider-color);
}

.team-skills-list .skills-progress-bar .skillbar .skill-progress .count-bar {
	background: var(--primary-color);
}

/************************************/
/***  27. Testimonials Page css	  ***/
/************************************/

.page-testimonials {
	padding: 60px 0 40px;
}

.page-testimonials .testimonial-item {
	background-color: var(--primary-color);
	border-radius: 20px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	padding: 40px;
}

.page-testimonials .testimonial-item .testimonial-content {
	margin-bottom: 40px;
}

/************************************/
/*** 	 28. Image Gallery css	  ***/
/************************************/

.page-gallery {
	padding: 100px 0 70px;
}

.page-gallery-box .photo-gallery {
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.page-gallery-box .photo-gallery a {
	cursor: none;
}

.page-gallery-box .photo-gallery figure {
	display: block;
	border-radius: 20px;
}

.page-gallery-box .photo-gallery img {
	width: 100%;
	aspect-ratio: 1 / 0.829;
	object-fit: cover;
	border-radius: 20px;
}

/************************************/
/*** 	 29. Video Gallery css	  ***/
/************************************/

.page-video-gallery {
	padding: 100px 0 70px;
}

.video-gallery-image {
	height: calc(100% - 30px);
	margin-bottom: 30px;
	overflow: hidden;
}

.video-gallery-image a {
	position: relative;
	display: block;
	cursor: none;
}

.video-gallery-image a::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: var(--primary-color);
	border-radius: 20px;
	opacity: 0%;
	visibility: hidden;
	width: 100%;
	height: 100%;
	z-index: 1;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
}

.video-gallery-image:hover a::before {
	opacity: 50%;
	visibility: visible;
	transform: scale(1);
}

.video-gallery-image a::after {
	content: '\f04b';
	font-family: 'FontAwesome';
	position: absolute;
	top: 50%;
	left: 50%;
	right: 0;
	transform: translate(-50%, -50%);
	font-size: 20px;
	background: var(--accent-color);
	color: var(--white-color);
	border-radius: 50%;
	height: 60px;
	width: 60px;
	cursor: none;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: all 0.5s ease-in-out;
	z-index: 1;
}

.video-gallery-image:hover a::after {
	opacity: 1;
	visibility: visible;
}

.video-gallery-image img {
	width: 100%;
	aspect-ratio: 1 / 0.829;
	object-fit: cover;
	border-radius: 20px;
}

/************************************/
/*** 	  30. FAQs Page css		  ***/
/************************************/

.page-faqs {
	padding: 100px 0;
}

.page-faqs .page-faq-accordion {
	margin-bottom: 60px;
}

.page-faqs .page-faq-accordion:last-child {
	margin-bottom: 0px;
}

/************************************/
/*** 	31. Contact Us Page css	  ***/
/************************************/

.page-contact-us {
	padding: 60px 0;
}

.contact-us-content {
	margin-right: 20px;
}

.contact-info-item {
	display: flex;
	flex-wrap: wrap;
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 10px;
	/* padding-bottom: 30px; */
}

.contact-info-item:last-child {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

.contact-info-item .icon-box {
	position: relative;
	background-color: var(--accent-color);
	height: 50px;
	width: 50px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 20px;
	overflow: hidden;
	z-index: 1;
}

.contact-info-item .icon-box::before {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	border-radius: 50%;
	background-color: var(--primary-color);
	transform: scale(0);
	transition: all 0.4s ease-in-out;
	height: 100%;
	height: 100%;
}

.contact-info-item:hover .icon-box::before {
	transform: scale(1);
}

.contact-info-item .icon-box img {
	position: relative;
	max-width: 24px;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.contact-info-item:hover .icon-box img {
	filter: brightness(0) invert(1);
}

.contact-item-content {
	position: relative;
	width: calc(100% - 70px);
	z-index: 1;
}

.contact-item-content h3 {
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 5px;
}

.contact-item-content p {
	margin: 0;
}

.contact-item-content p a {
	color: inherit;
	transition: all 0.3s ease-in-out;
}

.contact-item-content p a:hover {
	color: var(--primary-color);
}

.contact-social-links {
	display: flex;
	align-items: center;
	gap: 20px;
	border-top: 1px solid var(--divider-color);
	margin-top: 30px;
	padding-top: 30px;
}

.contact-social-links h3 {
	font-size: 20px;
}

.contact-social-links ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.contact-social-links ul li {
	display: inline-block;
	border-radius: 50%;
	margin-right: 10px;
}

.contact-social-links ul li:last-child {
	margin-right: 0;
}

.contact-social-links ul li a {
	background: var(--primary-color);
	border-radius: 50%;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.4s ease-in-out;
}

.contact-social-links ul li:hover a {
	background-color: var(--accent-color);
}

.contact-social-links ul li a i {
	color: var(--white-color);
	font-size: 18px;
	transition: all 0.3s ease-in-out;
}

.contact-social-links ul li:hover a i {
	color: var(--primary-color);
}

.contact-us-form {
	position: relative;
	border-radius: 20px;
	padding: 40px;
}

.contact-form .form-control {
	font-size: 18px;
	font-weight: 400;
	line-height: 1.445em;
	color: var(--white-color);
	background-color: var(--dark-divider-color);
	border: none;
	border-radius: 20px;
	padding: 17px 20px;
	box-shadow: none;
	outline: none;
}

.contact-form .form-control::placeholder {
	color: var(--white-color);
}

.contact-form .btn-default {
	width: 100%;
	padding: 17px;
}

.contact-form .btn-default::before {
	display: none;
}

.google-map .container-fluid {
	padding: 0;
}

.google-map-iframe {
	height: 700px;
}

.google-map-iframe iframe {
	width: 100%;
	height: 700px;
	filter: grayscale(1);
	transition: all 0.4s ease-in-out;
}

.google-map-iframe iframe:hover {
	filter: grayscale(0);
}

/************************************/
/*** 	32. 404 Error Page css	  ***/
/************************************/

.error-page {
	padding: 100px 0;
}

.error-page-image {
	text-align: center;
	margin-bottom: 30px;
}

.error-page-image img {
	width: 100%;
	max-width: 45%;
}

.error-page-content {
	text-align: center;
}

.error-page-content .section-title {
	margin-bottom: 15px;
}

/************************************/
/***      33. Responsive css      ***/
/************************************/

@media only screen and (max-width: 1024px) {

	.main-menu ul li {
		margin: 0;
	}
}

@media only screen and (max-width: 991px) {

	body {
		font-size: 16px;
	}

	.btn-default {
		font-size: 16px;
		padding: 14px 50px 14px 15px;
	}

	.btn-default::before {
		width: 35px;
		height: 35px;
	}

	.navbar {
		/* padding: 20px 0; */
	}

	.slicknav_nav li,
	.slicknav_nav ul {
		display: block;
	}

	.responsive-menu,
	.navbar-toggle {
		display: block;
	}

	.header-btn {
		display: none;
	}

	.section-row {
		margin-bottom: 40px;
	}

	.section-row .section-title.section-title-center {
		max-width: 100%;
	}

	.section-content-btn .section-btn {
		margin-top: 20px;
	}

	.section-title {
		margin-bottom: 10px;
	}

	.section-title h3 {
		padding-left: 25px;
		background-size: 18px auto;
	}

	.section-title h1 {
		font-size: 50px;
	}

	.section-title h2 {
		font-size: 38px;
	}

	.section-title p {
		margin-top: 10px;
	}

	.section-title-content {
		margin-top: 10px;
	}

	.section-btn {
		text-align: left;
		margin-top: 15px;
	}

	.hero {
		padding: 170px 0 80px;
	}

	.hero-content .section-title p {
		max-width: 100%;
	}

	.hero-btn {
		margin: 0 0 30px;
	}

	.our-scrolling-ticker {
		padding: 20px 0;
	}

	.scrolling-ticker-box {
		--gap: 20px;
	}

	.scrolling-content span {
		font-size: 24px;
	}

	.scrolling-content span img {
		max-width: 26px;
		margin-right: 20px;
	}

	.about-us {
		padding: 50px 0;
	}

	.about-us::before {
		bottom: 40px;
		width: 170px;
		height: 170px;
		opacity: 20%;
	}

	.about-us-images {
		max-width: 70%;
		margin: 0 auto 30px;
	}

	.about-image-circle {
		top: -65px;
	}

	.about-image-circle a img {
		max-width: 120px;
	}

	.about-us-list,
	.about-us-body {
		margin-bottom: 30px;
	}

	.about-us-list ul li {
		padding-left: 25px;
		margin-bottom: 10px;
	}

	.about-us-footer {
		gap: 20px 30px;
	}

	.our-services {
		padding: 50px 0;
	}

	.service-item,
	.service-cta-box {
		padding: 30px;
	}

	.service-item .icon-box {
		height: 50px;
		width: 50px;
		margin-bottom: 30px;
	}

	.service-item .icon-box img {
		max-width: 26px;
	}

	.service-item-content {
		margin-bottom: 20px;
	}

	.service-item-content h3 {
		margin-bottom: 10px;
	}

	.service-cta-box-info {
		margin-bottom: 20px;
	}

	.service-cta-box-info h2 {
		font-size: 26px;
	}

	.section-footer-text {
		margin-top: 10px;
	}

	.why-choose-us {
		padding: 50px 0;
	}

	.why-choose-content,
	.why-choose-image {
		width: 100%;
	}

	.why-choose-item {
		margin-bottom: 30px;
		padding-bottom: 30px;
		padding-right: 0;
	}

	.why-choose-item-content h3 {
		font-size: 20px;
	}

	.why-choose-list ul li {
		padding-left: 25px;
		margin-bottom: 10px;
	}

	.why-choose-btn {
		margin-top: 30px;
	}

	.why-choose-body-img img {
		aspect-ratio: 1 / 0.9;
		object-position: top center;
	}

	.why-choose-image {
		padding: 0 0 50px 0;
	}

	.why-choose-image img {
		aspect-ratio: 1 / 0.8;
		object-position: top center;
	}

	.company-experience-box h3 {
		font-size: 26px;
	}

	.intro-video {
		padding: 70px 0 50px;
	}

	.intro-video-list {
		margin-top: 30px;
		padding-top: 30px;
	}

	.intro-video-list ul {
		gap: 15px 20px;
	}

	.intro-video-list ul li {
		width: calc(50% - 10px);
		padding-left: 25px;
	}

	.what-we-do {
		padding: 50px 0;
	}

	.what-we-do-content {
		margin-right: 0;
		margin-bottom: 30px;
	}

	.what-we-do-body {
		margin-bottom: 30px;
	}

	.what-we-do-list {
		width: calc(100% - 170px);
	}

	.what-we-do-list ul li {
		padding-left: 25px;
		margin-bottom: 10px;
	}

	.what-we-do-body .about-image-circle a img {
		max-width: 140px;
	}

	.what-we-do-images {
		max-width: 80%;
		padding: 15px 240px 140px 25px;
		margin: 0 auto;
	}

	.what-we-do-img-1 img {
		aspect-ratio: 1 / 1.34;
	}

	.what-we-do-img-2 {
		top: 5px;
		right: 15px;
		max-width: 240px;
	}

	.what-we-do-img-2::before {
		right: 30px;
		height: 110px;
		width: 70px;
	}

	.what-we-do-img-2 img {
		aspect-ratio: 1 / 1.32;
	}

	.what-we-do-img-3 {
		max-width: 330px;
	}

	.what-we-do-img-3 img {
		aspect-ratio: 1 / 0.62;
	}

	.client-review-box {
		padding: 15px;
	}

	.our-facts-image {
		max-width: 60%;
		height: auto;
		margin: 0 auto;
	}

	.facts-counter-box {
		padding: 30px 0;
		margin: 30px 0;
	}

	.fact-counter-item h2 {
		font-size: 34px;
	}

	.our-facts-content {
		height: auto;
		margin-bottom: 30px;
	}

	.our-facts-list ul {
		gap: 15px 30px;
	}

	.our-facts-list ul li {
		padding-left: 25px;
	}

	.our-facts-btn {
		margin-top: 18px;
	}

	.our-potential {
		padding: 50px 0;
	}

	.our-potential-content {
		height: auto;
		margin-bottom: 30px;
	}

	.our-potential-counter {
		padding-bottom: 30px;
		margin-bottom: 30px;
	}

	.potential-counter-item .counter-circle {
		width: 100px;
		height: 100px;
	}

	.potential-counter-item .counter-circle h2 {
		font-size: 26px;
	}

	.potential-counter-content {
		width: calc(100% - 120px);
	}

	.potential-body-list ul li {
		padding-left: 25px;
		margin-bottom: 10px;
	}

	.potential-body-content h3 {
		margin-bottom: 15px;
	}

	.our-potential-img {
		margin-left: 0px;
	}

	.our-potential-img img {
		aspect-ratio: 1 / 0.9;
	}

	.our-testimonial {
		padding: 50px 0;
	}

	.our-testimonial-image {
		margin: 0 0 30px;
	}

	.our-testimonial-image img {
		aspect-ratio: 1 / 0.8;
	}

	.testimonial-rating {
		margin-bottom: 10px;
	}

	.testimonial-content {
		margin-bottom: 50px;
	}

	.testimonial-content p {
		font-size: 18px;
	}

	.testimonial-slider .testimonial-button-next,
	.testimonial-slider .testimonial-button-prev {
		width: 40px;
		height: 40px;
	}

	.testimonial-slider .testimonial-button-next::before,
	.testimonial-slider .testimonial-button-prev::before {
		background-size: 20px auto;
	}

	.testimonial-company-slider {
		padding-top: 40px;
		margin-top: 40px;
	}

	.our-goals {
		padding: 50px 0;
	}

	.our-goals-content {
		margin-bottom: 30px;
	}

	.goals-item {
		padding: 20px;
	}

	.goals-item .icon-box {
		margin-bottom: 30px;
	}

	.goals-content-footer {
		margin-top: 30px;
	}

	.our-goals-images {
		margin-left: 0px;
	}

	.our-faqs {
		padding: 50px 0;
	}

	.our-faqs-content {
		position: initial;
		margin-right: 0;
		margin-bottom: 30px;
	}

	.faq-cta-box {
		padding: 20px;
	}

	.faq-accordion .accordion-item {
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

	.our-blog {
		padding: 1px 0 20px;
	}

	.post-item-content {
		margin-bottom: 15px;
	}

	footer.main-footer {
		padding: 33px 0 0 0;
	}

	.footer-newsletter-box {
		margin-bottom: 30px;
	}

	.newsletter-form .form-group {
		width: 100%;
	}

	.newsletter-form .form-group .form-control {
		padding: 12px 15px;
	}

	.newsletter-form .form-group .newsletter-btn i {
		font-size: 24px;
	}

	.footer-links h3 {
		margin-bottom: 20px;
	}

	.footer-cta-box {
		margin-top: 30px;
		padding: 30px;
	}

	.footer-contact-item {
		padding-right: 20px;
		margin-right: 20px;
	}

	.footer-copyright {
		padding: 30px 0;
	}

	.footer-menu ul li {
		margin-right: 20px;
	}

	.footer-menu ul li::before {
		right: -14px;
	}

	.page-header {
		padding: 40px 0 60px;
	}

	.page-header-box h1 {
		font-size: 50px;
	}

	.our-approach {
		padding: 50px 0;
	}

	.approach-goal-img img {
		aspect-ratio: 1 / 0.42;
	}

	.approach-goal-content {
		right: 20px;
		bottom: 20px;
		left: 20px;
	}

	.approach-goal-content h3,
	.mission-vision-item h3 {
		padding-left: 25px;
	}

	.approach-goal-content h3::before,
	.mission-vision-item h3::before {
		width: 18px;
		height: 18px;
	}

	.approach-goal-content h3 {
		margin-bottom: 10px;
	}

	.approach-goal-content h2 {
		font-size: 20px;
	}

	.mission-vision-item {
		padding: 20px;
	}

	.mission-vision-item h3 {
		margin-bottom: 30px;
	}

	.mission-vision-item h2 {
		margin-bottom: 15px;
	}

	.our-features {
		padding: 50px 0;
	}

	.our-features-item {
		width: 100%;
		align-items: center;
		gap: 20px 30px;
	}

	.our-features-item:nth-child(even) {
		flex-direction: row-reverse;
	}

	.our-features-image,
	.our-features-content {
		width: calc(50% - 15px);
	}

	.our-features-image img {
		aspect-ratio: 1 / 0.72;
	}

	.our-features-body {
		width: calc(100% - 75px);
	}

	.our-features-body h2 {
		font-size: 38px;
		margin-bottom: 15px;
	}

	.our-features-content .icon-box img {
		max-width: 60px;
	}

	.our-team {
		padding: 50px 0;
	}

	.team-image img {
		aspect-ratio: 1 / 0.98;
	}

	.our-expertise {
		padding: 50px 0;
	}

	.our-expertise-content {
		margin-bottom: 30px;
	}

	.our-expertise-body ul {
		margin: 0 0 30px;
	}

	.our-expertise-body ul li {
		padding-left: 25px;
	}

	.skills-progress-bar {
		margin-bottom: 20px;
	}

	.expertise-image {
		margin-left: 0;
	}

	.expertise-image-list {
		max-width: 190px;
	}

	.page-services {
		padding: 50px 0 20px;
	}

	.page-service-single {
		padding: 50px 0;
	}

	.page-single-sidebar {
		position: initial;
		margin: 0 0 30px;
	}

	.page-category-list {
		margin-bottom: 30px;
	}

	.page-category-list h3 {
		padding: 20px;
	}

	.page-category-list ul {
		padding: 30px;
	}

	.page-category-list ul li {
		margin-bottom: 15px;
		padding-bottom: 15px;
	}

	.page-category-list ul li a {
		padding-right: 25px;
	}

	.page-category-list ul li a::before {
		width: 20px;
		height: 20px;
	}

	.sidebar-cta-box {
		padding: 30px;
	}

	.sidebar-cta-logo {
		margin-bottom: 15px;
	}

	.cta-contact-item {
		padding: 15px 20px;
		margin-bottom: 20px;
	}

	.cta-contact-item-content h3 {
		font-size: 22px;
	}

	.sidebar-cta-image img {
		aspect-ratio: 1 / 0.35;
	}

	.page-single-image {
		margin-bottom: 30px;
	}

	.service-entry {
		margin-bottom: 40px;
	}

	.service-entry p {
		margin-bottom: 15px;
	}

	.service-entry h2 {
		font-size: 38px;
		margin-bottom: 15px;
	}

	.service-entry ul {
		gap: 10px 20px;
	}

	.service-entry ul li {
		padding-left: 25px;
	}

	.service-deliver-box,
	.service-quality-box,
	.service-caring-box {
		margin-top: 40px;
	}

	.service-deliver-image-content {
		margin-top: 30px;
	}

	.service-deliver-item {
		padding: 20px;
	}

	.service-quality-list,
	.page-single-image-video {
		margin-top: 30px;
	}

	.service-caring-item-list {
		gap: 20px;
		margin-top: 30px;
	}

	.service-caring-item {
		width: calc(50% - 10px);
	}

	.page-blog {
		padding: 50px 0;
	}

	.page-pagination {
		margin-top: 10px;
	}

	.page-single-post {
		padding: 50px 0;
	}

	.post-image {
		margin-bottom: 20px;
	}

	.post-entry h1,
	.post-entry h2,
	.post-entry h3,
	.post-entry h4,
	.post-entry h5,
	.post-entry h6 {
		margin: 0 0 0.42em;
	}

	.post-entry h2 {
		font-size: 38px;
	}

	.post-entry p {
		margin-bottom: 15px;
	}

	.post-entry ol li,
	.post-entry ul li {
		font-size: 16px;
		margin-bottom: 10px;
	}

	.post-entry blockquote {
		background-position: 20px 20px;
		background-size: 40px;
		padding: 20px 20px 20px 70px;
		margin-bottom: 20px;
	}

	.post-entry blockquote p {
		font-size: 18px;
	}

	.post-tags {
		margin-bottom: 20px;
	}

	.tag-links {
		gap: 10px;
	}

	.post-tags .tag-links a {
		padding: 10px 15px;
	}

	.post-social-sharing ul {
		text-align: left;
	}

	.page-product {
		padding: 50px 0;
	}

	.product-item {
		width: calc(50% - 15px);
		padding: 20px;
	}

	.product-image img {
		width: 200px;
		height: 200px;
	}

	.page-product .page-pagination {
		margin-top: 40px;
	}

	.page-product-single {
		padding: 50px 0;
	}

	.product-single-content,
	.team-member-image {
		width: 100%;
	}

	.team-member-image {
		padding: 30px;
	}

	.customer-rating-box {
		margin-bottom: 20px;
	}

	.product-single-content h3 {
		font-size: 26px;
		margin-bottom: 10px;
	}

	.product-single-content h2 {
		font-size: 36px;
		margin-bottom: 10px;
	}

	.product-single-content p {
		margin-bottom: 15px;
	}

	.product-single-content ul li {
		margin-bottom: 10px;
	}

	.product-cart-btn {
		margin-top: 20px;
	}

	.product-cart-btn .btn-default {
		padding: 15px;
	}

	.product-single-info {
		margin-top: 50px;
	}

	.product-step-nav {
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

	.product-step-nav ul li .nav-link {
		font-size: 16px;
	}

	.product-step-nav ul li .nav-link::before {
		bottom: -21px;
	}

	.product-tab-item-box h2 {
		font-size: 36px;
		margin-bottom: 10px;
	}

	.product-tab-item-box p {
		margin: 15px 0 0 0;
	}

	.product-tab-item-box ul li {
		margin-top: 10px;
	}

	.review-form,
	.customer-review-list {
		width: 100%;
	}

	.customer-review-item {
		margin-bottom: 30px;
	}

	.customer-review-item-content p {
		margin: 0 0 5px 0;
	}

	.review-form .form-control {
		font-size: 16px;
		padding: 12px 15px;
	}

	.related-products-box {
		margin-top: 50px;
	}

	.related-products-box .section-title {
		margin: 0 auto 30px;
	}

	.page-team {
		padding: 50px 0 20px;
	}

	.page-team-single {
		padding: 50px 0;
	}

	.team-single-image {
		margin-bottom: 30px;
	}

	.team-single-image img {
		aspect-ratio: 1 / 0.8;
	}

	.team-sidebar-category-box {
		padding: 30px;
	}

	.team-sidebar-category-item {
		margin-bottom: 15px;
		padding-bottom: 15px;
	}

	.team-sidebar-category-item ul li {
		margin-right: 10px;
	}

	.team-member-about,
	.team-member-service,
	.team-skills-box {
		margin-bottom: 40px;
	}

	.member-service-list,
	.member-service-counters {
		margin-top: 30px;
	}

	.member-service-list ul li {
		margin-bottom: 10px;
	}

	.member-service-counter-item {
		padding: 30px 25px;
	}

	.member-service-counter-item h2 {
		font-size: 38px;
	}

	.team-skills-list {
		gap: 30px;
		margin-top: 30px;
	}

	.page-testimonials {
		padding: 50px 0 20px;
	}

	.page-testimonials .testimonial-item {
		padding: 20px;
	}

	.page-testimonials .testimonial-item .testimonial-content {
		margin-bottom: 20px;
	}

	.page-gallery {
		padding: 50px 0 20px;
	}

	.page-video-gallery {
		padding: 50px 0 20px;
	}

	.page-faqs {
		padding: 50px 0;
	}

	.page-faqs .page-faq-accordion {
		margin-bottom: 40px;
	}

	.page-contact-us {
		padding: 50px 0;
	}

	.contact-us-content {
		margin: 0 0 30px;
	}

	.contact-info-item {
		/* margin-bottom: 20px; */
		/* padding-bottom: 20px; */
	}

	.contact-social-links {
		margin-top: 20px;
		padding-top: 20px;
	}

	.contact-us-form {
		padding: 30px;
	}

	.contact-form .form-control {
		border-radius: 14px;
		padding: 13px 15px;
	}

	.contact-form .btn-default {
		padding: 14px;
	}

	.google-map-iframe,
	.google-map-iframe iframe {
		height: 450px;
	}

	.error-page {
		padding: 50px 0;
	}

	.error-page-image {
		margin-bottom: 20px;
	}

	.error-page-image img {
		max-width: 80%;
	}
}

@media only screen and (max-width: 767px) {

	.section-row {
		margin-bottom: 30px;
	}

	.section-title h1 {
		font-size: 20px;
	}

	.section-title h2 {
		font-size: 26px;
	}

	.hero::before {
		/* background: linear-gradient(0deg, rgba(24, 85, 92, 0.6) 87.63%, rgba(24, 85, 92, 0.60) 100.45%), linear-gradient(90deg, rgba(24, 85, 92, 0.90) 24.36%, rgba(24, 85, 92, 0.00) 100%); */
	}

	.hero-btn {
		gap: 20px;
	}

	.hero-counter-box h3 {
		font-size: 18px;
	}

	.our-scrolling-ticker {
		padding: 15px 0;
	}

	.scrolling-ticker-box {
		--gap: 15px;
	}

	.scrolling-content span {
		font-size: 20px;
	}

	.scrolling-content span img {
		max-width: 22px;
		margin-right: 15px;
	}

	.about-us-images {
		max-width: 100%;
		/* padding: 20px 30px 20px 30px; */
	}

	.about-image-2 {
		max-width: 240px;
	}

	.about-image-3 {
		max-width: 190px;
	}

	.about-image-circle a img {
		max-width: 100px;
	}

	.about-us-body {
		gap: 20px;
	}

	.about-body-image,
	.about-body-content {
		width: 100%;
	}

	.about-body-content h3 {
		font-size: 18px;
	}

	.about-us-footer {
		gap: 15px 20px;
	}

	.contact-now-box .icon-box {
		width: 44px;
		height: 44px;
		margin-right: 5px;
	}

	.contact-now-box .icon-box img {
		max-width: 20px;
	}

	.contact-now-box-content p {
		margin-bottom: 2px;
	}

	.contact-now-box-content h3 {
		font-size: 18px;
	}

	.service-item {
		padding: 20px;
	}

	.service-item .icon-box {
		margin-bottom: 20px;
	}

	.service-item-content h3 {
		font-size: 18px;
	}

	.service-cta-box {
		padding: 40px 20px;
	}

	.service-cta-box .contact-now-box .icon-box {
		margin-right: 15px;
	}

	.service-cta-box-info h3 {
		font-size: 18px;
	}

	.service-cta-box-info h2 {
		font-size: 22px;
	}

	.why-choose-content-box,
	.why-choose-body-img {
		width: 100%;
	}

	.why-choose-item {
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

	.why-choose-item .icon-box {
		margin-bottom: 15px;
	}

	.why-choose-item-content h3 {
		font-size: 18px;
	}

	.why-choose-btn {
		margin-top: 20px;
	}

	.why-choose-img img {
		object-position: center center;
	}

	.company-experience-box {
		width: 110px;
		height: 110px;
		padding: 15px;
	}

	.company-experience-box h3 {
		font-size: 22px;
	}

	.company-experience-box p {
		font-size: 14px;
	}

	.intro-video .section-title {
		margin-bottom: 30px;
	}

	.video-play-button {
		justify-content: left;
	}

	.intro-video-list ul {
		gap: 10px;
	}

	.intro-video-list ul li {
		width: 100%;
	}

	.what-we-do-body {
		gap: 20px;
	}

	.what-we-do-list {
		width: 100%;
	}

	.what-we-do-body .about-image-circle a img {
		max-width: 100px;
	}

	.what-we-do-images {
		max-width: 100%;
		padding: 10px 150px 100px 15px;
	}

	.what-we-do-img-1 img {
		aspect-ratio: 1 / 1.45;
	}

	.what-we-do-img-2,
	.what-we-do-img-3 {
		border-width: 4px;
	}

	.what-we-do-img-2 figure,
	.what-we-do-img-3 figure {
		border-radius: 16px;
	}

	.what-we-do-img-2 {
		max-width: 150px;
	}

	.what-we-do-img-2::before {
		right: 18px;
		height: 80px;
		width: 40px;
	}

	.what-we-do-img-2 img {
		aspect-ratio: 1 / 1.4;
	}

	.what-we-do-img-3 {
		bottom: 10px;
		max-width: 180px;
	}

	.client-review-box {
		bottom: 10px;
		max-width: 140px;
		padding: 10px;
	}

	.client-review-images {
		margin-bottom: 5px;
	}

	.client-review-image {
		margin-left: -6px;
	}

	.client-review-image figure,
	.client-review-image.add-more {
		width: 30px;
		height: 30px;
	}

	.client-review-image.add-more p {
		font-size: 10px;
	}

	.client-review-content p {
		font-size: 12px;
	}

	.facts-counter-box {
		gap: 20px;
		padding: 20px 0;
		margin: 20px 0;
	}

	.fact-counter-item {
		width: calc(33.33% - 13.33px);
	}

	.fact-counter-item::before {
		right: -10px;
	}

	.fact-counter-item h2 {
		font-size: 28px;
	}

	.our-facts-list ul {
		gap: 10px;
	}

	.our-facts-list ul li {
		width: 100%;
	}

	.our-facts-image {
		max-width: 100%;
	}

	.our-facts-image img {
		aspect-ratio: 1 / 1.29;
		object-fit: contain;
	}

	.our-potential-counter {
		gap: 20px;
	}

	.potential-counter-item {
		width: 100%;
	}

	.potential-counter-item .counter-circle {
		border-width: 6px;
		width: 80px;
		height: 80px;
		margin-right: 10px;
	}

	.potential-counter-content {
		width: calc(100% - 90px);
	}

	.potential-counter-item .counter-circle h2 {
		font-size: 20px;
	}

	.potential-counter-content h3 {
		font-size: 18px;
	}

	.potential-body-content h3 {
		font-size: 18px;
	}

	.testimonial-content {
		margin-bottom: 20px;
	}

	.testimonial-content p {
		font-size: 16px;
	}

	.testimonial-body .author-content h3 {
		font-size: 18px;
	}

	.testimonial-btn {
		position: initial;
		justify-content: center;
	}

	.testimonial-company-slider {
		padding-top: 30px;
		margin-top: 30px;
	}

	.goals-item {
		width: 100%;
	}

	.goals-item .icon-box {
		margin-bottom: 20px;
	}

	.goals-item .icon-box img {
		max-width: 40px;
	}

	.goals-item-content h3 {
		font-size: 18px;
	}

	.goals-content-footer {
		gap: 15px;
	}

	.faq-cta-box .icon-box {
		margin-right: 10px;
	}

	.faq-cta-box .icon-box img {
		max-width: 45px;
	}

	.faq-cta-box .faq-cta-content {
		width: calc(100% - 55px);
	}

	.faq-cta-content p {
		margin-bottom: 5px;
	}

	.faq-cta-content h3 {
		font-size: 18px;
		margin-bottom: 5px;
	}

	.faq-accordion .accordion-header .accordion-button {
		font-size: 18px;
		padding-right: 20px;
	}

	.faq-accordion .accordion-item .accordion-button::after,
	.faq-accordion .accordion-item .accordion-button.collapsed::after {
		font-size: 16px;
	}

	.faq-accordion .accordion-item .accordion-body {
		padding-right: 0px;
	}

	.post-item-content h2 {
		font-size: 18px;
	}

	.footer-link-list {
		justify-content: initial;
		gap: 30px 60px;
	}

	.footer-links h3 {
		font-size: 18px;
		margin-bottom: 15px;
	}

	.footer-links ul li {
		margin-bottom: 5px;
	}

	.footer-cta-box {
		padding: 20px;
	}

	.footer-logo,
	.footer-contact-box {
		width: 100%;
	}

	.footer-logo img {
		max-width: 150px;
	}

	.footer-contact-box {
		justify-content: left;
	}

	.footer-contact-item {
		padding-right: 10px;
		margin-right: 10px;
	}

	.footer-contact-item::before {
		right: -10px;
	}

	.footer-contact-item:nth-of-type(2n + 2)::before {
		display: none;
	}

	.footer-contact-item p {
		margin-bottom: 5px;
	}

	.footer-contact-item h3 {
		font-size: 16px;
	}

	.footer-copyright {
		padding: 15px 0;
	}

	.footer-copyright-text {
		margin-bottom: 5px;
		text-align: center;
	}

	.footer-menu ul {
		text-align: center;
	}

	.page-header-box h1 {
		font-size: 30px;
	}

	.page-header-box ol li.breadcrumb-item {
		font-size: 16px;
	}

	.approach-goal-img img {
		aspect-ratio: 1 / 0.82;
	}

	.approach-goal-content {
		right: 15px;
		bottom: 20px;
		left: 15px;
	}

	.approach-goal-content h2 {
		font-size: 18px;
	}

	.our-approach-content {
		gap: 20px;
	}

	.mission-vision-item {
		width: 100%;
	}

	.mission-vision-item h3 {
		margin-bottom: 15px;
	}

	.mission-vision-item h2 {
		font-size: 18px;
		margin-bottom: 10px;
	}

	.our-features-item:nth-child(even) {
		flex-direction: column;
	}

	.our-features-image,
	.our-features-content {
		width: 100%;
	}

	.our-features-image img {
		aspect-ratio: 1 / 0.67;
	}

	.our-features-body {
		width: calc(100% - 60px);
	}

	.our-features-body h2 {
		font-size: 26px;
		margin-bottom: 10px;
	}

	.our-features-body h3 {
		font-size: 18px;
		margin-bottom: 5px;
	}

	.our-features-content .icon-box img {
		max-width: 45px;
	}

	.team-content {
		padding: 15px;
	}

	.team-content h3 {
		font-size: 18px;
		margin-bottom: 5px;
	}

	.our-expertise-body ul {
		gap: 10px;
	}

	.our-expertise-body ul li {
		width: 100%;
	}

	.skills-progress-bar .skillbar .skill-progress {
		height: 14px;
	}

	.expertise-image {
		padding: 0 0 50px 40px;
	}

	.expertise-img figure,
	.expertise-img img {
		border-radius: 20px;
	}

	.expertise-image-list {
		max-width: 120px;
	}

	.expertise-list-img {
		border-width: 3px;
		border-radius: 12px;
	}

	.expertise-image .about-image-circle {
		right: 80px;
	}

	.page-category-list h3 {
		font-size: 18px;
		padding: 15px 20px;
	}

	.page-category-list ul {
		padding: 20px;
	}

	.sidebar-cta-box {
		padding: 20px;
	}

	.cta-contact-header {
		margin-bottom: 5px;
	}

	.cta-contact-item-content h3 {
		font-size: 20px;
	}

	.sidebar-cta-image img {
		aspect-ratio: 1 / 0.5;
	}

	.page-single-image {
		margin-bottom: 20px;
	}

	.service-entry h2 {
		font-size: 26px;
	}

	.service-entry ul li {
		width: 100%;
	}

	.service-deliver-image-content {
		gap: 20px;
	}

	.service-deliver-image,
	.service-deliver-content {
		width: 100%;
	}

	.service-deliver-image figure,
	.service-deliver-image img {
		height: auto;
	}

	.service-deliver-item {
		margin-bottom: 20px;
	}

	.service-deliver-item-content h3 {
		font-size: 18px;
		margin-bottom: 5px;
	}

	.page-single-image-video img {
		aspect-ratio: 1 / 0.6;
	}

	.service-caring-item {
		width: 100%;
		padding: 15px;
	}

	.service-caring-item-content h3 {
		font-size: 18px;
	}

	.page-single-faqs .faq-accordion .accordion-item .accordion-body figure,
	.page-single-faqs .faq-accordion .accordion-item .accordion-body p {
		width: 100%;
	}

	.post-single-meta ol li {
		font-size: 16px;
	}

	.post-single-meta ol li i {
		font-size: 16px;
	}

	.post-image img {
		aspect-ratio: 1 / 0.7;
	}

	.post-entry blockquote {
		background-position: 15px 15px;
		padding: 60px 15px 15px 15px;
	}

	.post-entry blockquote p {
		font-size: 16px;
	}

	.post-entry h2 {
		font-size: 26px;
	}

	.tag-links {
		font-size: 18px;
	}

	.product-item {
		width: 100%;
	}

	.product-image img {
		width: 180px;
		height: 180px;
	}

	.product-item-content h3,
	.product-item-content h2 {
		font-size: 18px;
	}

	.customer-rating-box i {
		font-size: 16px;
	}

	.product-single-content h3 {
		font-size: 24px;
	}

	.product-single-content h3 span {
		font-size: 18px;
	}

	.product-single-content h2 {
		font-size: 26px;
	}

	.product-step-nav .nav-tabs {
		gap: 20px;
	}

	.product-tab-item-box h2 {
		font-size: 26px;
	}

	.customer-review-item .icon-box {
		margin-right: 10px;
	}

	.customer-review-item .icon-box img {
		max-width: 50px;
	}

	.customer-review-item-body {
		width: calc(100% - 60px);
	}

	.team-single-image img {
		aspect-ratio: 1 / 1.05;
	}

	.team-sidebar-category-box {
		padding: 20px;
	}

	.team-sidebar-category-item h3 {
		font-size: 18px;
	}

	.member-service-counters {
		gap: 20px;
	}

	.member-service-counter-item {
		width: calc(50% - 10px);
		padding: 15px;
	}

	.member-service-counter-item h2 {
		font-size: 26px;
	}

	.team-skills-list {
		gap: 20px;
	}

	.team-skills-list .skills-progress-bar {
		width: 100%;
	}

	.contact-info-item .icon-box {
		margin-right: 10px;
	}

	.contact-item-content {
		width: calc(100% - 60px);
	}

	.contact-item-content h3,
	.contact-social-links h3 {
		font-size: 18px;
	}

	.contact-social-links {
		gap: 10px;
	}

	.contact-social-links ul li {
		margin-right: 5px;
	}

	.contact-social-links ul li a {
		width: 36px;
		height: 36px;
	}

	.contact-us-form {
		padding: 20px;
	}

	.google-map-iframe,
	.google-map-iframe iframe {
		height: 350px;
	}
}

.table-section {
	background: #fffae9;
	border-radius: 12px;
	box-shadow: 0 4px 10px rgb(65 80 65);
	padding: 25px;
	margin: 30px auto;
}



h4 {
	margin-top: 25px;
	color: #000;
	/* border-bottom: 2px solid #000; */
	display: inline-block;
	padding-bottom: 5px;
	margin-bottom: 20px;
}

/* === Styling only for custom-table === */
.table-section table.custom-table {
	margin-top: 15px;
	border-radius: 8px;
	overflow: hidden;
}

.table-section table.custom-table thead {
	background: #3f4d00 !important;
	color: #fff !important;
	text-align: center;
}

.table-section table.custom-table tbody tr:nth-of-type(odd) {
	background-color: rgba(255, 255, 255, 0.7) !important;
}

.table-section table.custom-table tbody tr:nth-of-type(even) {
	background-color: rgba(255, 255, 255, 0.9) !important;
}

.table-section table.custom-table td,
.table-section table.custom-table th {
	vertical-align: middle !important;
	padding: 10px !important;
}

.table-section table.custom-table.table-bordered td,
.table-section table.custom-table.table-bordered th {
	border-color: #3f4d00 !important;
}

.table-section table.custom-table tbody tr:hover {
	background-color: #dbe29a !important;
	cursor: pointer;
}

/* Download button */
.download-btn {
	display: block;
	margin: 25px auto 0;
	padding: 12px 28px;
	font-size: 16px;
	font-weight: 600;
	border-radius: 8px;
	background: #3f4d00;
	color: #fff;
	text-decoration: none;
	text-align: center;
	transition: all 0.3s ease;
}

.download-btn:hover {
	background: #2d3600;
	color: #fff;
}

/* Section Background */
.acid-casein-section {
	background: #415041;
}

/* Section Title */
.acid-casein-section h2.section-title {
	font-size: 2rem !important;
	font-weight: 700 !important;
	color: #fffae9 !important;
	text-align: center !important;
	position: relative !important;
}

.acid-casein-section h2.section-title::after {
	content: "";
	display: block;
	width: 70px !important;
	height: 4px !important;
	background: #b9c938 !important;
	margin: 10px auto 0 !important;
	border-radius: 2px !important;
}

/* Card Styling */
.feature-card {
	background: #fff;
	border: 2px solid #b9c938;
	border-radius: 15px;
	box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	opacity: 0;
	/* initial hidden for animation */
	transform: translateY(40px);
}

/* Hover Lift */
.feature-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

/* Card Titles */
.feature-card .card-title {
	font-size: 1.5rem !important;
	font-weight: 600 !important;
	color: #2c3e50 !important;
	margin-bottom: 20px !important;
	position: relative !important;
}

.feature-card .card-title::after {
	content: "";
	display: block;
	width: 50px !important;
	height: 3px !important;
	background: #b9c938 !important;
	margin-top: 8px !important;
	border-radius: 2px !important;
}

/* List Items */
.feature-list {
	list-style: none;
	padding-left: 0;
}

.feature-list li {
	position: relative;
	padding-left: 28px;
	margin-bottom: 12px;
	font-size: 1.05rem;
	color: #333;
}

.feature-list li::before {
	content: "ÃƒÆ’Ã‚Â¢Ãƒâ€¦Ã¢â‚¬Å“ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â";
	position: absolute;
	left: 0;
	color: #b9c938;
	font-weight: bold;
}

/* Animation */
@keyframes fadeSlideUp {
	0% {
		opacity: 0;
		transform: translateY(40px);
	}

	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

.feature-card.animate {
	animation: fadeSlideUp 0.8s ease forwards;
}

/* Delay for multiple cards */
.feature-card.animate:nth-child(1) {
	animation-delay: 0.2s;
}

.feature-card.animate:nth-child(2) {
	animation-delay: 0.4s;
}

section.gallery-section {
	padding: 50px 20px;
	background: #fffae9;
}

section.gallery-section h2 {
	text-align: center;
	/* margin-bottom: 30px; */
	font-size: 35px;
	color: #333;
	position: relative;
}

section.gallery-section h2::after {
	content: "";
	display: block;
	width: 80px;
	height: 4px;
	background: #415041;
	margin: 10px auto 0;
	border-radius: 2px;
}

.gallery {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 40px;
}

.gallery img {
	width: 100%;
	height: 250px;
	/* Fixed height */
	object-fit: cover;
	/* Image crop hoke fit hogi */
	border: 6px solid #fffae9;
	border-radius: 10px;
	cursor: pointer;
	transition: transform 0.4s ease, box-shadow 0.3s ease;
}

.gallery img:hover {
	transform: scale(1.08);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Modal Style */
.modal {
	display: none;
	position: fixed;
	z-index: 1000;
	padding-top: 60px;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	background: rgb(255 255 255 / 47%);
	backdrop-filter: blur(1px);
}

.modal-content {
	margin: auto;
	display: block;
	max-width: 70%;
	max-height: 80vh;
	border-radius: 10px;
	animation: zoomIn 0.4s ease;
}

@keyframes zoomIn {
	from {
		transform: scale(0.5);
		opacity: 0;
	}

	to {
		transform: scale(1);
		opacity: 1;
	}
}

.close,
.prev,
.next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	color: white;
	font-size: 30px;
	font-weight: 300;
	cursor: pointer;
	user-select: none;
	padding: 12px;
	background: rgb(65 80 65);
	border-radius: 50%;
}

.close {
	top: 20px;
	right: 30px;
	font-size: 40px;
	transform: none;
}

.prev {
	left: 20px;
}

.next {
	right: 20px;
}

.our-facts-lis ul li {
	color: #3f4d00 !important;
}

.our-approach {
	background-color: #FFFAE9;
}

.our-approach h2 {
	color: #fff !important;
}

.mission-vision-item h2 {
	color: white !important;
}

.section-title-center h2 {
	color: black !important;
}

.service-item-content img {
	width: 100%;
	height: auto;
	max-height: 280px;
	border-radius: 15px;
}

.hero-section {
	position: relative;
	overflow: hidden;
}

.hero {
	position: relative;
	overflow: hidden;
}

.hero-slider .swiper-slide {
	background-size: cover;
	background-position: center;
}

.swiper-button-prev,
.swiper-button-next {
	color: #00000000;
}

.swiper-pagination-bullet-active {
	background: #fff;
}

.hero-slider .swiper-slide {
	opacity: 0 !important;
	transition: opacity 0.8s ease;
}

.hero-slider .swiper-slide-active {
	opacity: 1 !important;
}

.hero {
	position: relative;
	color: #fff;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	transition: background-image 1s ease-in-out;
}

.hero::before {
	content: "";
	position: absolute;
	inset: 0;
	/* background: rgba(0, 0, 0, 0.45); */
	z-index: 0;
}

.hero .container {
	position: relative;
	z-index: 2;
}

.head {
	font-size: 25px;
}

p.head {
	font-size: 30px !important;
	font-weight: 600 !important;
	color: #fff !important;
	margin-bottom: 0px !important;
}

p.new {
	font-size: 19px !important;
	font-weight: 300 !important;
	color: #fff !important;
	margin-bottom: 15px !important;
}

p.info {
	font-size: 20px !important;
	color: #fff !important;
	margin: 3px 0 !important;
	line-height: 1.6 !important;
}

.mission-vision-item {
	background: #ffffff;
	border-radius: 12px;
	min-height: 140px;
	/* ÃƒÆ’Ã‚Â°Ãƒâ€¦Ã‚Â¸ÃƒÂ¢Ã¢â€šÂ¬Ã‹Å“Ãƒâ€¹Ã¢â‚¬Â  card height bhi thodi badi */
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	position: relative;
	overflow: hidden;
}

/* MORE BIG IMAGE */
.company-logo {
	width: 200px;
	max-height: 120px;
	background: #ffffff;
	height: auto;
	border-radius: 10px;
	object-fit: contain;
	opacity: 1 !important;
	padding: 11px;
	visibility: visible !important;
	z-index: 2;
}

/* Hover */
.mission-vision-item:hover {
	transform: translateY(-6px);
	box-shadow: 0 14px 35px rgba(0, 0, 0, 0.15);
}

/* Mobile */
@media (max-width: 768px) {
	.mission-vision-item {
		/* min-height: 150px; */
		padding: 7px !important;
		/* min-height: 45px; */
		background-color: #fff;
	}

	@media (max-width: 768px) {}

	.company-logo {
		/* max-width: 135px; */
		/* width: 140px; */
		/* max-height: 90px; */
		padding: 0px !important;
	}
}

.no-bg {
	background: transparent !important;
	box-shadow: none !important;
	border-radius: 0;
}


.our-services.dark-section {
	background-color: #607157bf;
	/* background-image: url("../img/banner/ghee.jpg"); */
	/* apni image ka path */
	/* background-repeat: no-repeat; */
	/* background-size: cover; */
	/* background-position: center; */
}

.our-services.dark-section {
	position: relative;
}

.our-services.dark-section::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.5);
	/* darkness control */
	z-index: 1;
}

.our-services.dark-section>.container {
	position: relative;
	z-index: 2;
}


.slide {
	transition: opacity 1s ease, transform 1.5s ease;
}

.slide.active {
	opacity: 1 !important;
	transform: scale(1) !important;
	z-index: 1;
}

.dot {
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.grain-bg::before {
	content: "";
	position: fixed;
	inset: 0;
	opacity: 0.04;
	pointer-events: none;
	z-index: 9999;
}

/* Responsive Overrides */
@media (max-width: 968px) {
	.responsive-grid {
		grid-template-columns: 1fr !important;
		padding: 1.5rem !important;
		gap: 2rem !important;
		border-radius: 2rem !important;
		text-align: center !important;
		/* Centers text on mobile */
	}

	.responsive-slideshow {
		height: 350px !important;
		border-radius: 1.5rem !important;
	}

	.responsive-heading {
		font-size: 2.5rem !important;
	}

	.responsive-content-area {
		align-items: center !important;
		/* Centers buttons and dots on mobile */
	}

	.responsive-subtext {
		margin-left: auto !important;
		margin-right: auto !important;
		text-align: justify;
	}

	.responsive-dots {
		justify-content: center !important;
		margin-left: auto !important;
		margin-right: auto !important;
	}

	.responsive-nav {
		justify-content: center !important;
	}
}

.product {
	background-color: #fffae9;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
	overflow-x: hidden;
}

.main-wrapper {
	width: 100%;
	padding: 40px 0;
}

.header-text {
	text-align: center;
	margin-bottom: 20px;
	font-weight: 800;
	color: #415041;
	font-size: 2.5rem;
}

/* Slider Viewport */
.slider-viewport {
	overflow: hidden;
	padding-top: 120px;
	padding-bottom: 60px;
	width: 100%;
	position: relative;
}

.card-track {
	display: flex;
	gap: 30px;
	transition: transform 0.8s cubic-bezier(0.65, 0, 0.35, 1);
	width: max-content;
	/* Center context */
	padding-left: calc(50% - 150px);
}

/* Individual Card */
.card {
	min-width: 300px;
	width: 300px;
	height: 400px;
	border-radius: 40px;
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 30px;
	color: #fffae9;
	background: #415041;
	box-shadow: 0 10px 30px rgba(65, 80, 65, 0.1);
	cursor: pointer;
	transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.6s ease, box-shadow 0.6s ease;
	transform: scale(0.8);
	opacity: 0.4;
	/* Daur wale cards bahut kam opacity par */
}

/* Pass wale cards (Left & Right of Center) */
.card.is-near {
	opacity: 0.9;
	transform: scale(0.9);
}

/* Zoomed State for Center Card */
.card.is-center {
	transform: scale(1.1);
	opacity: 1;
	box-shadow: 0 25px 50px rgba(65, 80, 65, 0.3);
	z-index: 10;
}

.rating {
	display: inline-flex;
	background: #b9c938;
	color: #415041;
	padding: 6px 14px;
	border-radius: 15px;
	font-size: 13px;
	font-weight: 700;
	margin-top: 10px;
}

.rating a {
	color: #546152;
}

/* Character Image Styling */
.character-img {
	position: absolute;
	top: -100px;
	left: 50%;
	transform: translateX(-50%);
	width: 240px;
	height: auto;
	filter: drop-shadow(0 15px 15px rgba(0, 0, 0, 0.3)) grayscale(0.8);
	z-index: 2;
	pointer-events: none;
	transition: transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.6s ease, opacity 0.6s ease;
	opacity: 0.5;
}

/* Center card image pop-up */
.is-center .character-img {
	opacity: 1;
	filter: drop-shadow(0 20px 25px rgba(0, 0, 0, 0.4)) grayscale(0);
	transform: translateX(-50%) translateY(-20px) scale(1.1);
}

/* Near cards image slight visibility */
.is-near .character-img {
	opacity: 0.9;
	filter: grayscale(0.3);
}

.card-info h3 {
	font-size: 25px;
	font-weight: 800;
	color: #fff;
}

.card-info p {
	opacity: 0.9;
	font-size: 15px;
	color: #fff;
	font-weight: 600;
}

.nav-buttons {
	display: flex;
	justify-content: center;
	gap: 20px;
	margin-top: 20px;
}

.nav-btn {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	border: 2px solid #b9c938;
	background: transparent;
	cursor: pointer;
	color: #415041;
	transition: 0.3s;
	display: flex;
	align-items: center;
	justify-content: center;
}

.nav-btn:hover {
	background: #b9c938;
	color: #fffae9;
}


.circle-icon {
	width: 30px;
	height: 30px;
	background: rgba(185, 201, 56, 0.2);
	border: 1px solid #b9c938;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.circle-icon svg {
	color: #b9c938;
	font-size: 14px;
}

.circle-icon:hover {
	background: #b9c938;
}

.circle-icon:hover svg,
.circle-icon:hover i {
	stroke: #fff;
	color: #fff;
}

.footer-social {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: rgba(185, 201, 56, 0.15);
	border: 1px solid #b9c938;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #b9c938;
	font-size: 16px;
	transition: all 0.3s ease;
	text-decoration: none;

}

.footer-social:hover {
	background: #b9c938;
	color: #fff;
	transform: translateY(-3px);
}


:root {
	--primary: #b9c938;
	--dark: #334333;
	--light: #fffae9;
	--white: #ffffff;
	--gap: 24px;
	--card-width: 300px;
	/* Slightly wider for better text flow */
}



/* SECTION BACKGROUND & OVERLAY */
.products {
	background-image: url("../new/about/pro.png");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	position: relative;
	padding: 50px 0 10px;
	min-height: 100vh;
	display: flex;
	align-items: center;
}

.products::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(255, 250, 233, 0.742);
	z-index: 0;
}

.container {
	position: relative;
	z-index: 1;
	max-width: 1300px;
	margin: 0 auto;
	padding: 0 20px;
	width: 100%;
}

/* HEADER SECTION */
.header-section {
	/* margin-bottom: 20px; */
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	flex-wrap: wrap;
	gap: 30px;
}

.header-content {
	flex: 1;
	min-width: 300px;
}

.header-section h1 {
	font-size: 40px;
	font-weight: 900;
	color: var(--dark);
	margin-bottom: 15px;
	/* text-transform: uppercase; */
	line-height: 1;
}

.header-section h1 span {
	color: var(--primary);
}

.header-section p {
	max-width: 650px;
	font-size: 18px;
	line-height: 1.6;
	color: var(--dark);
	opacity: 0.85;
}

/* CONTROLS */
.controls {
	display: flex;
	gap: 15px;
	padding-bottom: 10px;
}

.controls button {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	border: 3px solid var(--dark);
	background: var(--primary);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 4px 4px 0 var(--dark);
	transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.controls button:hover {
	transform: translate(-2px, -2px);
	box-shadow: 6px 6px 0 var(--dark);
	background: var(--white);
}

.controls button:active {
	transform: translate(2px, 2px);
	box-shadow: 0px 0px 0 var(--dark);
}

.controls svg {
	width: 26px;
	height: 26px;
	stroke: var(--dark);
	stroke-width: 3px;
}

/* SLIDER SECTION */
.slider-section {
	width: 100%;
	/* Increased padding to prevent box-shadow from being cut off */
	padding: 20px 10px 60px 10px;
	margin: 0 -10px;
	overflow: hidden;
}

.slider-container {
	display: flex;
	gap: var(--gap);
	transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
	will-change: transform;
}

/* PRODUCT CARDS */
.product-card {
	min-width: var(--card-width);
	width: var(--card-width);
	min-height: 480px;
	padding: 18px 25px;
	border-radius: 35px;
	border: 4px solid var(--dark);
	text-align: center;
	background: var(--white);
	flex-shrink: 0;
	box-shadow: 10px 10px 0 var(--dark);
	display: flex;
	flex-direction: column;
	transition: transform 0.3s ease;
}

.card-primary {
	background: linear-gradient(180deg, #f3f7d9, #e8f0b5);
}

.card-dark {
	background: linear-gradient(180deg, #e3ebe3, #cfdccf);
}

.image-holder {
	background: var(--white);
	border: 2px solid rgba(51, 67, 51, 0.05);
	border-radius: 25px;
	margin-bottom: 25px;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

.image-holder img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}

.product-card h2 {
	font-size: 24px;
	font-weight: 900;
	/* margin-bottom: 12px; */
	color: var(--dark);
	line-height: 1.2;
	min-height: 3.4rem;
	/* Keeps titles aligned */
	display: flex;
	align-items: center;
	justify-content: center;
}

.product-card p {
	font-size: 16px;
	/* line-height: 1.5; */
	color: var(--dark);
	margin-bottom: 25px;
	flex-grow: 1;
	opacity: 0.9;
}

.read-more-link {
	color: var(--dark);
	font-weight: 800;
	text-decoration: none;
	position: relative;
	align-self: center;
	padding: 8px 20px;
	background: var(--primary);
	border: 3px solid var(--dark);
	border-radius: 12px;
	transition: all 0.2s ease;
	font-size: 0.9rem;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.read-more-link:hover {
	background: var(--white);
	transform: translateY(-2px);
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {
	.products {
		padding: 40px 0px !important;
	}

	.header-section {
		flex-direction: column;
		align-items: center;
		text-align: center;
		/* margin-bottom: 30px; */
	}

	.controls {
		display: none;
		/* Mobile supports touch swipe */
	}

	.slider-section {
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		padding-bottom: 40px;
		/* Allow cards to be swiped manually on mobile */
		scroll-snap-type: x mandatory;
	}

	.product-card {
		min-width: 85vw;
		/* Card takes most of the screen width */
		width: 85vw;
		box-shadow: 6px 6px 0 var(--dark);
		scroll-snap-align: center;
	}

	.slider-container {
		gap: 15px;
	}
}

@media (max-width: 768px) {
	.our-features {
		padding: 30px 0;
	}

	.our-client {
		margin: 30px 0px 0px !important;
	}

	.Skimmed-Milk-Powder-section {
		padding: 20px 0px !important;
	}

	.Full-Cream-Milk-Powder-section {
		padding: 20px 0px !important;
	}

	.Edible-Grade-section {
		padding: 20px 0px !important;
	}

	.demineralised-whey-section {
		padding: 20px 0px !important;
	}

	.Dairy-Creamer-section {
		padding: 20px 0px !important;
	}

	.Dairy-Creamer-section {
		padding: 20px 0px !important;
	}

	.download {
		margin-bottom: 30px !important;
	}

	.gallery-section {
		padding: 20px 0px !important;
	}

	.page-contact-us {
		padding: 30px 0px !important;
	}

	.page-card {
		padding: 0px 0px 30px !important;
	}

	.animate-card {
		margin: 0px 24px !important;
	}
}

@media (max-width: 767px) {

	/* grid single column */
	.responsive-grid {
		grid-template-columns: 1fr !important;
	}

	/* slideshow container – desktop jaisa look */
	.responsive-slideshow {
		height: auto !important;
		aspect-ratio: 16 / 9;
		/* desktop jaisa ratio */
		overflow: hidden !important;
	}

	/* image bilkul desktop jaisi */
	.responsive-slideshow img {
		position: absolute !important;
		inset: 0;
		width: 100%;
		height: 100%;
		object-fit: cover !important;
		transform: none !important;
		opacity: 1 !important;
	}

}

.certificate {
	padding: 60px 0px;
}
.investor{
    margin-top: 45px;
}

.investor h2 {
    font-size: 37px;
    color: #000000;
}
.investorul{
    display: inline-flex;
    gap: 4px;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}


.investorul ul{}
.investorul  li{
    background: #415041;
    padding: 10px 10px;
    height: auto;
    display: flex;
    align-items: center;
    border-radius: 5px;
}

.investorul li:hover {
    background: #a3b7a3;
}
.investorul  li a{
    font-size: 13px;
    font-weight: 600;
    color: #ecfdec;
}
.investorul  li ul li{
    padding: 5px !important;
}

.investorul li ul li a {
    font-size: 9px;
    background: #ffffff;
    padding: 3px;
    border-radius: 5px;
    color: #415041;
}
.investorul  li ul {
    display: flex;
}

  .btn span, .btn {
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }
.investorbox {
    display: flex !important;
    flex-direction: column;
    padding: 15px 5px;
    font-weight: 600;
    background: #f9f9f9;
    font-size: 12px !important;
    color: #000000 !important;
    text-shadow: none;
    width: 100%  !important;
}
.dayscoman .row{
    display: flex;
    margin-top: 20px;
    margin-bottom: 30px;
    justify-content: center;
    gap: 20px;
}

.dayscoman .row .investorbox {
    background: #e5f5cc;
    border: 5px solid #ffffff;
}

.dayscoman .row .investorbox img {
    object-fit: contain;
}
	.investorbox  img{
    width: 50px;
    object-fit: cover;
    height: 50px;
    margin-bottom: 10px;
    filter: grayscale(1);
}
	.investorbox span{
    display: block;
    font-weight: 600;
}

 .table {
      background: #f6ffe8;
      font-size: 15px;
      margin-bottom: 0;
      width: 100% !important;
      overflow: auto;
      margin-top: 30px !important;
      margin-bottom: 30px !important;
    }

    table thead tr th {
      white-space: nowrap;
      position: sticky;
      top: -10px;
      vertical-align: middle;
      background: #415041 !important;
      border: 3px solid white;
      color: #ededed !important;
      padding: 10px;
      box-shadow: none;
    }

    table tr:nth-child(even) {
      background-color: #e5f5cc;
    }

    table thead tr th p {
      margin: 0 !important;
      font-size: 14px;
      color: #432d0f;
      text-align: left;
      line-height: 1.3;
    }

    table tbody tr td p {
      margin: 0 !important;
      text-align: left;
      line-height: 1.4;
      color: #404040;
      font-size: 14px;
      font-weight: 600;
      font-family: 'Quicksand';
    }

    table tbody {
      background-color: #f6ffe8;
    }

    table tbody tr td {
      vertical-align: middle;
      border: 3px solid white;
      padding: 0.3rem 0rem !important;
      padding-left: 5px !important;
      color: #000000;
      font-size: 15px;
    }

table tbody tr td span.pdf{
    font-size: 30px;
    line-height: 1px;
    color: #ff0000 !important;
}

table tbody tr td span.text-none {
    font-size: 14px;
    line-height: 1px;
    /* display: none; */
    padding-left: 14px;
}

table tbody tr td a {
    text-decoration: none;
    color: #404040;
    display: flex;
    align-items: center;
}

    .table > tbody > tr > th {
      background-color: #cbe4a5;
      text-align: left;
      border: 3px solid white;
    }

    .table > tbody > tr > th > p {
      font-size: 15px;
      margin-bottom: 0px !important;
      color: black;
    }

    table tr td:hover {
      background: #222222;
      color: white;
      cursor: pointer;
    }

    table tr td:hover > p {
      color: white;
    }

    table tr th:hover {
      background-color: #222222 !important;
     
    }

    table tr th:hover > p {
      color: antiquewhite;
    }

