/* 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. What We Do css
10. Case Study css
11. Intro Video css
12. How It Work css
13. Our Pricing css
14. Our FAQs css
15. Our Testimonials 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. Case Study Page css
24. Case Study Single css
25. Team Page css
26. Team Single css
27. Pricing Page css
28. Testimonials Page css
29. Image Gallery css
30. Video Gallery css
31. FAQs Page css
32. Contact Us Page css
33. 404 Error Page css
34. Responsive css
-------------------------------------------------------------------------------------- */

/************************************/
/*** 	 01. Global Variables	  ***/
/************************************/

:root {
	--primary-color: #172C45;
	--secondary-color: #91ff00;
	/* --secondary-color: #FDF6E3; */
	--bg-color: #F8F8F8;
	--text-color: #3D3724;
	/* --accent-color				: #BEF1DE; */
	--accent-color: #c0ffbe;
	--white-color: #FFFFFF;
	
	--error-color: rgb(230, 87, 87);
	--default-font: "Manrope", sans-serif;
	--accent-font: "Sora", sans-serif;
}

/************************************/
/*** 	   02. General css		  ***/
/************************************/

body {
	position: relative;
	font-family: var(--default-font);
	font-size: 14px;
	font-weight: 500;
	line-height: 1em;
	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;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	font-family: var(--accent-font);
	font-weight: 600;
	line-height: 1.2em;
	color: var(--primary-color);
}

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: clip;
}

.container {
	max-width: 1300px;
}

.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: 100%;
	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;
	background: var(--accent-color);
	border-radius: 10px;
	font-family: var(--accent-font);
	font-size: 14px;
	font-weight: 700;
	line-height: 1em;
	text-transform: capitalize;
	color: var(--primary-color);
	border: none;
	padding: 17px 50px 17px 20px;
	overflow: hidden;
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

.btn-default:hover {
	color: var(--white-color);
}

.btn-default::before {
	content: '';
	position: absolute;
	top: 50%;
	right: 20px;
	width: 20px;
	height: 20px;
	/* background-image: url('../images/arrow-primary.svg'); */
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	transform: translateY(-50%);
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.btn-default:hover::before {
	transform: translateY(-50%) rotate(45deg);
	filter: brightness(0) invert(1);
}

.btn-default::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0%;
	width: 102%;
	height: 100%;
	background-color: var(--primary-color);
	transition: all 0.5s ease-in-out;
	z-index: -1;
	transform: skewY(9.3deg) scaleY(0);
}

.btn-default:hover::after {
	transform: skewY(0deg) scaleY(2);
}

.btn-default.btn-highlighted:hover {
	color: var(--primary-color);
}

.btn-default.btn-highlighted:hover::before {
	filter: none;
}

.btn-default.btn-highlighted::after {
	background-color: var(--white-color);
}

.btn-default.btn-border {
	background: transparent;
	color: var(--white-color);
	border: 1px solid var(--white-color);
	padding: 16px 50px 16px 20px;
}

.btn-default.btn-border:hover {
	color: var(--primary-color);
}

.btn-default.btn-border::before {
	background-image: url('../images/arrow-white.svg');
}

.btn-default.btn-border:hover:before {
	filter: brightness(0) invert(0);
}

.btn-default.btn-border::after {
	background: var(--white-color);
}

.readmore-btn {
	position: relative;
	font-family: var(--accent-font);
	font-size: 16px;
	font-weight: 600;
	line-height: normal;
	text-transform: capitalize;
	color: var(--primary-color);
	padding-right: 26px;
}

.readmore-btn::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	background-image: url('../images/arrow-primary.svg');
	background-repeat: no-repeat;
	background-size: cover;
	width: 20px;
	height: 20px;
	transition: all 0.3s ease-in-out;
}

.readmore-btn:hover::before {
	transform: rotate(45deg);
}

.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);
	}
}

.bg-section {
	width: 100%;
	max-width: 1820px;
	background-color: var(--secondary-color);
	border-radius: 20px;
	margin: 0 auto;
}

.dark-section {
	background-color: var(--primary-color);
}

.section-row {
	margin-bottom: 80px;
}

.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: 40px;
}

.section-title h3 {
	position: relative;
	display: inline-block;
	border: 1px solid var(--divider-color);
	border-radius: 100px;
	font-size: 14px;
	font-weight: 500;
	text-transform: capitalize;
	color: var(--primary-color);
	padding: 8px 16px 8px 32px;
	margin-bottom: 10px;
}

.section-title h3::before {
	content: '';
	position: absolute;
	left: 16px;
	top: 50%;
	transform: translateY(-50%);
	background: var(--accent-color);
	border-radius: 50%;
	width: 6px;
	height: 6px;
}

.section-title h1 {
	font-size: 60px;
	font-weight: 400;
	line-height: 1.2em;
	letter-spacing: -0.02em;
	margin-bottom: 0;
	cursor: none;
}

.section-title h2 {
	font-size: 46px;
	font-weight: 400;
	line-height: 1.2em;
	letter-spacing: -0.02em;
	margin-bottom: 0;
	cursor: none;
}

.section-title p {
	margin-top: 20px;
	margin-bottom: 0;
}

.bg-section .section-title h3 {
	border-color: var(--primary-color);
}

.bg-section .section-title h3::before {
	background: var(--primary-color);
}

.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);
}

.dark-section .section-title h3 {
	border-color: var(--dark-divider-color);
}

.dark-section .section-title h3::before {
	background: var(--accent-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: 30px 0;
	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: 16px;
	font-weight: 500;
	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: 8px 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(--primary-color);
	background-color: transparent;
	padding: 8px 20px 8px 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: 16px;
	font-weight: 500;
	text-transform: capitalize;
	padding: 7px 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(--text-color);
}

.slicknav_menu ul ul li a {
	padding: 7px 20px 7px 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(--text-color);
}

/************************************/
/***         04. Hero css	      ***/
/************************************/

.hero {
	position: relative;
	/* background: url('../images/hero-bg.jpg') no-repeat; */
	background-position: center center;
	background-size: cover;
	padding: 250px 0 190px;
}

.hero::before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(270deg, rgba(23, 44, 69, 0.00) 0%, rgba(23, 44, 69, 0.80) 60.83%);
	width: 100%;
	height: 100%;
	z-index: 1;
}

.hero.hero-video .hero-bg-video {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
}

.hero.hero-video .hero-bg-video video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero.hero-slider-layout {
	background: none;
	padding: 0;
}

.hero.hero-slider-layout .hero-slide {
	position: relative;
	padding: 250px 0 190px;
}

.hero.hero-slider-layout .hero-slide::before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(270deg, rgba(23, 44, 69, 0.00) 0%, rgba(23, 44, 69, 0.80) 60.83%);
	width: 100%;
	height: 100%;
	z-index: 1;
}

.hero.hero-slider-layout .hero-slide .hero-slider-image {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
}

.hero.hero-slider-layout .hero-slide .hero-slider-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero.hero-slider-layout .hero-pagination {
	position: absolute;
	bottom: 30px;
	text-align: center;
	z-index: 2;
}

.hero.hero-slider-layout .hero-pagination .swiper-pagination-bullet {
	width: 12px;
	height: 12px;
	background: var(--dark-divider-color);
	opacity: 1;
	transition: all 0.3s ease-in-out;
	margin: 0 5px;
}

.hero.hero-slider-layout .hero-pagination .swiper-pagination-bullet-active {
	background-color: var(--accent-color);
}

.hero .container {
	position: relative;
	z-index: 2;
}

.hero-content .section-title p {
	max-width: 730px;
}

.hero-btn {
	display: flex;
	flex-wrap: wrap;
	gap: 15px 40px;
}

.hero-body {
	display: flex;
	flex-wrap: wrap;
	gap: 20px 40px;
	border-top: 1px solid var(--dark-divider-color);
	margin-top: 40px;
	padding-top: 40px;
}

.hero-experience-box {
	width: 24%;
	display: flex;
	align-items: center;
	gap: 10px;
}

.hero-experience-box h2 {
	width: 80px;
	font-size: 46px;
	color: var(--white-color);
}

.hero-experience-box p {
	color: var(--white-color);
	margin: 0;
}

.satisfy-client-box {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px;
}

.satisfy-client-images {
	display: inline-flex;
	align-items: center;
}

.satisfy-client-image {
	position: relative;
	display: inline-block;
	margin-left: -18px;
	z-index: 1;
}

.satisfy-client-image:first-child {
	margin: 0;
}

.satisfy-client-image figure {
	display: block;
	width: 50px;
	height: 50px;
	border: 1px solid var(--white-color);
	border-radius: 50%;
}

.satisfy-client-image img {
	width: 100%;
	border-radius: 50%;
}

.satisfy-client-image.add-more {
	width: 50px;
	height: 50px;
	background-color: var(--accent-color);
	border: 1px solid var(--white-color);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.satisfy-client-image.add-more p {
	font-family: var(--accent-font);
	font-size: 14px;
	font-weight: 600;
	color: var(--primary-color);
	margin: 0;
}

.satisfy-client-content p {
	color: var(--white-color);
	margin: 0;
}

.satisfy-client-content h3 {
	font-size: 16px;
	font-weight: 600;
	color: var(--white-color);
}

.hero-video-circle {
	text-align: right;
}

.hero-video-circle a {
	display: inline-block;
	border-radius: 50%;
	cursor: none;
}

.hero-video-circle img {
	width: 100%;
	max-width: 120px;
	border-radius: 50%;
	animation: infiniterotate 20s infinite linear;
}

@keyframes infiniterotate {
	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(360deg);
	}
}

.hero-video-circle a:hover img {
	animation-play-state: paused;
}

/************************************/
/***   City Hero (Location)       ***/
/************************************/

.city-hero {
	position: relative;
	background: linear-gradient(120deg, rgba(15, 20, 28, 0.8), rgba(15, 20, 28, 0.45)), url('../images/hero-bg-2.jpg');
	background-size: cover;
	background-position: center;
	padding: 150px 0 120px;
	color: var(--white-color);
}

.city-hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.4) 70%);
	z-index: 0;
}

.city-hero-inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1.15fr 0.85fr;
	gap: 30px;
	align-items: center;
}

.city-hero-breadcrumb {
	display: flex;
	gap: 10px;
	align-items: center;
	margin-bottom: 16px;
	color: rgba(255, 255, 255, 0.8);
}

.city-hero-breadcrumb a {
	color: rgba(255, 255, 255, 0.9);
	font-weight: 600;
}

.city-hero-breadcrumb span {
	color: rgba(255, 255, 255, 0.7);
}

.city-hero h1 {
	font-size: 48px;
	line-height: 1.1em;
	margin: 0 0 16px;
	color: var(--white-color);
}

.city-hero p {
	font-size: 16px;
	line-height: 1.6em;
	color: rgba(255, 255, 255, 0.9);
	max-width: 600px;
	margin-bottom: 24px;
}

.city-hero-actions {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
}

.city-hero-stats {
	margin-top: 15px;
	display: grid;
	grid-template-columns: repeat(2, minmax(220px, 1fr));
	gap: 16px;
}

.city-hero-stat-card {
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.18);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border-radius: 18px;
	padding: 20px 22px;
	color: var(--white-color);
	box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
}

.city-hero-stat-card .stat-icon {
	width: 44px;
	height: 44px;
	display: grid;
	place-items: center;
	border-radius: 12px;

	color: #d9b75a;
	margin-bottom: 12px;
	font-size: 18px;
}

.city-hero-stat-card .stat-number {
	font-size: 32px;
	font-weight: 700;
	line-height: 1.1em;
	margin-bottom: 6px;
}

.stat-number {
	color: #FFFF;

}

.city-hero-stat-card p {
	margin: 0;
	color: rgba(255, 255, 255, 0.85);
}

@media (max-width: 991px) {
	.city-hero {
		padding: 120px 0 90px;
	}

	.city-hero-inner {
		grid-template-columns: 1fr;
	}

	.city-hero-stats {
		grid-template-columns: repeat(2, minmax(160px, 1fr));
	}
}

@media (max-width: 575px) {
	.city-hero {
		padding: 110px 0 80px;
	}

	.city-hero h1 {
		font-size: 42px;
	}

	.city-hero-stats {
		grid-template-columns: 1fr;
	}
}

/************************************/
/***   City Overview (Delhi)      ***/
/************************************/

.city-overview {
	padding: 80px 0 70px;
	background: #f5f7f8;
}

.city-overview-inner {
	display: grid;
	grid-template-columns: 1.15fr 0.85fr;
	gap: 30px;
	align-items: center;
}

.city-overview-copy .section-title h3 {
	color: #2f7b4f;
	border-color: var(--divider-color);
}

.city-overview-copy .section-title h2 {
	color: var(--primary-color);
}

.city-overview-copy p {
	margin: 14px 0 18px;
	color: #3a413b;
}

.city-chip-row {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.city-chip-row span {
	display: inline-block;
	padding: 8px 12px;
	background: #eef6ef;
	color: #2f7b4f;
	border-radius: 999px;
	font-weight: 600;
	font-size: 13px;
}

.city-overview-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(200px, 1fr));
	gap: 16px;
}

.city-overview-card {
	background: var(--white-color);
	border: 1px solid #dfe4e0;
	border-radius: 14px;
	padding: 18px 16px;
	box-shadow: 0 10px 28px rgba(15, 30, 15, 0.08);
	transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.city-overview-card:hover {
	transform: translateY(-4px);
	border-color: #7ac082;
	box-shadow: 0 14px 36px rgba(15, 30, 15, 0.12);
}

.city-card-icon {
	width: 46px;
	height: 46px;
	border-radius: 12px;
	background: #eef6ef;
	display: grid;
	place-items: center;
	color: #2f7b4f;
	font-size: 18px;
	margin-bottom: 10px;
}

.city-overview-card h4 {
	margin: 0 0 8px;
	font-size: 18px;
	color: #142118;
}

.city-overview-card p {
	margin: 0;
	color: #4d554e;
	line-height: 1.5em;
}

@media (max-width: 991px) {
	.city-overview-inner {
		grid-template-columns: 1fr;
	}

	.city-overview-grid {
		grid-template-columns: repeat(2, minmax(160px, 1fr));
	}
}

@media (max-width: 575px) {
	.city-overview {
		padding: 65px 0 60px;
	}

	.city-overview-grid {
		grid-template-columns: 1fr;
	}
}

/************************************/
/***   City Coverage Cards        ***/
/************************************/

.city-coverage {
	padding: 80px 0 70px;
	background: #f8faf6;
	text-align: center;
	
}

.city-coverage .section-title h3 {
	color: #2f7b4f;
	border-color: var(--divider-color);
	margin-top: 30px;
	font-size: 13px;
	

}

.city-coverage .section-title h4 {
	color: var(--primary-color);
	font-size: 30px;
	text-align: center;
}

.city-coverage .section-title p {
	color: #4d554e;
	font-size: 15px;
	text-align: center;
}

.city-coverage-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 18px;
	margin-top: 48px;
}

.city-card {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	background: var(--white-color);
	border: 1px solid #dfe9d9;
	border-radius: 16px;
	padding: 18px;
	box-shadow: 0 10px 30px rgba(17, 34, 17, 0.08);
	transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, opacity 0.25s ease;
	opacity: 0;
	transform: translateY(12px);
	animation: cityFadeUp 0.55s ease forwards;
	background: linear-gradient(180deg, #ffffff 0%, #f9fbf7 100%);
	min-width: 0;
}

.city-card:hover {
	transform: translateY(-4px);
	border-color: #7ac082;
	box-shadow: 0 14px 36px rgba(17, 34, 17, 0.12);
}

.city-card:nth-child(1) { animation-delay: 0.05s; }
.city-card:nth-child(2) { animation-delay: 0.12s; }
.city-card:nth-child(3) { animation-delay: 0.18s; }
.city-card:nth-child(4) { animation-delay: 0.24s; }
.city-card:nth-child(5) { animation-delay: 0.30s; }
.city-card:nth-child(6) { animation-delay: 0.36s; }
.city-card:nth-child(7) { animation-delay: 0.42s; }
.city-card:nth-child(8) { animation-delay: 0.48s; }

.city-card-icon {
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: #eef6ef;
	color: #2f7b4f;
	display: grid;
	place-items: center;
	font-size: 20px;
}

.city-card h4 {
	margin: 0 0 6px;
	font-size: 18px;
	color: #142118;
}

.city-card p {
	margin: 0;
	color: #4d554e;
}

.city-card-content {
	flex: 1;
}

.city-list {
	list-style: none;
	margin: 6px 0 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	justify-content: center;
	width: 100%;
}

.city-list .hidden-city-item {
	display: none;
}

.city-list.expanded .hidden-city-item {
	display: inline-flex;
}

.city-list li {
	color: #243226;
	font-size: 13px;
	padding: 7px 11px;
	border-radius: 999px;
	background: #f1f5ed;
	border: 1px solid #dbe6d4;
	box-shadow: 0 2px 6px rgba(20, 33, 24, 0.06);
	white-space: normal;
	text-align: center;
	max-width: 100%;
	word-break: break-word;
}

.city-list-toggle {
	margin-top: 12px;
	border: 1px solid #cfe0c7;
	background: #e9f2e4;
	color: #2f7b4f;
	border-radius: 999px;
	padding: 6px 12px;
	font-size: 13px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.2s ease;
}

.city-list-toggle:hover {
	background: #dbead3;
	border-color: #b9d5ad;
	box-shadow: 0 6px 14px rgba(17, 34, 17, 0.1);
}

.city-list-toggle:focus-visible {
	outline: 2px solid #7ac082;
	outline-offset: 2px;
}

@keyframes cityFadeUp {
	from {
		opacity: 0;
		transform: translateY(14px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (max-width: 575px) {
	.city-coverage {
		padding: 65px 0 60px;
	}
	.city-list {
		gap: 8px;
	}
}

/************************************/
/***   Industry Coverage           ***/
/************************************/

.industry-coverage {
	padding: 80px 0 80px;
	background: #f4f7f1;
	text-align: center;
	margin-top: 10px;
}

.industry-coverage .section-title h3 {
	color: #2f7b4f;
	border-color: var(--divider-color);
	margin-top: 20px;
}

.industry-coverage .section-title h4 {
	color: var(--primary-color);
	font-size: 30px;
	font-weight: 600;
}

.industry-chip-row {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px;
	margin-top: 26px;
}

.industry-chip-row span {
	display: inline-block;
	padding: 10px 16px;
	border: 1px solid #dfe9d9;
	border-radius: 999px;
	background: #eef6ef;
	color: #2f7b4f;
	font-weight: 600;
	font-size: 14px;
}

.featured-clients {
	margin-top: 36px;
}

.featured-clients h4 {
	font-size: 16px;
	color: #1f2e20;
	margin-bottom: 14px;
}

.client-pill-row {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
}

.client-pill-row span {
	display: inline-block;
	padding: 10px 16px;
	border: 1px solid #e2e8e1;
	border-radius: 10px;
	background: var(--white-color);
	color: #2f2f2f;
	font-weight: 600;
	box-shadow: 0 6px 16px rgba(17, 34, 17, 0.06);
}

@media (max-width: 575px) {
	.industry-coverage {
		padding: 65px 0 70px;
	}
}

/************************************/
/***   Training Programs           ***/
/************************************/

.training-programs {
	padding: 80px 0 90px;
	background: var(--bg-color);
	text-align: center;
	margin-top: 10px;

}

.training-programs .section-title h3 {
	color: #2f7b4f;
	border-color: var(--divider-color);
	text-align: center;
	margin-top: 20px;
	

}

.training-programs .section-title h4 {
	color: var(--primary-color);
	text-align: center;
	font-size: 30px;
	
}

.training-programs-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
	gap: 16px;
	margin-top: 30px;
}

.training-card {
	display: flex;
	align-items: center;
	gap: 14px;
	background: var(--white-color);
	border: 1px solid #e3e8e2;
	border-radius: 16px;
	padding: 16px 18px;
	box-shadow: 0 10px 26px rgba(17, 34, 17, 0.08);
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.training-card:hover {
	transform: translateY(-3px);
	border-color: #7ac082;
	box-shadow: 0 14px 32px rgba(17, 34, 17, 0.12);
}

.training-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	border: 2px solid #2f7b4f;
	color: #2f7b4f;
	font-size: 16px;
}

.training-card h4 {
	margin: 0;
	font-size: 10px;
	color: #1c2d1f;
	font-weight: 100;
}

@media (max-width: 575px) {
	.training-programs {
		padding: 65px 0 75px;
	}
}

/************************************/
/***   CTA Footer (Delhi page)     ***/
/************************************/

.cta-footer {
	background: #2D6A2D;
	color: var(--white-color);
	text-align: center;
	padding: 70px 20px 90px;
}

.cta-footer-inner h3 {
	font-size: 28px;
	font-weight: 700;
	margin-bottom: 10px;
	color: var(--white-color);
}

.cta-footer-inner p {
	font-size: 18px;
	margin: 0 0 24px;
	color: rgba(255, 255, 255, 0.9);
}

.cta-footer-actions {
	display: flex;
	justify-content: center;
	gap: 14px;
	flex-wrap: wrap;
}

.cta-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 14px 22px;
	border-radius: 10px;
	font-weight: 700;
	font-size: 15px;
	transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
	text-decoration: none;
}

.cta-btn i {
	font-size: 16px;
}

.cta-btn-primary {
	background: #c7a851;
	color: #1f2d1c;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.cta-btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
}

.cta-btn-outline {
	border: 1px solid rgba(255, 255, 255, 0.6);
	color: var(--white-color);
}

.cta-btn-outline:hover {
	transform: translateY(-2px);
	background: rgba(255, 255, 255, 0.08);
	border-color: var(--white-color);
}

@media (max-width: 575px) {
	.cta-footer {
		padding: 60px 20px 75px;
	}

	.cta-footer-inner h3 {
		font-size: 26px;
	}

	.cta-footer-inner p {
		font-size: 16px;
	}
}

/************************************/
/***   Impact Summary Section     ***/
/************************************/

.impact-section {

	position: relative;
	padding: 90px 0 70px;
	background: #0f141c;
}

.impact-section .section-title h2 {

	color: var(--white-color);
	margin-top: 44px;
	text-align: center;
}

.impact-section .section-title p {
	color: #ffffff;
	text-align: center;
	margin-top: 20px;
	font-size: 20px;

}

.highlight-text {

	color: #d9b75a;
}

.impact-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	margin-top: 50px;

}

.impact-card {
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid var(--dark-divider-color);
	border-radius: 16px;
	padding: 16px 14px;
	text-align: center;
	transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.impact-card:hover {
	transform: translateY(-6px);
	border-color: #d9b75a;
	box-shadow: 0 18px 45px rgba(0, 0, 0, 0.25);
}

.impact-icon {
	width: 52px;
	height: 52px;
	display: grid;
	place-items: center;
	margin: 0 auto 14px;
	border-radius: 12px;

	color: #d9b75a;
	font-size: 22px;
}

.impact-number {
	font-size: 30px;
	font-weight: 700;
	color: var(--white-color);
	line-height: 1.1em;
}

.impact-label {
	margin: 8px 0 0;
	color: #d4d7dd;
}

@media (max-width: 991px) {
	.impact-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 575px) {
	.impact-section {
		padding: 70px 0 60px;
	}

	.impact-grid {
		grid-template-columns: 1fr;
	}
}

/************************************/
/***   Training Destinations      ***/
/************************************/

.training-destinations {
	padding: 90px 0 70px;
	background: var(--bg-color);
	text-align: center;
}

.training-destinations .section-title h3 {

	color: #2f7b4f;
	border-color: var(--divider-color);
}

.training-destinations .section-title h2 {
	text-align: center;
	color: var(--primary-color);
}

.training-destinations .section-title p {
	color: #4d554e;
}

.destinations-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
	margin-top: 40px;
}

.destination-card {
	display: block;
	background: var(--white-color);
	border: 1px solid #dce5d9;
	border-radius: 18px;
	padding: 20px 22px;
	box-shadow: 0 10px 35px rgba(17, 34, 17, 0.08);
	transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
	color: inherit;
}

.destination-card.featured {
	border-color: #7ac082;
	box-shadow: 0 12px 42px rgba(42, 111, 60, 0.15);
}

.destination-card:hover {
	transform: translateY(-4px);
	border-color: #7ac082;
	box-shadow: 0 14px 45px rgba(17, 34, 17, 0.12);
}

.destination-card .card-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 10px;
}

.destination-card h4 {
	font-size: 20px;
	margin: 0;
	color: #0d2f1d;
}

.destination-card p {
	margin: 0 0 14px;
	color: #4d554e;
	margin-right: 230px;

}

.destination-card i {
	color: #4d554e;
}

.destination-card .destination-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.destination-card .destination-tags span {
	display: inline-block;
	padding: 8px 12px;
	border-radius: 999px;
	background: #eef6ef;
	color: #2f7b4f;
	font-size: 13px;
	font-weight: 600;
}

@media (max-width: 991px) {
	.destinations-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 575px) {
	.training-destinations {
		padding: 70px 0 60px;
	}

	.destinations-grid {
		grid-template-columns: 1fr;
	}
}

.site-footer {
	margin-left: 130px;
	margin-top: 30px;
	top: 30px;
}

/************************************/
/***   All States Grid            ***/
/************************************/

.all-states {
	padding: 80px 0 70px;
	background: #f4f7f1;
}

.all-states .section-title h3 {
	color: #2f7b4f;
	border-color: var(--divider-color);
}

.all-states .section-title h2 {
	color: var(--primary-color);
	text-align: center;
}

.states-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 14px;
	margin-top: 35px;
}

.state-pill {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	padding: 12px 14px;
	border: 1px solid #dfe9d9;
	border-radius: 12px;
	background: var(--white-color);
	box-shadow: 0 8px 24px rgba(17, 34, 17, 0.06);
	color: inherit;
	transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.state-pill:hover {
	transform: translateY(-3px);
	border-color: #7ac082;
	box-shadow: 0 10px 28px rgba(17, 34, 17, 0.1);
}

.state-pill .state-name {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-weight: 600;
	color: #1c2f20;
}

.state-pill .state-name i {
	color: #C9A84C;
}

.state-pill .state-count {
	font-weight: 600;
	color: #4d554e;
	font-size: 13px;
}

@media (max-width: 575px) {
	.all-states {
		padding: 60px 0 55px;
	}
}

/************************************/
/***   05. Scrolling Ticker css   ***/
/************************************/

.our-scrolling-ticker {
	position: relative;
	background-color: var(--secondary-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 40s linear infinite;
}

.scrolling-content span {
	display: inline-block;
	font-family: var(--accent-font);
	font-size: 18px;
	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 {
	background-image: url('');
	height: 100%;
	background-repeat: no-repeat;
	background-position: right -40px bottom 100px;
	background-size: auto;
	padding: 100px 0;
}

.about-us .section-row .section-title {
	margin-right: 15px;
}

.customer-rating-box {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	margin-top: 30px;
}

.customer-rating-content {
	border-right: 1px solid var(--divider-color);
	margin-right: 40px;
	padding-right: 40px;
}

.customer-rating-star {
	margin-bottom: 15px;
}

.customer-rating-star i {
	color: #186e26;
	font-size: 16px;
}

.customer-rating-content h3 {
	font-size: 20px;
	margin-bottom: 10px;
}

.customer-rating-content p {
	margin: 0;
}

.customer-rating-images {
	background: var(--white-color);
	box-shadow: 0px 0px 20px 0px rgba(23, 44, 69, 0.10);
	border-radius: 100px;
	padding: 10px;
}

.customer-rating-images .satisfy-client-image {
	margin-left: -10px;
}

.customer-rating-images .satisfy-client-image:first-child {
	margin-left: 0;
}

.customer-rating-images .satisfy-client-image.add-more,
.customer-rating-images .satisfy-client-image figure {
	width: 40px;
	height: 40px;
}

.about-us-boxes {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.about-image-content-box-1 {
	position: relative;
	width: calc(25% - 20px);
}

.about-image {
	position: relative;
	height: 100%;
	border-radius: 20px;
	overflow: hidden;
}

.about-image::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(180deg, rgba(23, 44, 69, 0.00) 39.29%, var(--primary-color) 100%);
	width: 100%;
	height: 100%;
}

.about-image figure {
	display: block;
	height: 100%;
}

.about-image img {
	width: 100%;
	height: 100%;
	aspect-ratio: 1 / 0.741;
	object-fit: cover;
}

.about-image-content {
	position: absolute;
	bottom: 40px;
	left: 40px;
	right: 40px;
	z-index: 2;
}

.video-play-button a {
	position: relative;
	background: var(--accent-color);
	border-radius: 100%;
	width: 60px;
	height: 60px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: none;
}

.video-play-button a:after,
.video-play-button a:before {
	content: '';
	position: absolute;
	top: -34%;
	left: -34%;
	width: 160%;
	height: 160%;
	border: 50px solid var(--white-color);
	opacity: 50%;
	border-radius: 50%;
	transform: scale(0.6);
	z-index: -1;
	animation: border-zooming 1.2s infinite linear;
}

.video-play-button a:after {
	animation-delay: .3s;
}

@keyframes border-zooming {
	100% {
		transform: scale(1);
		opacity: 0;
	}
}

.video-play-button a i {
	font-size: 22px;
	color: var(--primary-color);
}

.about-video-title {
	margin-top: 30px;
}

.about-video-title h3 {
	font-size: 20px;
	color: var(--white-color);
}

.about-counter-box {
	width: calc(34% - 20px);
	background: var(--primary-color);
	border-radius: 20px;
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	justify-content: space-between;
	padding: 40px;
}

.about-counter-title {
	display: flex;
	align-items: center;
	gap: 10px;
	border-bottom: 1px solid var(--dark-divider-color);
	margin-bottom: 30px;
	padding-bottom: 30px;
}

.about-counter-title h2 {
	width: 95px;
	font-size: 46px;
	color: var(--white-color);
}

.about-counter-title h3 {
	font-size: 18px;
	color: var(--white-color);
}

.about-counter-content ul {
	padding: 0 0 0 20px;
	margin: 0 0 15px 0;
}

.about-counter-content ul li {
	color: var(--white-color);
	margin-bottom: 10px;
}

.about-counter-content ul li:last-child {
	margin-bottom: 0;
}

.about-counter-content p {
	color: var(--white-color);
	margin-bottom: 20px;
}

.about-counter-content .readmore-btn {
	color: var(--white-color);
}

.about-counter-content .readmore-btn::before {
	background-image: url('../images/arrow-white.svg');
}

.about-image-content-box-2 {
	position: relative;
	width: calc(41% - 20px);
}

.about-image-content ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
}

.about-image-content ul li {
	display: inline-block;
	font-size: 14px;
	color: var(--white-color);
	border: 1px solid var(--dark-divider-color);
	background: var(--dark-divider-color);
	backdrop-filter: blur(7px);
	-webkit-backdrop-filter: blur(7px);
	border-radius: 30px;
	padding: 7px 20px;
	transition: all 0.4s ease-in-out;
}

.about-image-content ul li:hover {
	background: var(--accent-color);
	color: var(--primary-color);
}

/************************************/
/*** 	 07. Our Services css	  ***/
/************************************/

.our-services {
	padding: 100px 0;
}

.service-item {
	position: relative;
	background: var(--white-color);
	border-radius: 20px;
	aspect-ratio: 1 / 1.15;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	padding: 40px 35px;
	overflow: hidden;
}

.service-item:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--white-color);
	border-radius: 20px;
	width: 100%;
	height: 100%;
	transition: all 0.5s ease-in-out;
	z-index: 1;
}

.service-item.active::before,
.service-item:hover::before {
	transform: translate(100%, -100%);
}

.service-image {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	opacity: 0;
	transition: all 0.4s ease-in-out;
}

.service-item.active .service-image,
.service-item:hover .service-image {
	opacity: 1;
}

.hero-bg-video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	z-index: 0;
	pointer-events: none;
}

.hero-bg-video iframe {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100vw;
	height: 56.25vw;
	min-height: 100vh;
	min-width: 177.77vh;
	transform: translate(-50%, -50%);
	pointer-events: none;
}

.service-image::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(180deg, rgba(23, 44, 69, 0.00) 39.29%, var(--primary-color) 100%);
	width: 100%;
	height: 100%;
}

.service-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.service-body {
	position: relative;
	height: 100%;
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	justify-content: space-between;
	z-index: 2;
}

.service-body-header {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	margin-bottom: 30px;
}

.service-body .icon-box {
	width: 50px;
	height: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	background: var(--accent-color);
	border-radius: 50%;
}

.service-body .icon-box img {
	width: 100%;
	max-width: 24px;
}

.service-readmore-btn {
	position: absolute;
	top: 5px;
	right: 0px;
	transform: translate(-100%, 100%) rotate(90deg);
	opacity: 0;
	visibility: hidden;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.service-item.active .service-readmore-btn,
.service-item:hover .service-readmore-btn {
	transform: translate(0, 0) rotate(0);
	opacity: 1;
	visibility: visible;
}

.service-readmore-btn a {
	background: var(--primary-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
}

.service-readmore-btn a img {
	max-width: 20px;
	transition: all 0.4s ease-in-out;
}

.service-readmore-btn a:hover img {
	transform: rotate(45deg);
}

.service-content h3 {
	font-size: 20px;
	margin-bottom: 10px;
	transition: all 0.4s ease-in-out;
}

.service-content h3 a {
	color: var(--primary-color);
}

.service-content p {
	margin-bottom: 0;
	transition: all 0.4s ease-in-out;
}

.service-item.active .service-content h3,
.service-item:hover .service-content h3,
.service-item.active .service-content p,
.service-item:hover .service-content p {
	color: var(--white-color);
}

.section-footer-text {
	margin-top: 30px;
	text-align: center;
}

.section-footer-text p {
	margin: 0;
}

.section-footer-text p span {
	display: inline-block;
	font-size: 14px;
	line-height: 1.1em;
	color: var(--white-color);
	background: var(--primary-color);
	border-radius: 4px;
	padding: 4px 12px;
	margin-right: 10px;
}

.section-footer-text p a {
	font-weight: 600;
	color: var(--primary-color);
	text-decoration: underline;
	transition: all 0.3s ease-in-out;
}

.section-footer-text p a:hover {
	color: var(--white-color);
}

/************************************/
/*** 	 08. Why Choose Us css	  ***/
/************************************/

.why-choose-us {
	background-image: url('../images/section-bg-shape-2.png');
	background-repeat: no-repeat;
	background-position: left -60px bottom 100px;
	background-size: auto;
	padding: 100px 0;
}

.why-choose-image-box {
	position: relative;
	margin-right: 15px;
}

.why-choose-image figure {
	display: block;
	border-radius: 20px;
}

.why-choose-image figure img {
	width: 100%;
	aspect-ratio: 1 / 1.16;
	object-fit: cover;
	border-radius: 20px;
}

.why-choose-image-box .satisfy-client-box {
	position: absolute;
	bottom: 30px;
	left: 30px;
	display: block;
	background: var(--dark-divider-color);
	border: 1px solid var(--dark-divider-color);
	backdrop-filter: blur(25px);
	-webkit-backdrop-filter: blur(25px);
	border-radius: 10px;
	padding: 25px;
}

.why-choose-image-box .satisfy-client-box .satisfy-client-content {
	margin-top: 20px;
}

.why-choose-image-box .satisfy-client-box .satisfy-client-content h3 {
	font-size: 18px;
	font-weight: 600;
	color: var(--primary-color);
}

.why-choose-body {
	display: flex;
	flex-wrap: wrap;
	gap: 30px 40px;
}

.why-choose-item-box {
	width: calc(60% - 20px);
}

.why-choose-item {
	border-bottom: 1px solid var(--divider-color);
	padding-bottom: 30px;
	margin-bottom: 30px;
	display: flex;
	flex-wrap: wrap;
}

.why-choose-item:last-child {
	border-bottom: none;
	padding-bottom: 0;
	margin-bottom: 0;
}

.why-choose-item-header {
	width: 50%;
	display: flex;
	align-items: center;
}

.why-choose-item-header .icon-box {
	position: relative;
	height: 50px;
	width: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: var(--accent-color);
	border-radius: 50%;
	margin-right: 15px;
}

.why-choose-item-header .icon-box::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	background-color: var(--primary-color);
	border-radius: 50%;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

.why-choose-item:hover .why-choose-item-header .icon-box::before {
	transform: scale(1);
}

.why-choose-item-header .icon-box img {
	position: relative;
	width: 100%;
	max-width: 24px;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.why-choose-item:hover .why-choose-item-header .icon-box img {
	filter: brightness(0) invert(1);
}

.why-choose-item-title {
	width: calc(100% - 65px);
}

.why-choose-item-title h3 {
	font-size: 18px;
	line-height: 1.3em;
}

.why-choose-item-content {
	width: calc(50% - 15px);
	border-left: 1px solid var(--divider-color);
	padding-left: 15px;
	margin-left: 15px;
}

.why-choose-item-content p {
	margin-bottom: 0;
}

.why-choose-body-image {
	width: calc(40% - 20px);
}

.why-choose-btn {
	margin-top: 60px;
}

.why-choose-body-image figure {
	display: block;
	border-radius: 20px;
}

.why-choose-body-image img {
	width: 100%;
	aspect-ratio: 1 / 1.01;
	object-fit: cover;
	border-radius: 20px;
}

/************************************/
/*** 	  09. What We Do css	  ***/
/************************************/

.what-we-do {
	background-image: url('../images/section-bg-shape-3.png');
	background-repeat: no-repeat;
	background-position: right -20px bottom -10px;
	background-size: auto;
	padding: 100px 0;
}

.what-we-contant {
	margin-right: 15px;
}

.what-we-counter-box {
	max-width: 300px;
	margin-top: 60px;
}

.what-we-counter-box h2 {
	font-size: 80px;
	line-height: 1em;
	font-weight: 600;
	color: var(--primary-color);
	background: var(--accent-color);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-stroke: 2px transparent;
	border-bottom: 1px solid var(--dark-divider-color);
	padding-bottom: 20px;
	margin-bottom: 20px;
}

.what-we-counter-box h3 {
	font-size: 20px;
	color: var(--white-color);
	margin-bottom: 5px;
}

.what-we-counter-box p {
	color: var(--white-color);
	margin: 0;
}

.what-we-item {
	display: flex;
	flex-wrap: wrap;
	border-bottom: 1px solid var(--dark-divider-color);
	margin-bottom: 40px;
	padding-bottom: 40px;
}

.what-we-item:last-child {
	border-bottom: none;
	padding-bottom: 0;
	margin-bottom: 0;
}

.what-we-item .icon-box {
	position: relative;
	height: 50px;
	width: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: var(--accent-color);
	border-radius: 50%;
	margin-right: 20px;
}

.what-we-item .icon-box::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	background-color: var(--white-color);
	border-radius: 50%;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

.what-we-item:hover .icon-box::before {
	transform: scale(1);
}

.what-we-item .icon-box img {
	position: relative;
	width: 100%;
	max-width: 24px;
	z-index: 1;
}

.what-we-content {
	width: calc(100% - 70px);
}

.what-we-content h3 {
	font-size: 20px;
	color: var(--white-color);
	margin-bottom: 10px;
}

.what-we-content p {
	color: var(--white-color);
	margin: 0;
}

/************************************/
/*** 	  10. Case Study css	  ***/
/************************************/

.case-study {
	background-image: url('../images/section-bg-shape-2.png');
	background-repeat: no-repeat;
	background-position: right -20px bottom 120px;
	background-size: auto;
	padding: 100px 0 60px;
}

.case-study-item {
	height: calc(100% - 40px);
	margin-bottom: 40px;
}

.case-study-image {
	position: relative;
	border-radius: 20px;
	margin-bottom: 20px;
	overflow: hidden;
}

.case-study-image::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	transform: scale(0);
	background: var(--primary-color);
	border-radius: 20px;
	opacity: 40%;
	width: 100%;
	height: 100%;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.case-study-item:hover .case-study-image::before {
	transform: scale(1);
}

.case-study-image figure {
	display: block;
}

.case-study-image figure img {
	width: 100%;
	aspect-ratio: 1 / 0.77;
	object-fit: cover;
	border-radius: 20px;
	transition: all 0.4s ease-in-out;
}

.case-study-item:hover .case-study-image figure img {
	transform: scale(1.1);
}

.case-study-btn {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(0);
	opacity: 0;
	visibility: hidden;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.case-study-item:hover .case-study-btn {
	opacity: 1;
	visibility: visible;
	transform: translate(-50%, -50%) scale(1);
}

.case-study-btn a {
	background: var(--accent-color);
	border-radius: 50%;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: 0.4s ease-in-out;
}

.case-study-btn a:hover {
	background: var(--white-color);
}

.case-study-btn a img {
	width: 100%;
	max-width: 24px;
	transition: 0.4s ease-in-out;
}

.case-study-btn a:hover img {
	transform: rotate(45deg);
}

.case-study-content h2 {
	font-size: 20px;
	line-height: 1.4em;
}

.case-study-content h2 a {
	color: inherit;
}

/************************************/
/*** 	  11. Intro Video css	  ***/
/************************************/

.intro-video {
	position: relative;
	overflow: hidden;
}

.intro-video .container-fluid {
	padding: 0;
}

.intro-video-box {
	position: relative;
	text-align: center;
	align-content: center;
	height: 800px;
}

.intro-video-box {
	position: relative;
}

.intro-video-image {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
}

.intro-video-image::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: var(--primary-color);
	opacity: 60%;
	width: 100%;
	height: 100%;
}

.intro-video-image figure {
	width: 100%;
	height: 100%;
	display: block;
	border-radius: 20px;
}

.intro-video-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.video-play-border-button {
	position: relative;
	z-index: 1;
}

.video-play-border-button a {
	position: relative;
	background: transparent;
	border: 1px solid var(--white-color);
	border-radius: 100%;
	width: 100px;
	height: 100px;
	color: var(--white-color);
	text-transform: uppercase;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: none;
	transition: all 0.4s ease-in-out;
}

.video-play-border-button a:hover {
	font-size: 20px;
	letter-spacing: 0.05em;
}

/************************************/
/*** 	 12. How It Work css	  ***/
/************************************/

.how-it-work {
	background-image: url('../images/section-bg-shape-4.png');
	background-repeat: no-repeat;
	background-position: left -30px bottom 100px;
	background-size: auto;
	padding: 100px 0;
}

.how-work-image-box {
	position: relative;
	margin-right: 15px;
}

.how-work-image figure {
	display: block;
	border-radius: 20px;
}

.how-work-image figure img {
	width: 100%;
	aspect-ratio: 1 / 1.257;
	object-fit: cover;
	border-radius: 20px;
}

.how-work-image-box .satisfy-client-box {
	position: absolute;
	bottom: 40px;
	left: 40px;
	display: block;
	width: 290px;
	background: var(--dark-divider-color);
	backdrop-filter: blur(25px);
	-webkit-backdrop-filter: blur(25px);
	border-radius: 20px;
	padding: 25px;
	z-index: 1;
}

.how-work-image-box .satisfy-client-box .satisfy-client-content {
	margin-top: 40px;
}

.how-work-image-box .satisfy-client-box .satisfy-client-content h3 {
	font-size: 20px;
	color: var(--primary-color);
	margin-bottom: 10px;
}

.how-work-image-box .satisfy-client-box .satisfy-client-content p {
	color: var(--primary-color);
}

.work-steps-item {
	display: flex;
	align-items: start;
	flex-wrap: wrap;
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 40px;
	padding-bottom: 40px;
}

.work-steps-item:last-child {
	border-bottom: none;
	padding-bottom: 0;
	margin-bottom: 0;
}

.work-step-no {
	display: inline-block;
	background: var(--accent-color);
	border-radius: 6px;
	padding: 7px 16px;
	margin-right: 25px;
	transition: all 0.4s ease-in-out;
}

.work-steps-item:hover .work-step-no {
	background: var(--primary-color);
}

.work-step-no h3 {
	font-family: var(--default-font);
	font-size: 16px;
	font-weight: 500;
	transition: all 0.4s ease-in-out;
}

.work-steps-item:hover .work-step-no h3 {
	color: var(--white-color);
}

.work-step-content {
	width: calc(100% - 125px);
}

.work-step-content h3 {
	font-size: 20px;
	margin-bottom: 10px;
}

.work-step-content p {
	margin: 0;
}

/************************************/
/*** 	  13. Our Pricing css	  ***/
/************************************/

.our-pricing {
	background-image: url('../images/section-bg-shape-5.png');
	background-repeat: no-repeat;
	background-position: bottom -20px left -20px;
	background-size: auto;
	padding: 100px 0;
}

.our-pricing-content {
	position: sticky;
	top: 50px;
	margin-right: 20px;
}

.our-pricing-btn .btn-default {
	background: var(--white-color);
}

.pricing-item {
	background: var(--white-color);
	border-radius: 20px;
	margin-bottom: 30px;
	padding: 40px;
}

.pricing-item:last-child {
	margin-bottom: 0;
}

.pricing-header {
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 30px;
	padding-bottom: 30px;
}

.pricing-header h3 {
	font-size: 20px;
}

.pricing-body {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.pricing-content {
	width: calc(55% - 15px);
}

.pricing-list {
	width: calc(45% - 15px);
}

.pricing-price {
	margin-bottom: 40px;
}

.pricing-price h2 {
	font-size: 34px;
	margin-bottom: 20px;
}

.pricing-price h2 sub {
	font-size: 20px;
	text-transform: capitalize;
	bottom: 0;
}

.pricing-price p {
	margin-bottom: 0;
}

.pricing-list ul {
	list-style: disc;
	margin: 0;
	padding: 0 0 0 20px;
}

.pricing-list ul li {
	margin-bottom: 20px;
	line-height: 1.5em;
}

.pricing-list ul li:last-child {
	margin-bottom: 0;
}

.pricing-list ul li::marker {
	color: var(--primary-color);
}

/************************************/
/*** 	   14. Our FAQs css 	  ***/
/************************************/

.our-faqs {
	background-image: url('../images/section-bg-shape-2.png');
	background-position: right -20px bottom 130px;
	background-repeat: no-repeat;
	background-size: auto;
	padding: 100px 0;
}

.faqs-content {
	position: sticky;
	top: 50px;
}

.faq-accordion {
	background: var(--secondary-color);
	border-radius: 20px;
	margin-left: 20px;
	padding: 40px;
}

.faq-accordion .accordion-item {
	border-bottom: 1px solid var(--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: 18px;
	font-weight: 500;
	line-height: 1.2em;
	color: var(--primary-color);
	padding-right: 25px;
	transition: all 0.3s ease-in-out;
}

.faq-accordion .accordion-button:not(.collapsed) {
	padding-bottom: 20px;
}

.faq-accordion .accordion-item .accordion-button::after,
.faq-accordion .accordion-item .accordion-button.collapsed::after {
	content: '\2b';
	font-family: "FontAwesome";
	position: absolute;
	right: 0;
	top: 0;
	transform: rotate(45deg);
	font-size: 18px;
	font-weight: 400;
	line-height: normal;
	color: var(--primary-color);
	transition: all 0.4s ease-in-out;
}

.faq-accordion .accordion-item .accordion-button.collapsed::after {
	transform: rotate(0deg);
}

.faq-accordion .accordion-item .accordion-body {
	padding-right: 25px;
}

.faq-accordion .accordion-item:last-child .accordion-body {
	padding-bottom: 0;
}

.faq-accordion .accordion-item .accordion-body p {
	margin-bottom: 15px;
}

.faq-accordion .accordion-item .accordion-body p:last-child {
	margin-bottom: 0;
}

/************************************/
/***   15. Our Testimonials css	  ***/
/************************************/

.our-testimonials {
	padding: 100px 0;
}

.testimonial-slider .swiper-wrapper {
	cursor: none;
}

.testimonial-item {
	display: flex;
	flex-wrap: wrap;
	border-radius: 20px;
	overflow: hidden;
}

.author-image {
	position: relative;
	width: 42%;
}

.author-image figure {
	display: block;
	height: 100%;
}

.author-image figure::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--primary-color);
	opacity: 40%;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.author-image figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	aspect-ratio: 1 / 1.28;
	transition: all 0.4s ease-in-out;
}

.testimonial-item:hover .author-image figure img {
	transform: scale(1.1);
}

.author-image .video-play-button {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 1;
}

.testimonial-content {
	width: 58%;
	background: var(--white-color);
	align-content: center;
	padding: 30px;
}

.testimonial-quote {
	margin-bottom: 30px;
}

.testimonial-quote img {
	width: 100%;
	max-width: 32px;
}

.testimonial-info {
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 20px;
	padding-bottom: 20px;
}

.testimonial-info p {
	margin-bottom: 0;
}

.author-content h3 {
	font-size: 20px;
	margin-bottom: 10px;
}

.author-content p {
	margin-bottom: 0;
}

.testimonial-pagination {
	text-align: center;
	margin-top: 60px;
}

.testimonial-pagination .swiper-pagination-bullet {
	position: relative;
	height: 10px;
	width: 10px;
	background: var(--dark-divider-color);
	border-radius: 100px;
	margin: 0 3px;
	opacity: 1;
	transition: all 0.4s ease-in-out;
}

.testimonial-pagination .swiper-pagination-bullet-active {
	width: 30px;
	background-color: var(--white-color);
}

/************************************/
/*** 	 	16. Our Blog css	  ***/
/************************************/

.our-blog {
	position: relative;
	padding: 100px 0 70px;
	z-index: 1;
}

.post-item {
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.post-featured-image {
	margin-bottom: 20px;
}

.post-featured-image a {
	cursor: none;
	display: block;
	border-radius: 20px;
	overflow: hidden;
}

.post-featured-image figure {
	display: block;
}

.post-featured-image img {
	width: 100%;
	aspect-ratio: 1 / 0.71;
	object-fit: cover;
	transition: all 0.5s ease-in-out;
}

.post-item:hover .post-featured-image img {
	transform: scale(1.1);
}

.post-item-content {
	margin-bottom: 20px;
}

.post-item-content h2 {
	font-size: 18px;
	line-height: 1.4em;
}

.post-item-content h2 a {
	display: inline-block;
	color: inherit;
}

/************************************/
/*** 	 	17. Footer css		  ***/
/************************************/

.main-footer {
	padding: 100px 0 0;
	margin-bottom: 50px;
}

.about-footer {
	margin-right: 30px;
}

.footer-logo {
	margin-bottom: 20px;
}

.footer-logo img {
	width: 100%;
	max-width: 130px;
}

.footer-logo.footer-logo-isf {
	margin-bottom: 0;
}

.footer-logo.footer-logo-isf img {
	max-width: 260px;
	width: 100%;
	display: block;
	filter: brightness(1.08) contrast(1.12);
}

.footer-logo.footer-logo-isf+.about-footer-content {
	margin-top: -34px;
}

.about-footer-content {
	margin-bottom: 30px;
}

.about-footer-content p {
	color: var(--white-color);
	margin-bottom: 0;
}

.footer-newsletter-box h3 {
	font-size: 20px;
	color: var(--white-color);
	margin-bottom: 20px;
}

.footer-newsletter-form .form-group {
	position: relative;
	display: flex;
	align-items: center;
	margin-bottom: 20px;
}

.footer-newsletter-form .form-group:last-child {
	margin-bottom: 0;
}

.footer-newsletter-form .form-group .form-control {
	width: 100%;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.2em;
	color: var(--white-color);
	background: transparent;
	border: none;
	border-bottom: 1px solid var(--dark-divider-color);
	border-radius: 0;
	outline: none;
	box-shadow: none;
	padding: 8px 40px 18px 0;
}

.footer-newsletter-form .form-group .form-control::placeholder {
	color: var(--white-color);
}

.footer-newsletter-form .form-group .newsletter-btn {
	position: absolute;
	top: 0;
	right: 0;
	width: 30px;
	height: 30px;
	background: var(--accent-color);
	border: none;
	border-radius: 4px;
	padding: 0;
	transition: all 0.3s ease-in-out;
}

.footer-newsletter-form .form-group .newsletter-btn:hover {
	background: var(--white-color);
}

.footer-newsletter-form .form-group .newsletter-btn img {
	width: 18px;
	transition: all 0.3s ease-in-out;
}

.footer-newsletter-form .form-group .newsletter-btn:hover img {
	transform: rotate(45deg);
}

.footer-newsletter-form .form-group input[type="checkbox" i] {
	width: 20px;
	height: 20px;
	box-shadow: none;
	margin-right: 10px;
}

.footer-newsletter-form .form-group .form-label {
	font-size: 14px;
	color: var(--white-color);
	margin: 0;
}

.footer-newsletter-form .form-group .form-label a {
	color: inherit;
	font-weight: 600;
	text-decoration: underline;
	transition: all 0.3s ease-in-out;
}

.footer-newsletter-form .form-group .form-label a:hover {
	color: var(--accent-color);
}

.footer-links-box {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 20px;
	margin: 0 1.563vw;
}

.footer-links h3 {
	font-size: 20px;
	color: var(--white-color);
	text-transform: capitalize;
	margin-bottom: 20px;
}

.footer-links ul {
	list-style: disc;
	margin: 0;
	padding-left: 20px;
}

.footer-links ul li {
	color: var(--white-color);
	line-height: 1.5em;
	text-transform: capitalize;
	margin-bottom: 15px;
}

.footer-links ul li:last-child {
	margin-bottom: 0;
}

.footer-links ul li::marker {
	color: var(--accent-color);
	transition: all 0.3s ease-in-out;
}

.footer-links ul li:hover::marker {
	color: var(--white-color);
}

.footer-links ul li a {
	color: inherit;
	transition: all 0.3s ease-in-out;
}

.footer-links ul li a:hover {
	color: var(--accent-color);
}

.footer-working-hour-box ul {
	list-style: none;
	padding: 0;
}

.footer-working-hour-box ul li {
	display: flex;
	justify-content: space-between;
	gap: 10px;
}

.footer-contact-map .footer-contact-item {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	margin-bottom: 18px;
}

.footer-contact-map .footer-contact-item i {
	font-size: 18px;
	color: var(--accent-color);
	padding-top: 4px;
}

.footer-contact-map .footer-contact-item p {
	color: var(--white-color);
	margin: 0;
}

.footer-contact-map .footer-contact-item a {
	display: block;
	color: var(--white-color);
	margin-bottom: 6px;
	transition: all 0.3s ease-in-out;
}

.footer-contact-map .footer-contact-item a:last-child {
	margin-bottom: 0;
}

.footer-contact-map .footer-contact-item a:hover {
	color: var(--accent-color);
}

.footer-map-wrap {
	border-radius: 8px;
	overflow: hidden;
	border: 1px solid var(--dark-divider-color);
	margin-top: 8px;
}

.footer-map-wrap iframe {
	width: 100%;
	height: 190px;
	border: 0;
	display: block;
}

.footer-copyright-text {
	text-align: center;
	border-top: 1px solid var(--dark-divider-color);
	margin-top: 60px;
	padding: 40px 0 60px;
}

.footer-copyright-text p {
	color: var(--white-color);
	margin-bottom: 0;
}

/************************************/
/*** 	 18. About Us Page css	  ***/
/************************************/

.page-header {
	position: relative;
	background: url('../images/') no-repeat;
	background-position: center center;
	background-size: contain;
	padding: 225px 0 115px;
	height: 50%;
	overflow: hidden;
}

.page-header::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: linear-gradient(270deg, rgba(23, 44, 69, 0.80) 0%, rgba(23, 44, 69, 0.80) 60.83%);
	height: 100%;
	width: 100%;
}

.page-header-box {
	position: relative;
	text-align: center;
	z-index: 2;
}

.page-header-box h1 {
	display: inline-block;
	font-size: 50px;
	font-weight: 400;
	color: var(--white-color);
	cursor: none;
	margin-bottom: 10px;
}

.page-header-box ol {
	margin: 0;
	padding: 0;
	justify-content: center;
}

.page-header-box ol li.breadcrumb-item {
	font-size: 16px;
	font-weight: 500;
	line-height: 1.5em;
	text-transform: capitalize;
	color: var(--white-color);
}

.page-header-box ol li.breadcrumb-item a {
	color: inherit;
}

.page-header-box ol li.breadcrumb-item.active {
	color: var(--white-color);
}

.page-header-box ol .breadcrumb-item+.breadcrumb-item::before {
	color: var(--white-color);
}

.page-header-fire {
	background: linear-gradient(90deg, #f36b21 0%, #2b2421 100%);
	padding: 160px 0 120px;
}

.page-header-industrial {
	background: linear-gradient(90deg, #2d6a2d 0%, #2b2421 100%);
	padding: 160px 0 120px;
}

.page-header-fire::before {
	background: none;
}

.page-header-fire .page-header-box {
	text-align: left;
	max-width: 1000px;
}

.page-header-fire .breadcrumb {
	margin-bottom: 18px;
	justify-content: flex-start;
	display: flex;
	gap: 6px;
	padding: 0;
	list-style: none;
}

.page-hero-row {
	display: flex;
	align-items: center;
	gap: 18px;
}

.page-hero-icon {
	width: 74px;
	height: 74px;
	border-radius: 18px;
	background: #ffffff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 34px;
	color: #e35d1d;
	box-shadow: 0 14px 32px rgba(0, 0, 0, 0.08);
}

.page-hero-icon-industry {
	width: 74px;
	height: 74px;
	border-radius: 18px;
	background: #ffffff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 34px;
	color: #2d6a2d;
	box-shadow: 0 14px 32px rgba(0, 0, 0, 0.08);
}

.page-hero-text h1 {
	font-size: 25px;
	line-height: 1.2em;
	margin-bottom: 6px;
}

.page-hero-text p {
	font-size: 18px;
	color: #f3efe8;
	margin: 0;
}

.page-header-fire .breadcrumb-item a {
	color: #f7e2cf;
}

.page-header-fire .breadcrumb-item+.breadcrumb-item::before {
	content: '/';
	color: #f7e2cf;
	margin: 0 4px;
}

.page-header-fire .breadcrumb-item,
.page-header-fire .breadcrumb-item.active {
	color: #f7e2cf;
}

.our-story-section {
	padding: 100px 0 80px;
}

.mission-vision-section {
	background: #fdf6e3;
	padding: 80px 0 90px;
}

.mv-card {
	background: var(--white-color);
	border-radius: 18px;
	padding: 32px 34px;
	box-shadow: 0 12px 35px rgba(23, 44, 69, 0.08);
	height: 100%;
	border: 3px solid transparent;
	transition: all 0.3s ease;
}

.mv-card-mission {
	border-color: #2e7d32;
}

.mv-card-vision {
	border-color: #c59a2f;
}

.mv-icon {
	width: 52px;
	height: 52px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 18px;
}

.mv-icon img {
	max-width: 100%;
}

.mv-title {
	font-size: 26px;
	margin-bottom: 14px;
}

.mv-text {
	margin: 0;
	font-size: 16px;
	line-height: 1.7em;
	color: #3d3d3d;
}

.mv-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 16px 40px rgba(23, 44, 69, 0.12);
}

.core-values-section {
	padding: 90px 0 70px;
	background: #f7f7f5;
}

.core-values-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 26px;
	margin-top: 36px;
}

.value-card {
	background: var(--white-color);
	border: 1px solid #e5e5e0;
	border-radius: 14px;
	padding: 22px 24px;
	box-shadow: 0 8px 30px rgba(23, 44, 69, 0.06);
	transition: all 0.25s ease;
}

.value-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 36px rgba(23, 44, 69, 0.10);
}

.value-icon {
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 14px;
}

.value-icon img {
	max-width: 100%;
}

.value-card h3 {
	font-size: 18px;
	margin-bottom: 10px;
}

.value-card p {
	margin: 0;
	font-size: 15px;
	line-height: 1.55em;
	color: #4a4a4a;
}

.provide-section {
	background: #e7f3e7;
	padding: 88px 0 92px;
}

.provide-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 26px;
	margin-top: 34px;
}

.provide-card {
	background: var(--white-color);
	border: 1px solid #e3e3df;
	border-radius: 16px;
	padding: 26px 28px 30px;
	box-shadow: 0 10px 32px rgba(23, 44, 69, 0.08);
	transition: all 0.25s ease;
}

.provide-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 14px 40px rgba(23, 44, 69, 0.12);
}

.provide-number {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: #edd9b3;
	color: #b07a1f;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	margin-bottom: 18px;
}

.provide-card h3 {
	font-size: 18px;
	margin-bottom: 10px;
}

.provide-card p {
	margin: 0;
	font-size: 15px;
	line-height: 1.6em;
	color: #444;
}

.lisa-section {
	background: #101010;
	padding: 92px 0 96px;
	color: #e9e9e9;
}

.lisa-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: #d6ae42;
	color: #1a1a1a;
	font-size: 13px;
	font-weight: 700;
	padding: 8px 14px;
	border-radius: 999px;
	margin-bottom: 16px;
}

.lisa-section h2 {
	color: #f6f6f6;
	margin-bottom: 16px;
}

.lisa-section p {
	color: #d7d7d7;
	margin-bottom: 18px;
	font-size: 15px;
	line-height: 1.7em;
}

.lisa-list {
	list-style: none;
	padding: 0;
	margin: 0 0 22px;
}

.lisa-list li {
	position: relative;
	padding-left: 22px;
	margin-bottom: 10px;
	color: #d7d7d7;
}

.lisa-list li:before {
	content: '✓';
	position: absolute;
	left: 0;
	top: 0;
	color: #d6ae42;
	font-weight: 700;
}

.lisa-cta {
	display: flex;
	align-items: center;
	gap: 14px;
}

.btn-gold {
	background: #d6ae42;
	color: #1a1a1a;
	border: 1px solid #d6ae42;
}

.btn-outline-gold {
	background: transparent;
	border: 1px solid #d6ae42;
	color: #d6ae42;
}

.btn-outline-gold:hover {
	background: #d6ae42;
	color: #1a1a1a;
}

.lisa-emblem {
	display: flex;
	justify-content: center;
}

.lisa-emblem-inner {
	width: 320px;
	height: 320px;
	border-radius: 50%;
	background: radial-gradient(circle at 40% 35%, #d6ae42 0%, #1a1a1a 60%);
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
}

.lisa-emblem img {
	width: 96px;
	height: 96px;
}

.university-section {
	padding: 100px 0 110px;
	text-align: center;
	background: #fdfdfb;
}

.uni-badge {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: #e5f3e7;
	color: #1d5b2f;
	font-weight: 700;
	font-size: 15px;
	padding: 12px 18px;
	border-radius: 999px;
	margin-bottom: 22px;
}

.uni-badge img {
	width: 20px;
	height: 20px;
}

.university-section h2 {
	font-size: 42px;
	margin-bottom: 14px;
}

.university-section p {
	font-size: 18px;
	color: #4a4a4a;
	margin-bottom: 30px;
}

.uni-cta .uni-btn {
	background: #1d5b2f;
	color: #ffffff;
	border-radius: 12px;
	padding: 18px 26px;
	font-size: 18px;
	font-weight: 700;
	border: 1px solid #1d5b2f;
}

.uni-cta .uni-btn:hover {
	background: transparent;
	color: #1d5b2f;
}

.leadership-section {
	background: #f6eedb;
	padding: 96px 0 110px;
	text-align: center;
}

.leadership-card {
	max-width: 520px;
	margin: 34px auto 0;
	background: var(--white-color);
	border: 1px solid #ebdfc6;
	border-radius: 16px;
	padding: 36px 34px;
	box-shadow: 0 14px 40px rgba(23, 44, 69, 0.08);
}



.leader-avatar {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	background: #e5f3e7;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
}

.leader-avatar img {
	width: 62px;
	height: 62px;
}

.leader-name {
	font-size: 24px;
	margin-bottom: 6px;
}

.leader-role {
	font-size: 17px;
	color: #1d5b2f;
	margin-bottom: 16px;
}

.leader-quote {
	font-size: 16px;
	line-height: 1.65em;
	color: #3f3f3f;
	margin-bottom: 20px;
}

.leader-note {
	font-size: 14px;
	color: #9c7c2d;
	margin: 0;
}

.partner-cta-section {
	background: #f7f7f7;
	padding: 88px 0 96px;
	text-align: center;
}

.partner-cta-section h2 {
	font-size: 38px;
	margin-bottom: 16px;
}

.partner-cta-section p {
	font-size: 18px;
	color: #4a4a4a;
	margin-bottom: 26px;
}

.partner-cta-buttons {
	display: inline-flex;
	gap: 14px;
	flex-wrap: wrap;
	justify-content: center;
}

.btn-outline-green {
	background: transparent;
	color: #1d5b2f;
	border: 1px solid #1d5b2f;
}

.btn-outline-green:hover {
	background: #1d5b2f;
	color: #ffffff;
}

.story-content h2 {
	font-size: 38px;
	margin-bottom: 20px;
}

.story-content p {
	font-size: 16px;
	line-height: 1.8em;
	color: var(--text-color);
}

.story-emblem {
	background: #ffffff;
	border-radius: 24px;
	padding: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 20px 50px rgba(23, 44, 69, 0.08);
}

.story-emblem img {
	max-width: 360px;
	width: 100%;
	height: auto;
}

@media only screen and (max-width: 991px) {
	.our-story-section {
		padding: 80px 0 60px;
	}

	.mission-vision-section {
		padding: 64px 0 74px;
	}

	.core-values-section {
		padding: 70px 0 60px;
	}

	.core-values-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.provide-section {
		padding: 70px 0 78px;
	}

	.provide-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.lisa-section {
		padding: 78px 0 82px;
	}

	.lisa-emblem-inner {
		width: 280px;
		height: 280px;
	}

	.university-section {
		padding: 86px 0 96px;
	}

	.university-section h2 {
		font-size: 44px;
	}

	.university-section p {
		font-size: 18px;
	}

	.leadership-section {
		padding: 82px 0 96px;
	}

	.partner-cta-section {
		padding: 76px 0 88px;
	}

	.story-content h2 {
		font-size: 38px;
	}

	.story-emblem {
		margin-top: 10px;
		padding: 32px;
	}
}

@media only screen and (max-width: 767px) {
	.story-content h2 {
		font-size: 32px;
	}

	.story-content p {
		font-size: 15px;
	}

	.story-emblem {
		padding: 28px;
	}

	.mv-title {
		font-size: 22px;
	}

	.mv-card {
		padding: 26px;
	}

	.core-values-grid {
		grid-template-columns: 1fr;
	}

	.value-card {
		padding: 20px 18px;
	}

	.value-card h3 {
		font-size: 16px;
	}

	.provide-grid {
		grid-template-columns: 1fr;
	}

	.provide-card {
		padding: 22px 20px 26px;
	}

	.lisa-section {
		padding: 64px 0 72px;
	}

	.lisa-cta {
		flex-wrap: wrap;
	}

	.lisa-emblem-inner {
		width: 220px;
		height: 220px;
	}

	.university-section {
		padding: 70px 0 80px;
	}

	.university-section h2 {
		font-size: 36px;
	}

	.university-section p {
		font-size: 17px;
	}

	.uni-cta .uni-btn {
		width: 100%;
		justify-content: center;
		display: inline-flex;
	}

	.leadership-section {
		padding: 70px 0 84px;
	}

	.leadership-card {
		padding: 30px 26px;
	}

	.leader-name {
		font-size: 22px;
	}

	.leader-quote {
		font-size: 15px;
	}

	.partner-cta-section {
		padding: 64px 0 80px;
	}

	.partner-cta-section h2 {
		font-size: 36px;
	}

	.partner-cta-section p {
		font-size: 18px;
	}

	.partner-cta-buttons {
		width: 100%;
	}

	.partner-cta-buttons .btn-default {
		width: 100%;
		text-align: center;
		justify-content: center;
	}
}

.our-approach {
	padding: 100px 0;
}

.approach-image {
	height: 100%;
	margin-right: 15px;
}

.approach-image figure {
	display: block;
	height: 100%;
	border-radius: 20px;
}

.approach-image img {
	width: 100%;
	height: 100%;
	aspect-ratio: 1 / 1.061;
	object-fit: cover;
	border-radius: 20px;
}

.approach-content {
	background-color: var(--white-color);
	border-radius: 20px;
	padding: 40px;
}

.mission-vision-list {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin-bottom: 40px;
}

.mission-vision-item {
	width: calc(50% - 15px);
}

.mission-vision-item .icon-box {
	position: relative;
	width: 50px;
	height: 50px;
	background-color: var(--accent-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 40px;
}

.mission-vision-item .icon-box:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: var(--primary-color);
	border-radius: 50%;
	width: 100%;
	height: 100%;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
}

.mission-vision-item:hover .icon-box:before {
	transform: scale(1);
}

.mission-vision-item .icon-box img {
	position: relative;
	width: 100%;
	max-width: 24px;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.mission-vision-item:hover .icon-box img {
	filter: brightness(0) invert(1);
}

.mission-vision-content h3 {
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 15px;
}

.mission-vision-content p {
	margin: 0;
}

.our-core-value {
	background-image: url('../images/section-bg-shape-6.png');
	background-repeat: no-repeat;
	background-position: right -20px top 100px;
	background-size: auto;
	padding: 100px 0;
}

.value-image-box-1 {
	padding-right: 80px;
}

.value-image-box-1 figure {
	display: block;
	border-radius: 20px;
}

.value-image-box-1 img {
	width: 100%;
	aspect-ratio: 1/0.528;
	object-fit: cover;
	border-radius: 20px;
}

.value-image-box-2 {
	display: flex;
	align-items: end;
}

.about-experience-box {
	width: 220px;
	background-color: var(--primary-color);
	border-radius: 20px;
	padding: 30px;
	margin: 20px 20px 0 0;
}

.about-experience-box .icon-box {
	position: relative;
	width: 60px;
	height: 60px;
	background-color: var(--accent-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
}

.about-experience-box .icon-box:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: var(--white-color);
	border-radius: 50%;
	width: 100%;
	height: 100%;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
}

.about-experience-box:hover .icon-box:before {
	transform: scale(1);
}

.about-experience-box .icon-box img {
	position: relative;
	width: 100%;
	max-width: 30px;
	z-index: 1;
}

.experience-box-content h2 {
	color: var(--white-color);
	font-size: 46px;
	margin-bottom: 5px;
}

.experience-box-content p {
	color: var(--white-color);
	font-weight: 500;
	text-transform: capitalize;
	margin: 0;
}

.value-img-2 {
	width: calc(100% - 240px);
	margin-top: -120px;
}

.value-img-2 figure {
	border: 10px solid var(--white-color);
	border-radius: 20px;
}

.value-img-2 img {
	width: 100%;
	aspect-ratio: 1 / 0.905;
	object-fit: cover;
}

.core-value-content {
	margin-left: 15px;
}

.our-experiment-item {
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 40px;
	padding-bottom: 40px;
}

.our-experiment-item:last-child {
	margin-bottom: 0px;
	padding-bottom: 0px;
	border-bottom: none;
}

.our-experiment-item h3 {
	position: relative;
	font-size: 20px;
	text-transform: capitalize;
	padding-left: 30px;
	margin-bottom: 15px;
}

.our-experiment-item h3:before {
	content: '\f058';
	font-family: 'Font Awesome 6 Free';
	position: absolute;
	font-weight: 900;
	font-size: 18px;
	color: var(--primary-color);
	top: 0;
	left: 0;
}

.our-experiment-item p {
	margin: 0;
}

.our-team {
	padding: 100px 0 70px;
}

.team-item {
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.team-image {
	position: relative;
	margin-bottom: 20px;
}

.team-image a,
.team-image figure {
	display: block;
	cursor: none;
	border-radius: 20px;
	overflow: hidden;
}

.team-image img {
	width: 100%;
	aspect-ratio: 1 / 1.356;
	object-fit: cover;
	transition: all 0.4s ease-in-out;
}

.team-item:hover .team-image img {
	transform: scale(1.07);
}

.team-social-icon {
	position: absolute;
	right: 40px;
	bottom: 0;
	left: 40px;
	opacity: 0;
	visibility: hidden;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.team-item:hover .team-social-icon {
	bottom: 40px;
	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;
	gap: 15px;
}

.team-social-icon ul li a {
	width: 36px;
	height: 36px;
	background: var(--primary-color);
	color: var(--white-color);
	border-radius: 50%;
	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 {
	font-size: 18px;
	color: inherit;
}

.our-team .team-image img {
	aspect-ratio: 1 / 1.1;
}

.team-social-text {
	background: rgba(23, 44, 69, 0.88);
	padding: 14px;
	border-radius: 12px;
	bottom: 20px;
	opacity: 1;
	visibility: visible;
}

.team-item:hover .team-social-text {
	bottom: 20px;
}

.team-social-text p {
	font-size: 14px;
	line-height: 1.55;
	color: var(--white-color);
	text-align: center;
	margin: 0;
}

.team-content {
	text-align: center;
}

.team-content h3 {
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 5px;
}

.team-content h3 a {
	color: inherit;
}

.team-content p {
	text-transform: capitalize;
	margin: 0;
}

/************************************/
/*** 	 19. Services Page css	  ***/
/************************************/

.page-services {
	padding: 100px 0 70px;
}

.page-services .btn-default {
	margin-top: 10px;
}

.page-services .service-list-split .service-item {
	padding: 0;
	aspect-ratio: auto;
	height: calc(100% - 30px);
	border-radius: 8px;
	border: 1px solid #ececec;
	overflow: hidden;
	background: var(--white-color);
}

.page-services .service-list-split .service-item::before,
.page-services .service-list-split .service-image::after {
	display: none;
}

.page-services .service-list-split .service-image {
	position: relative;
	opacity: 1;
	height: 260px;
}

.page-services .service-list-split .service-image img {
	height: 100%;
	object-fit: cover;
}

.page-services .service-list-split .service-body {
	display: flex;
	flex-direction: column;
	height: calc(100% - 260px);
	min-height: 220px;
}

.page-services .service-list-split .service-content {
	padding: 28px 26px 24px;
	text-align: center;
}

.page-services .service-list-split .service-content h3 {
	font-size: 30px;
	line-height: 1.15;
	margin-bottom: 14px;
	color: #c59a5d;
}

.page-services .service-list-split .service-content p {
	font-size: 17px;
	line-height: 1.7;
	color: #3f4751;
	max-width: 92%;
	margin: 0 auto;
}

.page-services .service-list-split .service-content .row {
	margin: 0 0 14px;
}

.page-services .service-list-split .service-content .row .col-lg-12 {
	padding: 0;
}

.page-services .service-list-split .service-content .btn-default {
	margin-top: 0;
}

.page-services .service-list-split .service-item:hover .service-content h3,
.page-services .service-list-split .service-item:hover .service-content p,
.page-services .service-list-split .service-item.active .service-content h3,
.page-services .service-list-split .service-item.active .service-content p {
	color: inherit;
}

@media only screen and (max-width: 767px) {
	.page-services .service-list-split .service-image {
		height: 220px;
	}

	.page-services .service-list-split .service-body {
		height: calc(100% - 220px);
		min-height: 200px;
	}

	.page-services .service-list-split .service-content {
		padding: 20px 18px;
	}

	.page-services .service-list-split .service-content h3 {
		font-size: 26px;
	}

	.page-services .service-list-split .service-content p {
		font-size: 16px;
	}
}

/************************************/
/*** 	 20. Service Single css	  ***/
/************************************/

.page-service-single {
	padding: 100px 0;
}

.page-single-sidebar {
	position: sticky;
	top: 30px;
	margin-right: 15px;
}

.page-category-list {
	border-radius: 20px;
	margin-bottom: 60px;
	overflow: hidden;
}

.page-category-list h3 {
	font-size: 20px;
	color: var(--white-color);
	text-transform: capitalize;
	background: var(--primary-color);
	padding: 25px 40px;
}

.page-category-list ul {
	background: var(--white-color);
	list-style: none;
	margin: 0;
	padding: 30px 40px;
}

.page-category-list ul li {
	line-height: 1.5em;
	font-weight: 500;
	border-bottom: 1px solid var(--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;
	text-transform: capitalize;
	color: var(--text-color);
	padding-right: 25px;
	transition: all 0.4s ease-in-out;
}

.page-category-list ul li:hover a {
	color: var(--primary-color);
}

.page-category-list ul li a::before {
	content: '';
	position: absolute;
	top: 2px;
	right: 0;
	background: url('../images/arrow-primary.svg') no-repeat;
	background-size: cover;
	background-position: right center;
	width: 20px;
	height: 20px;
	transition: all 0.4s ease-in-out;
}

.page-category-list ul li a:hover::before {
	transform: rotate(45deg);
}

.sidebar-cta-box {
	position: relative;
	background: url('../images/industrial-safety.jpeg') 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,
.sidebar-cta-content {
	position: relative;
	z-index: 1;
}

.sidebar-cta-logo {
	margin-bottom: 70px;
}

.sidebar-cta-logo img {
	width: 100%;
	max-width: 130px;
}

.sidebar-cta-content P {
	color: var(--white-color);
	margin-bottom: 20px;
}

.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.581;
	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: 46px;
	font-weight: 400;
	letter-spacing: -0.02em;
	margin-bottom: 20px;
}

.service-entry ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.service-entry ul li {
	position: relative;
	line-height: 1.5em;
	padding-left: 30px;
	margin-bottom: 15px;
}

.service-entry ul li:last-child {
	margin-bottom: 0;
}

.service-entry ul li::before {
	content: '\f058';
	font-family: 'Font Awesome 6 Free';
	position: absolute;
	top: 0;
	left: 0;
	font-size: 18px;
	font-weight: 900;
	color: var(--primary-color);
}

.service-discover-box,
.service-result-box,
.service-partnership-box {
	margin-top: 60px;
}

.service-discover-list {
	margin-top: 40px;
}

.service-discover-list ul {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.service-discover-list ul li {
	width: calc(50% - 15px);
	background: var(--white-color);
	border: 1px solid var(--divider-color);
	border-radius: 20px;
	padding: 20px 15px 20px 45px;
	margin: 0;
}

.service-discover-list ul li::before {
	top: 20px;
	left: 20px;
}

.service-discover-image-content {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin-top: 40px;
}

.service-discover-image,
.service-discover-content {
	width: calc(50% - 15px);
}

.service-discover-image figure {
	display: block;
	border-radius: 20px;
}

.service-discover-image img {
	width: 100%;
	aspect-ratio: 1 / 0.68;
	object-fit: cover;
	border-radius: 20px;
}

.service-result-box ul {
	margin-top: 40px;
}

.service-result-list {
	background: var(--secondary-color);
	border-radius: 20px;
	margin-top: 40px;
	padding: 40px;
}

.service-result-item {
	display: flex;
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 40px;
	padding-bottom: 40px;
}

.service-result-item:last-child {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

.service-result-item .icon-box {
	position: relative;
	width: 60px;
	height: 60px;
	background: var(--primary-color);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: 20px;
	overflow: hidden;
	transition: all 0.4s ease-in-out;
}

.service-result-item:hover .icon-box {
	background: var(--white-color);
}

.service-result-item .icon-box img {
	width: 100%;
	max-width: 30px;
	transition: all 0.4s ease-in-out;
}

.service-result-item:hover .icon-box img {
	filter: brightness(0) invert(0);
}

.service-result-content {
	width: calc(100% - 80px);
}

.service-result-content h3 {
	font-size: 20px;
	margin-bottom: 10px;
}

.service-result-content p {
	margin-bottom: 0;
}

.service-partnership-content {
	margin-top: 40px;
}

.service-partnership-content .our-experiment-item {
	margin-bottom: 30px;
	padding: 0;
	border: none;
}

.service-partnership-image {
	margin-top: 40px;
}

.service-partnership-image figure {
	display: block;
	border-radius: 20px;
}

.service-partnership-image img {
	width: 100%;
	aspect-ratio: 1 / 0.395;
	object-fit: cover;
	border-radius: 20px;
}

.page-single-faqs .faq-accordion {
	margin: 0;
}

/************************************/
/*** 	 21. Blog Archive css	  ***/
/************************************/

.page-blog {
	padding: 100px 0;
}

.page-blog .post-item {
	height: calc(100% - 40px);
	margin-bottom: 40px;
}

.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(--secondary-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(--primary-color);
	color: var(--white-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: 600;
	line-height: 1.2em;
	margin: 0 0 0.435em;
}

.post-entry h1 {
	font-size: 60px;
	font-weight: 400;
	letter-spacing: -0.02em;
}

.post-entry h2 {
	font-size: 46px;
	font-weight: 400;
	letter-spacing: -0.02em;
}

.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: 16px;
	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(--secondary-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(--primary-color);
}

.post-entry blockquote p:last-child {
	margin-bottom: 0;
}

.tag-links {
	font-family: var(--accent-font);
	font-size: 20px;
	font-weight: 500;
	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-family: var(--default-font);
	font-size: 16px;
	font-weight: 700;
	text-transform: capitalize;
	line-height: 1em;
	background: var(--accent-color);
	color: var(--primary-color);
	border-radius: 10px;
	padding: 12px 20px;
	transition: all 0.3s ease-in-out;
}

.post-tags .tag-links a:hover {
	background: var(--primary-color);
	color: var(--accent-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(--accent-color);
	color: var(--primary-color);
	border-radius: 10px;
	width: 40px;
	height: 40px;
	transition: all 0.3s ease-in-out;
}

.post-social-sharing ul li:hover a {
	background: var(--primary-color);
	color: var(--accent-color);
}

.post-social-sharing ul li a i {
	font-size: 18px;
	color: inherit;
}

/************************************/
/*** 	23. Case Study Page css	  ***/
/************************************/

.page-case-study {
	padding: 100px 0 70px;
}

/************************************/
/***   24. Case Study Single css  ***/
/************************************/

.page-case-study-single {
	padding: 100px 0;
}

.case-study-category-list ul li {
	display: flex;
	width: 100%;
	justify-content: space-between;
	color: var(--primary-color);
	font-weight: 500;
}

.case-study-category-list ul li span {
	width: 68%;
	color: var(--text-color);
	font-weight: 400;
}

.case-study-entry {
	margin-bottom: 60px;
}

.case-study-entry p {
	margin-bottom: 20px;
}

.case-study-entry p:last-child {
	margin-bottom: 0;
}

.case-study-entry h2 {
	font-size: 46px;
	font-weight: 400;
	letter-spacing: -0.02em;
	margin-bottom: 20px;
}

.case-study-entry ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.case-study-entry ul li {
	position: relative;
	line-height: 1.5em;
	padding-left: 30px;
	margin-bottom: 15px;
}

.case-study-entry ul li:last-child {
	margin-bottom: 0;
}

.case-study-entry ul li::before {
	content: '\f058';
	font-family: 'Font Awesome 6 Free';
	position: absolute;
	top: 0;
	left: 0;
	font-size: 18px;
	font-weight: 900;
	color: var(--primary-color);
}

.empowering-agriculture-box,
.field-trials-box,
.shaping-future-box {
	margin-top: 60px;
}

.empowering-box-list {
	margin-top: 40px;
}

.empowering-box {
	background: var(--secondary-color);
	border-radius: 20px;
	margin-bottom: 40px;
	padding: 40px;
}

.empowering-box:last-child {
	margin-bottom: 0;
}

.empowering-item {
	display: flex;
	margin-bottom: 40px;
}

.empowering-item .icon-box {
	margin-right: 20px;
}

.empowering-item .icon-box img {
	width: 100%;
	max-width: 60px;
}

.empowering-item-content {
	width: calc(100% - 80px);
}

.empowering-item-content h3 {
	font-size: 20px;
	margin-bottom: 10px;
}

.field-trials-step-list {
	display: flex;
	flex-wrap: wrap;
	gap: 40px 30px;
	margin-top: 40px;
}

.field-trials-step-item {
	width: calc(50% - 15px);
	display: flex;
}

.field-trials-step-no {
	position: relative;
	width: 60px;
	height: 60px;
	display: flex;
	justify-content: center;
	align-items: center;
	background: var(--secondary-color);
	border-radius: 50%;
	margin-right: 20px;
}

.field-trials-step-no::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	background-color: var(--primary-color);
	border-radius: 50%;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

.field-trials-step-item:hover .field-trials-step-no::before {
	transform: scale(1);
}

.field-trials-step-no h3 {
	position: relative;
	font-size: 24px;
	transition: all 0.3s ease-in-out;
	z-index: 1;
}

.field-trials-step-item:hover .field-trials-step-no h3 {
	color: var(--white-color);
}

.field-trials-content {
	width: calc(100% - 80px);
}

.field-trials-content h3 {
	font-size: 20px;
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 20px;
	padding-bottom: 20px;
}

.shaping-future-image-content {
	background: var(--white-color);
	border: 1px solid var(--divider-color);
	border-radius: 20px;
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	padding: 40px;
	margin-top: 40px;
}

.shaping-future-content,
.shaping-future-image {
	width: calc(50% - 15px);
}

.shaping-future-item {
	display: flex;
	margin-top: 30px;
}

.shaping-future-item h3 {
	width: calc(48% - 15px);
	font-size: 20px;
	border-right: 1px solid var(--divider-color);
	margin-right: 15px;
	padding-right: 15px;
}

.shaping-future-item p {
	width: 52%;
}

.shaping-future-image figure {
	display: block;
	border-radius: 20px;
}

.shaping-future-image img {
	width: 100%;
	aspect-ratio: 1 / 0.795;
	object-fit: cover;
	border-radius: 20px;
}

/************************************/
/*** 	   25. Team Page css	  ***/
/************************************/

.page-team {
	padding: 100px 0 70px;
}

/************************************/
/*** 	 26. Team Single css	  ***/
/************************************/

.page-team-single {
	padding: 100px 0;
}

.team-about-box,
.team-member-skill-box {
	margin-bottom: 60px;
}

.team-about-box {
	display: flex;
	flex-wrap: wrap;
	gap: 30px 60px;
}

.team-single-image,
.team-about-content {
	width: calc(50% - 30px);
}

.team-single-image figure {
	display: block;
	height: 100%;
	border-radius: 20px;
}

.team-single-image img {
	width: 100%;
	height: 100%;
	aspect-ratio: 1 / 0.98;
	object-fit: cover;
	border-radius: 20px;
}

.team-about-content {
	background: var(--white-color);
	border: 1px solid var(--divider-color);
	border-radius: 20px;
	padding: 40px;
}

.member-social-list {
	margin-bottom: 40px;
}

.member-social-list ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 10px 15px;
}

.member-social-list ul li a {
	width: 40px;
	height: 40px;
	color: var(--primary-color);
	border: 1px solid var(--primary-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.4s ease-in-out;
}

.member-social-list ul li a:hover {
	background: var(--primary-color);
	color: var(--accent-color);
}

.member-social-list ul li a i {
	color: inherit;
	font-size: 20px;
}

.team-contact-item {
	display: flex;
	margin-bottom: 30px;
}

.team-contact-item:last-child {
	margin-bottom: 0;
}

.team-contact-item .icon-box {
	position: relative;
	height: 60px;
	width: 60px;
	background-color: var(--accent-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 25px;
}

.team-contact-item .icon-box::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: var(--primary-color);
	border-radius: 50%;
	width: 100%;
	height: 100%;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
}

.team-contact-item:hover .icon-box::before {
	transform: scale(1);
}

.team-contact-item .icon-box img {
	position: relative;
	width: 100%;
	max-width: 30px;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.team-contact-item:hover .icon-box img {
	filter: brightness(0) invert(1);
}

.team-contact-content {
	width: calc(100% - 85px);
}

.team-contact-content p {
	text-transform: capitalize;
	margin-bottom: 5px;
}

.team-contact-content h3 {
	font-size: 20px;
}

.team-member-skill-box,
.team-member-contact-box {
	background: var(--white-color);
	border: 1px solid var(--divider-color);
	display: flex;
	flex-wrap: wrap;
	gap: 30px 140px;
	border-radius: 20px;
	padding: 40px;
}

.team-skill-content {
	width: calc(45% - 70px);
}

.team-skill-content .section-title {
	margin-bottom: 0;
}

.team-skill-list {
	width: calc(55% - 70px);
}

.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;
	margin-bottom: 20px;
}

.skills-progress-bar .skill-data .skill-title,
.skills-progress-bar .skill-data .skill-no {
	line-height: normal;
	font-weight: 500;
	text-transform: capitalize;
}

.skills-progress-bar .skillbar .skill-progress {
	position: relative;
	width: 100%;
	height: 16px;
	background: var(--secondary-color);
	border-radius: 100px;
	overflow: hidden;
}

.skills-progress-bar .skillbar .skill-progress .count-bar {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	background: var(--primary-color);
	border-radius: 100px;
}

.team-member-contact-box {
	gap: 30px;
}

.team-member-contact-info {
	width: calc(42% - 15px);
}

.team-member-contact-info .section-title {
	position: sticky;
	margin-bottom: 0;
	top: 50px;
}

.team-member-contact-box .contact-us-form {
	width: calc(58% - 15px);
	border-radius: 20px;
}

/************************************/
/*** 	 27. Pricing Page css	  ***/
/************************************/

.page-pricing {
	padding: 100px 0 70px;
}

.page-pricing .pricing-item {
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.page-pricing .pricing-item .pricing-content,
.page-pricing .pricing-item .pricing-list {
	width: 100%;
}

/************************************/
/***   28. Testimonials Page css  ***/
/************************************/

.page-testimonials {
	padding: 100px 0 70px;
}

.page-testimonials .testimonial-item {
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

/************************************/
/*** 	 29. 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;
}

/************************************/
/*** 	 30. 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: 40%;
	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(--primary-color);
	border-radius: 50%;
	height: 60px;
	width: 60px;
	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;
}

/************************************/
/*** 	  31. 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;
}

/************************************/
/***    32. Contact Us Page css	  ***/
/************************************/

.page-contact-us {
	padding: 100px 0 50px;
}

.contact-us-box {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	background-color: var(--secondary-color);
	border-radius: 20px;
	padding: 40px;
}

.contact-us-content {
	width: calc(50% - 15px);
	background-color: var(--white-color);
	border-radius: 20px;
	padding: 40px;
}

.contact-info-item {
	display: flex;
	align-items: center;
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 40px;
	padding-bottom: 40px;
}

.contact-info-item:last-child {
	margin-bottom: 0px;
	padding-bottom: 0px;
	border-bottom: none;
}

.contact-info-item .icon-box {
	position: relative;
	height: 60px;
	width: 60px;
	background-color: var(--accent-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 25px;
}

.contact-info-item .icon-box::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: var(--primary-color);
	border-radius: 50%;
	width: 100%;
	height: 100%;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
}

.contact-info-item:hover .icon-box::before {
	transform: scale(1);
}

.contact-info-item .icon-box img {
	position: relative;
	width: 100%;
	max-width: 30px;
	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 {
	width: calc(100% - 85px);
}

.contact-item-content p {
	text-transform: capitalize;
	margin-bottom: 5px;
}

.contact-item-content h3 {
	font-size: 20px;
}

.contact-item-content h3 a {
	color: inherit;
	transition: all 0.3s ease-in-out;
}

.contact-item-content h3 a:hover {
	color: var(--accent-color);
}

.contact-us-image {
	position: relative;
	width: calc(50% - 15px);
}

.contact-us-img {
	height: 100%;
}

.contact-us-img figure {
	height: 100%;
	display: block;
	border-radius: 20px;
}

.contact-us-img img {
	width: 100%;
	height: 65%;
	aspect-ratio: 1 / 1.24;
	object-fit: cover;
	border-radius: 20px;
}

.working-hours-box {
	position: absolute;
	bottom: 30px;
	left: 30px;
	background-color: var(--dark-divider-color);
	border: 1px solid var(--dark-divider-color);
	border-radius: 20px;
	padding: 30px;
	backdrop-filter: blur(7px);
	-webkit-backdrop-filter: blur(7px);
	z-index: 1;
}

.working-hours-header {
	margin-bottom: 30px;
}

.working-hours-header h3 {
	color: black;
	font-size: 20px;
	text-transform: capitalize;
}

.working-hours-body ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.working-hours-body ul li {
	font-size: 16px;
	color: black;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px 70px;
	margin-bottom: 20px;
}

.working-hours-body ul li:last-child {
	margin-bottom: 0;
}

.page-contact-us {
	background-color: #f7f7f7;
	padding: 90px 0 80px;
}

.contact-card-grid {
	margin-top: 25px;
}

.contact-card {
	background-color: #ffffff;
	border: 1px solid #e2e6e2;
	border-radius: 18px;
	padding: 26px 22px;
	text-align: center;
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	height: 100%;
}

.contact-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 14px 36px rgba(0, 0, 0, 0.08);
}

.contact-card-icon {
	height: 64px;
	width: 64px;
	border-radius: 50%;
	background: #e4efe4;
	color: #2f5f33;
	display: grid;
	place-items: center;
	font-size: 22px;
	margin: 0 auto 14px;
}

.contact-card h4 {
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 8px;
	color: #1f1f1f;
}

.contact-card-meta {
	color: #6b6b6b;
	font-size: 14px;
	margin-bottom: 8px;
}

.contact-card-text {
	color: #2b2b2b;
	font-weight: 600;
}

.contact-card-link {
	color: #2f5f33;
	font-weight: 700;
	text-decoration: none;
}

.contact-card-link:hover {
	color: #1f4723;
}

.contact-form-map {
	padding: 50px 0 100px;
}

.contact-form-box {
	display: flex;
	flex-wrap: wrap;
	border-radius: 20px;
	overflow: hidden;
}

.contact-form-box .contact-us-form,
.google-map {
	width: 50%;
}

.contact-us-form {
	background-color: var(--primary-color);
	padding: 40px;
}

.contact-us-form .section-title h2,
.contact-us-form .section-title p {
	color: var(--white-color);
}

.contact-form form .form-control {
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5em;
	color: var(--text-color);
	background-color: var(--white-color);
	border: none;
	border-radius: 20px;
	padding: 18px 20px;
	outline: none;
	box-shadow: none;
}

.contact-form form .form-control::placeholder {
	color: var(--text-color);
}

.contact-form form .btn-default {
	width: 100%;
	padding: 17px;
}

.contact-form form .btn-default::before {
	display: none;
}

.google-map iframe {
	width: 100%;
	height: 100%;
}

/* Contact form captcha */
.captcha-row {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 12px;
}

.captcha-question {
	font-weight: 700;
	color: #1f1f1f;
	padding: 10px 14px;
	border: 1px solid #e2e6e2;
	border-radius: 12px;
	background: #f6f6f6;
	min-width: 110px;
	text-align: center;
}

.captcha-input {
	height: 44px;
	border-radius: 12px !important;
}

.captcha-refresh {
	border: 1px solid #dcdcdc;
	background: #fff;
	color: #1f1f1f;
	padding: 10px 12px;
	border-radius: 12px;
	cursor: pointer;
	transition: all 0.2s ease;
}

.captcha-refresh:hover {
	background: #f0f0f0;
}

.captcha-error {
	display: none;
	color: #c0392b;
	font-size: 14px;
	margin-top: 8px;
}

.captcha-label {
	font-weight: 600;
	margin-bottom: 10px;
	display: inline-block;
}

/* Success popup */
.contact-success-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.55);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 2000;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.25s ease;
}

.contact-success-overlay.show {
	opacity: 1;
	pointer-events: auto;
}

.contact-success-modal {
	background: #ffffff;
	border-radius: 16px;
	padding: 28px 26px 24px;
	max-width: 360px;
	width: 92%;
	text-align: center;
	position: relative;
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
}

.contact-success-icon {
	height: 64px;
	width: 64px;
	border-radius: 50%;
	background: #e4efe4;
	color: #2f5f33;
	display: grid;
	place-items: center;
	font-size: 28px;
	margin: 0 auto 12px;
}

.contact-success-modal h3 {
	margin: 0 0 8px;
	font-size: 20px;
	font-weight: 700;
	color: #1f1f1f;
}

.contact-success-modal p {
	margin: 0;
	color: #555;
	font-size: 15px;
}

.contact-success-close {
	position: absolute;
	top: 10px;
	right: 12px;
	border: none;
	background: transparent;
	font-size: 22px;
	color: #7a7a7a;
	cursor: pointer;
	line-height: 1;
}

.contact-success-close:hover {
	color: #1f1f1f;
}

/************************************/
/*** 	 33. 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: 50%;
}

.error-page-content {
	text-align: center;
}

.error-page-content .section-title {
	margin-bottom: 15px;
}

/************************************/
/***      34. Responsive css      ***/
/************************************/


@media only screen and (max-width: 1820px) {

	.bg-section {
		max-width: calc(100% - 40px);
		margin: 0 20px;
	}

	.hero-content-box .section-title {
		margin-right: 0;
	}

	.main-footer {
		margin-bottom: 20px;
	}
}


@media only screen and (max-width: 1024px) {

	.main-menu ul li {
		margin: 0;
	}
}

@media only screen and (max-width: 991px) {

	.btn-default {
		padding: 15px 40px 15px 15px;
	}

	.btn-default::before {
		right: 15px;
		width: 18px;
		height: 18px;
	}

	.btn-default.btn-border {
		padding: 14px 40px 14px 15px;
	}

	.navbar {
		padding: 20px 0;
	}

	.slicknav_nav li,
	.slicknav_nav ul {
		display: block;
	}

	.responsive-menu,
	.navbar-toggle {
		display: block;
	}

	.header-btn {
		display: none;
	}

	.bg-section {
		max-width: 100%;
		border-radius: 0;
		margin: 0;
	}

	.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: 30px;
	}

	.section-title h3 {
		padding: 6px 14px 6px 26px;
	}

	.section-title h3::before {
		left: 14px;
	}

	.section-title h1 {
		font-size: 45px;
	}

	.section-title h2 {
		font-size: 36px;
	}

	.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.hero-slider-layout .hero-slide {
		padding: 170px 0 80px;
	}

	.hero-video-circle {
		display: none;
	}

	.hero-body {
		margin-top: 30px;
		padding-top: 30px;
	}

	.hero-experience-box h2 {
		width: 65px;
		font-size: 36px;
	}

	.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 {
		background-size: 140px auto;
		background-position: right -10px bottom 50px;
		padding: 50px 0;
	}

	.about-us .section-row .section-title {
		margin-right: 0px;
	}

	.customer-rating-content {
		margin-right: 30px;
		padding-right: 30px;
	}

	.about-image-content-box-1 {
		width: calc(50% - 15px);
	}

	.about-image-content-box-2 {
		width: 100%;
	}

	.about-image-content-box-2 .about-image img {
		aspect-ratio: 1 / 0.5;
	}

	.about-image-content {
		bottom: 30px;
		left: 30px;
		right: 30px;
	}

	.about-counter-box {
		width: calc(50% - 15px);
		padding: 30px;
	}

	.about-counter-title h2 {
		width: 85px;
		font-size: 36px;
	}

	.our-services {
		padding: 50px 0;
	}

	.service-item {
		aspect-ratio: 1 / 1.03;
		padding: 30px;
	}

	.section-footer-text {
		margin-top: 10px;
	}

	.why-choose-us {
		background-size: 140px auto;
		background-position: left -40px bottom 50px;
		padding: 50px 0;
	}

	.why-choose-image-box {
		margin: 0 0 30px;
	}

	.why-choose-image figure img {
		aspect-ratio: 1 / 0.8;
	}

	.why-choose-image-box .satisfy-client-box {
		bottom: 20px;
		left: 20px;
		padding: 20px;
	}

	.what-we-do {
		background-size: 140px auto;
		background-position: right -20px bottom -10px;
		padding: 50px 0;
	}

	.what-we-contant {
		margin: 0 0 30px;
	}

	.what-we-counter-box {
		max-width: 300px;
		margin-top: 30px;
	}

	.what-we-counter-box h2 {
		font-size: 60px;
		margin-bottom: 10px;
		padding-bottom: 10px;
	}

	.what-we-item {
		margin-bottom: 30px;
		padding-bottom: 30px;
	}

	.case-study {
		background-size: 140px auto;
		background-position: right -20px bottom 50px;
		padding: 50px 0 20px;
	}

	.case-study-item {
		height: calc(100% - 30px);
		margin-bottom: 30px;
	}

	.case-study-image {
		margin-bottom: 15px;
	}

	.case-study-content h2 {
		font-size: 18px;
	}

	.intro-video-box {
		height: 500px;
	}

	.video-play-border-button a {
		width: 80px;
		height: 80px;
	}

	.video-play-border-button a:hover {
		font-size: 18px;
	}

	.how-it-work {
		background-size: 130px auto;
		background-position: left -20px bottom 0;
		padding: 50px 0;
	}

	.how-work-image-box {
		margin: 0 0 30px;
	}

	.how-work-image figure img {
		aspect-ratio: 1 / 0.8;
	}

	.how-work-image-box .satisfy-client-box {
		bottom: 30px;
		left: 30px;
		width: 290px;
		padding: 20px;
	}

	.how-work-image-box .satisfy-client-box .satisfy-client-content {
		margin-top: 30px;
	}

	.work-steps-item {
		margin-bottom: 30px;
		padding-bottom: 30px;
	}

	.our-pricing {
		background-size: 140px auto;
		background-position: left -10px bottom -10px;
		padding: 50px 0;
	}

	.our-pricing-content {
		position: initial;
		margin: 0 0 30px;
	}

	.pricing-item {
		padding: 30px;
	}

	.pricing-header {
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

	.pricing-price {
		margin-bottom: 30px;
	}

	.pricing-price h2 {
		font-size: 28px;
		margin-bottom: 15px;
	}

	.pricing-price h2 sub {
		font-size: 18px;
	}

	.pricing-list ul li {
		margin-bottom: 15px;
	}

	.our-faqs {
		padding: 50px 0;
	}

	.faqs-content {
		position: initial;
		margin: 0 0 30px;
	}

	.faq-accordion {
		padding: 30px;
		margin-left: 0;
	}

	.faq-accordion .accordion-item {
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

	.faq-accordion .accordion-button:not(.collapsed) {
		padding-bottom: 15px;
	}

	.our-testimonials {
		padding: 50px 0;
	}

	.author-image figure img {
		aspect-ratio: 1 / 0.99;
	}

	.testimonial-content {
		padding: 20px;
	}

	.testimonial-quote {
		margin-bottom: 20px;
	}

	.testimonial-pagination {
		margin-top: 20px;
	}

	.our-blog {
		padding: 50px 0 20px;
	}

	.post-featured-image {
		margin-bottom: 15px;
	}

	.main-footer {
		padding: 50px 0 0;
	}

	.about-footer {
		margin: 0 0 40px;
	}

	.footer-logo {
		margin-bottom: 15px;
	}

	.about-footer-content {
		margin-bottom: 20px;
	}

	.footer-newsletter-form .form-group {
		margin-bottom: 15px;
	}

	.footer-links-box {
		margin: 0;
	}

	.footer-links h3 {
		margin-bottom: 15px;
	}

	.footer-links ul li {
		margin-bottom: 10px;
	}

	.footer-copyright-text {
		margin-top: 30px;
		padding: 30px 0;
	}

	.page-header {
		padding: 170px 0 80px;
	}

	.page-header-box h1 {
		font-size: 45px;
		margin-bottom: 5px;
	}

	.our-approach {
		padding: 50px 0;
	}

	.approach-image {
		height: auto;
		margin-right: 0;
		margin-bottom: 30px;
	}

	.approach-image img {
		height: auto;
		aspect-ratio: 1 / 0.7;
	}

	.approach-content {
		padding: 30px;
	}

	.mission-vision-list {
		margin-bottom: 30px;
	}

	.mission-vision-item .icon-box {
		margin-bottom: 30px;
	}

	.mission-vision-content h3 {
		margin-bottom: 10px;
	}

	.our-core-value {
		background-size: 100px auto;
		background-position: right -10px top 50px;
		padding: 50px 0;
	}

	.core-value-image {
		max-width: 80%;
		margin: 0 auto;
		margin-bottom: 30px;
	}

	.about-experience-box {
		padding: 20px;
	}

	.experience-box-content h2 {
		font-size: 36px;
	}

	.core-value-content {
		margin-left: 0px;
	}

	.our-experiment-item {
		margin-bottom: 30px;
		padding-bottom: 30px;
	}

	.our-experiment-item h3 {
		padding-left: 25px;
		margin-bottom: 10px;
	}

	.our-experiment-item h3:before {
		font-size: 16px;
	}

	.our-team {
		padding: 50px 0 20px;
	}

	.team-image img {
		aspect-ratio: 1 / 1.1;
	}

	.team-social-icon {
		right: 30px;
		left: 30px;
	}

	.team-item:hover .team-social-icon {
		bottom: 30px;
	}

	.team-image {
		margin-bottom: 15px;
	}

	.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,
	.page-category-list ul {
		padding: 15px 30px;
	}

	.page-category-list ul li {
		margin-bottom: 15px;
		padding-bottom: 15px;
	}

	.sidebar-cta-box {
		padding: 30px;
	}

	.sidebar-cta-logo {
		margin-bottom: 40px;
	}

	.page-single-image {
		margin-bottom: 30px;
	}

	.service-entry {
		margin-bottom: 40px;
	}

	.service-entry p {
		margin-bottom: 15px;
	}

	.service-entry h2 {
		font-size: 36px;
		margin-bottom: 15px;
	}

	.service-entry ul li {
		padding-left: 25px;
		margin-bottom: 10px;
	}

	.service-entry ul li::before {
		font-size: 16px;
	}

	.service-discover-box,
	.service-result-box,
	.service-partnership-box {
		margin-top: 40px;
	}

	.service-discover-list {
		margin-top: 30px;
	}

	.service-discover-list ul {
		gap: 20px;
	}

	.service-discover-list ul li {
		width: calc(50% - 10px);
		font-size: 14px;
		border-radius: 12px;
		padding: 12px 12px 12px 35px;
		margin-bottom: 0;
	}

	.service-discover-list ul li::before {
		top: 14px;
		left: 12px;
	}

	.service-discover-image-content {
		gap: 20px;
		margin-top: 30px;
	}

	.service-discover-image,
	.service-discover-content {
		width: calc(50% - 10px);
	}

	.service-discover-content .why-choose-item {
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

	.service-discover-content .why-choose-item:last-child {
		margin-bottom: 0;
		padding: 0;
	}

	.service-discover-content .why-choose-item .why-choose-item-content p {
		font-size: 14px;
	}

	.service-result-box ul {
		margin-top: 30px;
	}

	.service-result-list {
		margin-top: 30px;
		padding: 30px;
	}

	.service-result-item {
		margin-bottom: 30px;
		padding-bottom: 30px;
	}

	.service-partnership-content .our-experiment-item {
		margin-bottom: 20px;
	}

	.service-partnership-image {
		margin-top: 30px;
	}

	.page-blog {
		padding: 50px 0;
	}

	.page-blog .post-item {
		height: calc(100% - 30px);
		margin-bottom: 30px;
	}

	.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: 36px;
	}

	.post-entry p {
		margin-bottom: 15px;
	}

	.post-entry ol li,
	.post-entry ul li {
		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-case-study {
		padding: 50px 0 20px;
	}

	.page-case-study-single {
		padding: 50px 0;
	}

	.case-study-entry {
		margin-bottom: 40px;
	}

	.case-study-entry p {
		margin-bottom: 15px;
	}

	.case-study-entry h2 {
		font-size: 36px;
		margin-bottom: 15px;
	}

	.case-study-entry ul li {
		padding-left: 25px;
		margin-bottom: 10px;
	}

	.case-study-entry ul li::before {
		font-size: 16px;
	}

	.empowering-agriculture-box,
	.field-trials-box,
	.shaping-future-box {
		margin-top: 40px;
	}

	.empowering-box-list {
		margin-top: 30px;
	}

	.empowering-box {
		padding: 30px;
		margin-bottom: 30px;
	}

	.empowering-item {
		margin-bottom: 30px;
	}

	.empowering-item .icon-box {
		margin-right: 15px;
	}

	.empowering-item .icon-box img {
		max-width: 50px;
	}

	.empowering-item-content {
		width: calc(100% - 65px);
	}

	.field-trials-step-list {
		gap: 30px;
		margin-top: 30px;
	}

	.field-trials-step-no {
		height: 50px;
		width: 50px;
		margin-right: 15px;
	}

	.field-trials-step-no h3 {
		font-size: 20px;
	}

	.field-trials-content {
		width: calc(100% - 65px);
	}

	.field-trials-content h3 {
		font-size: 18px;
		margin-bottom: 10px;
		padding-bottom: 10px;
	}

	.shaping-future-image-content {
		margin-top: 30px;
		padding: 30px;
	}

	.shaping-future-item {
		margin-top: 20px;
	}

	.page-team {
		padding: 50px 0 20px;
	}

	.page-team-single {
		padding: 50px 0;
	}

	.team-about-box,
	.team-member-skill-box {
		margin-bottom: 40px;
	}

	.team-single-image,
	.team-about-content {
		width: 100%;
	}

	.team-single-image img {
		height: auto;
		aspect-ratio: 1 / 0.85;
	}

	.team-about-content {
		padding: 30px;
	}

	.member-social-list {
		margin-bottom: 30px;
	}

	.team-contact-item .icon-box {
		width: 50px;
		height: 50px;
		margin-right: 15px;
	}

	.team-contact-item .icon-box img {
		max-width: 24px;
	}

	.team-contact-content {
		width: calc(100% - 65px);
	}

	.team-member-skill-box,
	.team-member-contact-box {
		gap: 30px;
		padding: 30px;
	}

	.team-skill-content,
	.team-skill-list {
		width: 100%;
	}

	.skills-progress-bar {
		margin-bottom: 20px;
	}

	.skills-progress-bar .skill-data {
		margin-bottom: 15px;
	}

	.team-member-contact-info,
	.team-member-contact-box .contact-us-form {
		width: 100%;
	}

	.team-member-contact-info .section-title {
		position: initial;
	}

	.page-pricing {
		padding: 50px 0 20px;
	}

	.page-testimonials {
		padding: 50px 0 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 25px;
	}

	.contact-us-box {
		padding: 30px;
	}

	.contact-us-content,
	.contact-us-image {
		width: 100%;
	}

	.contact-us-content {
		padding: 30px;
	}

	.contact-info-item {
		margin-bottom: 30px;
		padding-bottom: 30px;
	}

	.contact-info-item .icon-box {
		margin-right: 15px;
	}

	.contact-item-content {
		width: calc(100% - 75px);
	}

	.contact-us-img img {
		aspect-ratio: 1 / 0.9;
	}

	.working-hours-box {
		bottom: 20px;
		left: 20px;
		padding: 20px;
	}

	.working-hours-header {
		margin-bottom: 20px;
	}

	.contact-form-map {
		padding: 25px 0 50px;
	}

	.contact-form-box .contact-us-form,
	.google-map {
		width: 100%;
	}

	.contact-us-form {
		padding: 30px;
	}

	.contact-form form .form-control {
		padding: 12px 15px;
		border-radius: 12px;
	}

	.contact-form form .btn-default {
		padding: 15px;
	}

	.google-map 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: 28px;
	}

	.section-title h2 {
		font-size: 26px;
	}

	.hero-btn {
		gap: 15px;
	}

	.hero-experience-box {
		width: 100%;
	}

	.hero-experience-box h2 {
		width: 50px;
		font-size: 26px;
	}

	.satisfy-client-box {
		gap: 10px;
	}

	.satisfy-client-image figure {
		width: 45px;
		height: 45px;
	}

	.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;
	}

	.customer-rating-box {
		align-items: start;
		justify-content: space-between;
		gap: 10px;
	}

	.customer-rating-content {
		border-right: none;
		margin-right: 0px;
		padding-right: 0px;
	}

	.customer-rating-content h3 {
		font-size: 18px;
		margin-bottom: 5px;
	}

	.customer-rating-content p {
		font-size: 14px;
	}

	.customer-rating-images {
		padding: 6px;
	}

	.about-us-boxes {
		gap: 20px;
	}

	.about-image-content-box-1 {
		width: 100%;
	}

	.about-image-content {
		bottom: 20px;
		left: 20px;
		right: 20px;
	}

	.about-video-title h3 {
		font-size: 18px;
	}

	.about-counter-box {
		width: 100%;
		padding: 20px;
	}

	.about-counter-title {
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

	.about-counter-title h2 {
		width: 65px;
		font-size: 26px;
	}

	.about-image-content-box-2 .about-image img {
		aspect-ratio: 1 / 0.741;
	}

	.about-image-content ul {
		gap: 10px;
	}

	.about-image-content ul li {
		font-size: 12px;
		padding: 5px 15px;
	}

	.service-content h3 {
		font-size: 18px;
		margin-bottom: 6px;
	}

	.why-choose-image figure img {
		aspect-ratio: 1 / 1.1;
	}

	.why-choose-image-box .satisfy-client-box .satisfy-client-content {
		margin-top: 10px;
	}

	.why-choose-image-box .satisfy-client-box .satisfy-client-content h3 {
		font-size: 16px;
	}

	.why-choose-item-box {
		width: 100%;
	}

	.why-choose-item {
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

	.why-choose-item-header .icon-box {
		width: 45px;
		height: 45px;
		margin-right: 10px;
	}

	.why-choose-item-title {
		width: calc(100% - 55px);
	}

	.why-choose-item-title h3 {
		font-size: 16px;
	}

	.why-choose-item-content {
		width: calc(50% - 10px);
		padding-left: 10px;
		margin-left: 10px;
	}

	.why-choose-item-content p {
		font-size: 14px;
	}

	.why-choose-btn {
		margin-top: 30px;
	}

	.why-choose-body-image {
		width: 100%;
	}

	.why-choose-body-image img {
		aspect-ratio: 1 / 0.8;
	}

	.what-we-counter-box {
		max-width: 100%;
	}

	.what-we-counter-box h2 {
		font-size: 40px;
	}

	.what-we-counter-box h3 {
		font-size: 18px;
	}

	.what-we-item {
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

	.what-we-item .icon-box {
		margin-right: 10px;
	}

	.what-we-content {
		width: calc(100% - 60px);
	}

	.what-we-content h3 {
		font-size: 18px;
	}

	.what-we-content p {
		font-size: 14px;
	}

	.intro-video-box {
		height: 300px;
	}

	.how-work-image figure img {
		aspect-ratio: 1 / 1.1;
	}

	.how-work-image-box .satisfy-client-box {
		bottom: 20px;
		left: 20px;
		padding: 15px;
	}

	.how-work-image-box .satisfy-client-box .satisfy-client-content {
		margin-top: 20px;
	}

	.how-work-image-box .satisfy-client-box .satisfy-client-content h3 {
		font-size: 18px;
	}

	.how-work-image-box .satisfy-client-box .satisfy-client-content p {
		font-size: 14px;
	}

	.work-steps-item {
		display: block;
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

	.work-step-no {
		margin: 0 0 15px;
	}

	.work-step-content {
		width: 100%;
	}

	.work-step-content h3 {
		font-size: 18px;
		margin-bottom: 5px;
	}

	.pricing-item {
		padding: 20px;
	}

	.pricing-header {
		margin-bottom: 15px;
		padding-bottom: 15px;
	}

	.pricing-header h3 {
		font-size: 18px;
	}

	.pricing-body {
		gap: 20px;
	}

	.pricing-content,
	.pricing-list {
		width: 100%;
	}

	.pricing-price {
		margin-bottom: 20px;
	}

	.pricing-price h2 {
		font-size: 22px;
		margin-bottom: 10px;
	}

	.pricing-price h2 sub {
		font-size: 14px;
	}

	.pricing-list ul li {
		margin-bottom: 10px;
	}

	.faq-accordion {
		padding: 20px;
	}

	.faq-accordion .accordion-button:not(.collapsed) {
		padding-bottom: 10px;
	}

	.faq-accordion .accordion-item .accordion-body {
		padding: 0;
	}

	.faq-accordion .accordion-item .accordion-body p {
		font-size: 14px;
	}

	.author-image,
	.testimonial-content {
		width: 100%;
	}

	.author-image figure,
	.author-image figure img {
		height: auto;
	}

	.testimonial-quote {
		margin-bottom: 15px;
	}

	.testimonial-info {
		margin-bottom: 15px;
		padding-bottom: 15px;
	}

	.author-content h3 {
		font-size: 18px;
		margin-bottom: 5px;
	}

	.about-footer {
		margin: 0 0 30px;
	}

	.footer-newsletter-box h3 {
		font-size: 18px;
		margin-bottom: 15px;
	}

	.footer-links-box {
		gap: 0;
	}

	.footer-links {
		width: 100%;
		margin-bottom: 30px;
	}

	.footer-links h3 {
		font-size: 18px;
	}

	.footer-copyright-text {
		margin: 0;
		padding: 15px 0;
	}

	.page-header-box h1 {
		font-size: 28px;
	}

	.approach-image img {
		aspect-ratio: 1 / 0.9;
	}

	.approach-content {
		padding: 30px 20px;
	}

	.mission-vision-item {
		width: 100%;
	}

	.mission-vision-item .icon-box {
		margin-bottom: 20px;
	}

	.mission-vision-content h3 {
		font-size: 18px;
		margin-bottom: 5px;
	}

	.core-value-image {
		max-width: 100%;
	}

	.value-image-box-1 {
		padding-right: 0;
	}

	.value-image-box-2 {
		margin-top: 10px;
		align-items: start;
	}

	.about-experience-box {
		width: 145px;
		padding: 12px;
		margin: 5px 10px 0 0;
	}

	.about-experience-box .icon-box {
		width: 50px;
		height: 50px;
		margin-bottom: 10px;
	}

	.about-experience-box .icon-box img {
		max-width: 26px;
	}

	.experience-box-content h2 {
		font-size: 26px;
	}

	.experience-box-content p {
		font-size: 14px;
	}

	.value-img-2 {
		width: calc(100% - 155px);
		margin-top: 0px;
	}

	.value-img-2 figure {
		border-width: 5px;
	}

	.our-experiment-item {
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

	.our-experiment-item h3 {
		font-size: 18px;
	}

	.team-content h3 {
		font-size: 18px;
	}

	.page-category-list h3,
	.page-category-list ul,
	.sidebar-cta-box {
		padding: 20px;
	}

	.page-category-list h3 {
		font-size: 18px;
	}

	.page-single-image {
		margin-bottom: 20px;
	}

	.service-entry h2 {
		font-size: 26px;
	}

	.service-discover-list ul {
		gap: 10px;
	}

	.service-discover-list ul li {
		width: 100%;
		padding: 8px 12px 8px 35px;
	}

	.service-discover-list ul li::before {
		top: 10px;
	}

	.service-discover-image,
	.service-discover-content {
		width: 100%;
	}

	.service-result-list {
		padding: 20px;
	}

	.service-result-item {
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

	.service-result-item .icon-box {
		width: 50px;
		height: 50px;
		margin-right: 15px;
	}

	.service-result-item .icon-box img {
		max-width: 26px;
	}

	.service-result-content {
		width: calc(100% - 65px);
	}

	.service-result-content h3 {
		font-size: 18px;
		margin-bottom: 5px;
	}

	.service-result-content p {
		font-size: 14px;
	}

	.service-partnership-image {
		margin-top: 20px;
	}

	.service-partnership-image img {
		aspect-ratio: 1 / 0.54;
	}

	.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;
	}

	.case-study-entry h2 {
		font-size: 26px;
	}

	.empowering-box {
		padding: 20px;
	}

	.empowering-item {
		margin-bottom: 20px;
	}

	.empowering-item-content h3 {
		font-size: 18px;
		margin-bottom: 5px;
	}

	.field-trials-step-item {
		width: 100%;
	}

	.shaping-future-image-content {
		padding: 20px;
	}

	.shaping-future-content,
	.shaping-future-image {
		width: 100%;
	}

	.shaping-future-item h3 {
		width: calc(45% - 5px);
		font-size: 18px;
		margin-right: 5px;
		padding-right: 5px;
	}

	.shaping-future-item p {
		width: 56%;
	}

	.team-single-image img {
		aspect-ratio: 1 / 1.2;
	}

	.team-about-content {
		padding: 20px;
	}

	.member-social-list {
		margin-bottom: 20px;
	}

	.team-contact-content h3 {
		font-size: 18px;
	}

	.team-member-skill-box,
	.team-member-contact-box {
		padding: 20px;
	}

	.contact-us-box {
		padding: 20px;
	}

	.contact-us-content {
		padding: 20px;
	}

	.contact-info-item {
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

	.contact-info-item .icon-box {
		height: 50px;
		width: 50px;
	}

	.contact-info-item .icon-box img {
		max-width: 26px;
	}

	.contact-item-content {
		width: calc(100% - 65px);
	}

	.contact-item-content h3 {
		font-size: 18px;
	}

	.contact-us-img img {
		aspect-ratio: 1 / 1.1;
	}

	.working-hours-header h3 {
		font-size: 18px;
	}

	.working-hours-box {
		bottom: 15px;
		left: 15px;
		padding: 15px;
	}

	.working-hours-body ul li {
		font-size: 14px;
		gap: 10px 20px;
		margin-bottom: 10px;
	}

	.contact-us-form {
		padding: 20px;
	}

	.google-map iframe {
		height: 350px;
	}

	.footer-logo.footer-logo-isf img {
		max-width: 220px;
	}

	.footer-logo.footer-logo-isf+.about-footer-content {
		margin-top: -20px;
	}
}

/* Training Domain Cards (Homepage) */
.training-domain-section {
	background: #f6f6f6;
	padding: 90px 0;
}

.training-domain-header {
	width: 100%;
	max-width: 760px;
	margin: 0 auto 50px;
	text-align: center;
}

.training-domain-header h2 {
	font-size: 52px;
	font-weight: 600;
	line-height: 1.15em;
	letter-spacing: -0.02em;
	color: #1f1f1f;
	margin-bottom: 16px;
}

.training-domain-header p {
	font-size: 22px;
	line-height: 1.5em;
	color: #646464;
	margin: 0;
}

.training-card-grid .col-lg-4 {
	margin-bottom: 30px;
}

.training-card {
	display: grid;
	gap: 12px;
	height: 100%;
	background: #ffffff;
	border: 1px solid #e4e4e4;
	border-left: 2px solid #d9b95f;
	border-radius: 14px;
	padding: 28px;
	transition: all 0.25s ease;
}

.training-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.training-card-icon {
	width: 56px;
	height: 56px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
	margin-bottom: 22px;
}

.training-card-icon.icon-orange {
	background: #fff3e8;
	color: #f97316;
}

.training-card-icon.icon-green {
	background: #ecfdf3;
	color: #2f7d32;
}

.training-card-icon.icon-blue {
	background: #eaf3ff;
	color: #2563eb;
}

.training-card-icon.icon-amber {
	background: #fff7e6;
	color: #d97706;
}

.training-card-icon.icon-teal {
	background: #ecfeff;
	color: #0f766e;
}

.training-card-icon.icon-purple {
	background: #f4f0ff;
	color: #7c3aed;
}

.training-card h4 {
	font-size: 20px;
	font-weight: 400;
	line-height: 1.2em;
	color: #1f1f1f;
	margin-bottom: 14px;
}

.training-card p {
	font-size: 16px;
	line-height: 1.5em;
	color: #666666;
	margin-bottom: 18px;
}

.training-card-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 16px;
	font-weight: 700;
	color: #256f37;
	line-height: 1.2em;
}

.training-card-link:hover {
	color: #1b5a2b;
}

.safety-training-matters {
	padding: 70px 0;
	background: #dff1c8;
}

.safety-training-matters h3 {
	font-size: 32px;
	font-weight: 700;
	color: #1f1f1f;
	margin-bottom: 10px;
}

.safety-training-matters p {
	font-size: 18px;
	line-height: 1.6em;
	color: #3f3f3f;
	margin: 0;
}

.training-programs-showcase {
	padding: 90px 0 100px;
	background: #f7f7f7;
}

.training-programs-showcase .section-head h2 {
	font-size: 42px;
	font-weight: 700;
	color: #1f1f1f;
	margin-bottom: 8px;
}

.training-programs-showcase .section-head p {
	font-size: 18px;
	color: #4a4a4a;
	margin: 0;
}

.programs-card-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 22px;
	margin-top: 40px;
}

.program-card {
	background: #ffffff;
	border: 1px solid #e1e1e1;
	border-radius: 14px;
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
	padding: 26px;
	display: grid;
	gap: 14px;
	height: 100%;
}

.program-icon {
	width: 56px;
	height: 56px;
	border-radius: 12px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
}

.program-icon.icon-orange {
	background: #fff3e8;
	color: #f97316;
}

.program-icon.icon-green {
	background: #e9f7ec;
	color: #2f7b4f;
}

.program-icon.icon-blue {
	background: #eaf3ff;
	color: #2563eb;
}

.program-card h4 {
	font-size: 20px;
	font-weight: 700;
	color: #1f1f1f;
	margin: 0;
}

.program-card p {
	font-size: 16px;
	line-height: 1.55em;
	color: #4a4a4a;
	margin: 0;
}

.program-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 14px 18px;
	font-size: 14px;
	color: #5a5a5a;
}

.program-meta i {
	margin-right: 6px;
	color: #3b3b3b;
}

.program-btn {
	margin-top: 20px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	height: 38px;
	border-radius: 8px;
	background: #2f7b4f;
	color: #ffffff;
	font-size: 16px;
	font-weight: 700;
	transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.program-btn:hover {
	background: #23673f;
	box-shadow: 0 10px 18px rgba(35, 103, 63, 0.25);
	transform: translateY(-2px);
	color: #ffffff;
}

.training-process {
	padding: 90px 0;
	background: #eaf7f0;
	text-align: center;
}

.training-process .section-head h2 {
	font-size: 38px;
	margin-bottom: 8px;
}

.training-process .section-head p {
	font-size: 18px;
	color: #4a4a4a;
	margin: 0;
}

.training-process-steps {
	margin-top: 36px;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 26px;
	align-items: start;
}

.process-step {
	text-align: center;
}

.step-badge {
	width: 68px;
	height: 68px;
	border-radius: 50%;
	background: #d3ab3f;
	color: #000000;
	font-weight: 700;
	font-size: 20px;
	display: grid;
	place-items: center;
	margin: 0 auto 14px auto;
	box-shadow: 0 8px 18px rgba(211, 171, 63, 0.35);
}

.process-step h4 {
	font-size: 18px;
	font-weight: 700;
	color: #1f1f1f;
	margin-bottom: 8px;
}

.process-step p {
	font-size: 15px;
	color: #4a4a4a;
	margin: 0;
}

.credibility-highlight {
	padding: 90px 0 110px;
	background: #f9f9f9;
}

.credibility-card {
	background: #fff5df;
	border-radius: 18px;
	padding: 36px 40px;
	display: flex;
	align-items: center;
	gap: 36px;
	box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}

.credibility-text h3 {
	font-size: 28px;
	font-weight: 700;
	color: #1f1f1f;
	margin: 12px 0 12px;
}

.credibility-text p {
	font-size: 16px;
	line-height: 1.6em;
	color: #3f3f3f;
	margin: 0;
}

.credibility-tag {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: #f1e1b5;
	color: #3f3a23;
	padding: 8px 12px;
	border-radius: 999px;
	font-size: 14px;
	font-weight: 600;
}

.credibility-tag i {
	color: #2f2a18;
}

.credibility-checklist {
	list-style: none;
	padding: 0;
	margin: 18px 0 0;
	display: grid;
	gap: 8px;
}

.credibility-checklist li {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 15px;
	color: #303030;
}

.credibility-checklist i {
	color: #2f7b4f;
}

.credibility-cta {
	margin-left: auto;
	display: flex;
	align-items: center;
}

.credibility-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 14px 18px;
	background: #2f7b4f;
	color: #ffffff;
	border-radius: 8px;
	font-weight: 700;
	transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.credibility-btn:hover {
	background: #23673f;
	box-shadow: 0 10px 18px rgba(35, 103, 63, 0.25);
	transform: translateY(-2px);
	color: #ffffff;
}

.industries-overview {
	padding: 70px 0 20px;
	text-align: center;
}

.industries-overview h2 {
	font-size: 36px;
	font-weight: 700;
	color: #1f1f1f;
	margin-bottom: 10px;
}

.industries-overview p {
	font-size: 17px;
	color: #4a4a4a;
	margin: 0;
}

.industries-grid-section {
	padding: 20px 0 100px;
	background: #f8f8f8;
}

.industries-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 26px;
}

.industry-card {
	background: #ffffff;
	border: 1px solid #e7e7e7;
	border-radius: 18px;
	box-shadow: 0 16px 32px rgba(0, 0, 0, 0.06);
	padding: 32px;
	display: flex;
	flex-direction: column;
	gap: 18px;
	height: 100%;
}

.industry-card-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

.industry-icon {
	width: 46px;
	height: 46px;
	border-radius: 12px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	background: #e8f3ea;
	color: #2f7b4f;
}

.industry-tag {
	padding: 7px 12px;
	border-radius: 999px;
	background: #f9eac7;
	color: #8a6b1a;
	font-size: 12px;
	font-weight: 700;
	white-space: nowrap;
}

.industry-card h4 {
	font-size: 23px;
	font-weight: 700;
	color: #1f1f1f;
	margin: 0;
}

.industry-card p {
	font-size: 16px;
	line-height: 1.65em;
	color: #3f3f3f;
	margin: 0;
}

.hazards {
	display: grid;
	gap: 12px;
}

.hazard-label {
	font-size: 14px;
	font-weight: 700;
	color: #c53030;
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.hazard-label i {
	color: inherit;
}

.hazard-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 12px;
}

.hazard-chip {
	padding: 7px 12px;
	border-radius: 10px;
	background: #ffeaea;
	border: 1px solid #f4cfcf;
	color: #a13131;
	font-size: 13px;
	font-weight: 600;
}

.industry-link {
	margin-top: auto;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-weight: 700;
	color: #2f7b4f;
	font-size: 16px;
	margin-top: 10px;
}

.industry-link:hover {
	color: #23673f;
}

.custom-industry-cta {
	padding: 90px 0;
	background: #fdf5e4;
	text-align: center;
}

.custom-industry-cta h2 {
	font-size: 40px;
	font-weight: 700;
	color: #1f1f1f;
	margin-bottom: 16px;
}

.custom-industry-cta p {
	max-width: 820px;
	margin: 0 auto 28px;
	font-size: 20px;
	line-height: 1.6em;
	color: #4a4a4a;
}

.custom-industry-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 14px 28px;
	background: #b88a27;
	color: #1f1f1f;
	border-radius: 10px;
	font-weight: 700;
	font-size: 17px;
	transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.custom-industry-btn:hover {
	background: #9f741f;
	transform: translateY(-2px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
	color: #1f1f1f;
}

.industry-programs {
	padding: 80px 0 60px;
	background: #f9f9f9;
}

.programs-title {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 22px;
}

.programs-title i {
	color: #2f7b4f;
	font-size: 20px;
}

.programs-title h3 {
	margin: 0;
	font-size: 24px;
	font-weight: 800;
	color: #1f1f1f;
}

.program-card-row {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
}

.program-card-link {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 22px 18px;
	border: 1px solid #e1e1e1;
	border-radius: 12px;
	background: #ffffff;
	box-shadow: 0 8px 18px rgba(0, 0, 0, 0.05);
	color: #1f1f1f;
	font-weight: 700;
	transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.program-card-link:hover {
	border-color: #2f7b4f;
	color: #2f7b4f;
	transform: translateY(-2px);
}

.program-card-link i {
	color: inherit;
}

.industry-approach {
	padding: 90px 0 80px;
	background: #fdf5e4;
}

.industry-approach h3 {
	font-size: 24px;
	font-weight: 800;
	color: #1f1f1f;
	margin-bottom: 12px;
}

.industry-approach p {
	margin: 0;
	font-size: 17px;
	line-height: 1.65em;
	color: #3f3f3f;
	max-width: 760px;
}

.industry-quote {
	padding: 80px 0 100px;
	background: #ffffff;
}

.industry-quote h3 {
	font-size: 22px;
	font-weight: 800;
	color: #1f1f1f;
	margin-bottom: 16px;
}

.quote-form {
	display: grid;
	gap: 14px;
	max-width: 820px;
}

.form-row {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
}

.form-group {
	display: grid;
	gap: 6px;
}

.form-group label {
	font-size: 13px;
	font-weight: 700;
	color: #333;
}

.form-group input,
.form-group textarea {
	width: 100%;
	border: 1px solid #d7d7d7;
	border-radius: 6px;
	padding: 10px 12px;
	font-size: 14px;
}

.form-group input[readonly] {
	background: #eff8ed;
	font-weight: 700;
}

.quote-btn {
	margin-top: 4px;
	width: fit-content;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 14px;
	background: #b88a27;
	color: #1f1f1f;
	border-radius: 8px;
	font-weight: 700;
	border: none;
	cursor: pointer;
	transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.quote-btn:hover {
	background: #9f741f;
	transform: translateY(-1px);
	box-shadow: 0 10px 18px rgba(0, 0, 0, 0.12);
}

@media (max-width: 991px) {
	.program-card-row {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.industry-approach {
		padding: 70px 0 60px;
	}
}

@media (max-width: 575px) {
	.program-card-row {
		grid-template-columns: 1fr;
	}

	.form-row {
		grid-template-columns: 1fr;
	}

	.industry-approach h3 {
		font-size: 22px;
	}
}

@media (max-width: 991px) {
	.safety-training-matters {
		padding: 60px 0;
	}

	.safety-training-matters h3 {
		margin-bottom: 14px;
	}

	.training-programs-showcase {
		padding: 70px 0 80px;
	}

	.training-programs-showcase .section-head h2 {
		font-size: 32px;
	}

	.training-process {
		padding: 70px 0;
	}

	.credibility-card {
		flex-direction: column;
		align-items: flex-start;
		gap: 22px;
	}

	.credibility-cta {
		margin-left: 0;
	}

	.industries-overview {
		padding: 50px 0 10px;
	}

	.industries-grid-section {
		padding: 10px 0 70px;
	}

	.industries-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.custom-industry-cta {
		padding: 70px 0;
	}

	.custom-industry-cta h2 {
		font-size: 32px;
	}
}

@media (max-width: 575px) {
	.programs-card-grid {
		grid-template-columns: 1fr;
	}

	.training-process-steps {
		grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	}

	.credibility-card {
		padding: 26px;
	}

	.industries-overview h2 {
		font-size: 28px;
	}

	.industries-grid {
		grid-template-columns: 1fr;
	}

	.industry-card {
		padding: 18px;
	}

	.custom-industry-cta h2 {
		font-size: 28px;
	}

	.custom-industry-cta p {
		font-size: 17px;
	}
}

@media only screen and (max-width: 991px) {
	.training-domain-section {
		padding: 70px 0;
	}

	.training-domain-header h2 {
		font-size: 36px;
	}

	.training-domain-header p {
		font-size: 18px;
	}

	.training-card h3 {
		font-size: 24px;
	}

	.training-card p,
	.training-card-link {
		font-size: 17px;
	}
}

@media only screen and (max-width: 767px) {
	.training-domain-section {
		padding: 50px 0;
	}

	.training-domain-header {
		margin-bottom: 30px;
	}

	.training-domain-header h2 {
		font-size: 28px;
	}

	.training-domain-header p {
		font-size: 16px;
	}

	.training-card {
		padding: 22px;
	}

	.training-card-grid .col-lg-4 {
		margin-bottom: 20px;
	}

	.training-card h3 {
		font-size: 22px;
	}

	.training-card p,
	.training-card-link {
		font-size: 16px;
	}
}

/* Industries We Serve (Homepage) */
.industries-serve-section {
	padding: 90px 0;
	background: #f8f8f8;
}

.industries-serve-header {
	width: 100%;
	max-width: 680px;
	margin: 0 auto 40px;
	text-align: center;
}

.industries-serve-header h2 {
	font-size: 42px;
	font-weight: 600;
	line-height: 1.15em;
	letter-spacing: -0.02em;
	color: #1f1f1f;
	margin-bottom: 14px;
}

.industries-serve-header p {
	font-size: 22px;
	line-height: 1.5em;
	color: #666;
	margin: 0;
}

.industries-serve-track {
	display: flex;
	gap: 16px;
	overflow-x: auto;
	overflow-y: hidden;
	padding: 6px 2px 20px;
	scrollbar-color: #8f8f8f #d6d6d6;
	scrollbar-width: thin;
}

.industries-serve-track::-webkit-scrollbar {
	height: 10px;
}

.industries-serve-track::-webkit-scrollbar-track {
	background: #d6d6d6;
	border-radius: 20px;
}

.industries-serve-track::-webkit-scrollbar-thumb {
	background: #8f8f8f;
	border-radius: 20px;
}

.industry-card {
	flex: 1 0 180px;
	background: #fff;
	border: 1px solid #e3e3e3;
	border-radius: 14px;
	padding: 7px 5px;
	text-align: center;
	transition: all 0.25s ease;
}

.industry-card:hover {
	border-color: #d9b95f;
	transform: translateY(-3px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.industry-icon {
	width: 50px;
	height: 50px;
	margin: 0 auto 18px;
	border-radius: 50%;
	background: #eaf3e8;
	color: #2f7d32;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 19px;
}

.industry-icon:hover {
	background: #9af89a;
}

.industry-card h6 {
	font-size: 12px;
	font-weight: 500;
	line-height: 1.25em;
	color: #1f1f1f;
	margin: 0;
}

.industries-serve-cta {
	margin-top: 28px;
	text-align: center;
}

.industry-view-all {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 18px;
	font-weight: 400;
	line-height: 1.2em;
	color: #2f7d32;
}

.industry-view-all:hover {
	color: #245e27;
}

@media only screen and (max-width: 991px) {
	.industries-serve-section {
		padding: 70px 0;
	}

	.industries-serve-header h2 {
		font-size: 36px;
	}

	.industries-serve-header p {
		font-size: 18px;
	}

	.industry-card {
		flex-basis: 160px;
		padding: 18px 14px;
	}

	.industry-icon:hover {
		background: #9af89a;
	}

	.industry-icon {
		width: 62px;
		height: 62px;
		font-size: 24px;
	}

	.industry-card h6 {
		font-size: 22px;
	}

	.industry-view-all {
		font-size: 24px;
	}
}

@media only screen and (max-width: 767px) {
	.industries-serve-section {
		padding: 50px 0;
	}

	.industries-serve-header {
		margin-bottom: 30px;
	}

	.industries-serve-header h2 {
		font-size: 28px;
	}

	.industries-serve-header p {
		font-size: 16px;
	}

	.industry-card {
		flex-basis: 145px;
		border-radius: 12px;
	}

	.industry-icon:hover {
		background: #9af89a;
	}

	.industry-icon {
		width: 56px;
		height: 56px;
		font-size: 20px;
		margin-bottom: 14px;
	}

	.industry-card h6 {
		font-size: 18px;
	}

.industry-view-all {
	font-size: 18px;
}
}

/* Industries page cards (override scoped to the new grid) */
.industries-grid-section .industries-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 26px;
}

.industries-grid-section .industry-card {
	background: #ffffff;
	border: 1px solid #e7e7e7;
	border-radius: 18px;
	box-shadow: 0 16px 32px rgba(0, 0, 0, 0.06);
	padding: 32px;
	display: flex;
	flex-direction: column;
	gap: 18px;
	height: 100%;
	text-align: left;
}

.industries-grid-section .industry-card-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

.industries-grid-section .industry-icon {
	width: 46px;
	height: 46px;
	border-radius: 12px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	background: #e8f3ea;
	color: #2f7b4f;
	margin: 0;
}

.industries-grid-section .industry-tag {
	padding: 7px 12px;
	border-radius: 999px;
	background: #f9eac7;
	color: #8a6b1a;
	font-size: 12px;
	font-weight: 700;
	white-space: nowrap;
}

.industries-grid-section .industry-card h4 {
	font-size: 20px;
	font-weight: 700;
	color: #1f1f1f;
	margin-top: 5px;
}

.industries-grid-section .industry-card p {
	font-size: 16px;
	line-height: 1.65em;
	color: #3f3f3f;
	margin: 0;
}

.industries-grid-section .hazards {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	flex-wrap: wrap;
}

.industries-grid-section .hazard-label {
	font-size: 14px;
	font-weight: 700;
	color: #c53030;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: 20px;
}

.industries-grid-section .hazard-label i {
	color: inherit;
}

.industries-grid-section .hazard-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 12px;
}

.industries-grid-section .hazard-chip {
	padding: 7px 12px;
	border-radius: 10px;
	background: #ffeaea;
	border: 1px solid #f4cfcf;
	color: #a13131;
	font-size: 13px;
	font-weight: 600;
}

.industries-grid-section .industry-link {
	margin-top: auto;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-weight: 700;
	color: #2f7b4f;
	font-size: 16px;
	margin-top: 10px;
}

.industries-grid-section .industry-link:hover {
	color: #23673f;
}

.industries-grid-section {
	padding: 20px 0 100px;
	background: #f8f8f8;
}

@media (max-width: 991px) {
	.industries-grid-section .industries-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 575px) {
	.industries-grid-section .industries-grid {
		grid-template-columns: 1fr;
	}

	.industries-grid-section .industry-card {
		padding: 20px;
	}
}

/* LISA Awards Section (Homepage) */
.lisa-awards-section {
	position: relative;
	background: radial-gradient(circle at 8% 88%, rgba(26, 88, 46, 0.22), transparent 34%),
		linear-gradient(90deg, #12161b 0%, #0f1218 62%, #18140f 100%);
	padding: 95px 0;
	overflow: hidden;
}

.lisa-awards-content {
	position: relative;
	z-index: 2;
}

.lisa-badge {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: rgba(211, 174, 66, 0.18);
	border: 1px solid rgba(211, 174, 66, 0.32);
	border-radius: 999px;
	padding: 10px 20px;
	margin-bottom: 22px;
}

.lisa-badge i,
.lisa-badge span {
	font-size: 16px;
	font-weight: 600;
	line-height: 1em;
	color: #d6ae42;
}

.lisa-awards-content h3 {
	font-size: 50px;
	font-weight: 600;
	line-height: 1.05em;
	letter-spacing: -0.02em;
	color: #ffffff;
	margin-bottom: 24px;
}

.lisa-awards-content p {
	font-size: 20px;
	line-height: 1.5em;
	color: rgba(255, 255, 255, 0.78);
	margin-bottom: 26px;
}

.lisa-points {
	display: flex;
	flex-wrap: wrap;
	gap: 14px 28px;
	margin-bottom: 34px;
}

.lisa-point {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 18px;
	font-weight: 500;
	line-height: 1.3em;
	color: rgba(255, 255, 255, 0.86);
}

.lisa-point i {
	font-size: 16px;
	color: #d6ae42;
}

.lisa-cta-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: #d6ae42;
	color: #171717;
	font-size: 18px;
	font-weight: 700;
	line-height: 1em;
	border-radius: 10px;
	padding: 16px 28px;
	transition: all 0.3s ease;
}

.lisa-cta-btn:hover {
	background: #c89d2a;
	color: #121212;
}

.lisa-awards-visual {
	position: relative;
	height: 620px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.lisa-ring {
	position: absolute;
	border-radius: 50%;
	background: radial-gradient(circle at center, rgba(214, 174, 66, 0.14), rgba(214, 174, 66, 0.03));
	border: 1px solid rgba(214, 174, 66, 0.14);
}

.lisa-ring-1 {
	width: 560px;
	height: 560px;
}

.lisa-ring-2 {
	width: 450px;
	height: 450px;
}

.lisa-ring-3 {
	width: 340px;
	height: 340px;
}

.lisa-award-icon {
	position: relative;
	z-index: 3;
	width: 160px;
	height: 160px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(214, 174, 66, 0.06);
	border: 1px solid rgba(214, 174, 66, 0.28);
}

.lisa-award-icon i {
	font-size: 88px;
	color: #d6ae42;
}

.lisa-since,
.lisa-nominations {
	position: absolute;
	z-index: 4;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	font-weight: 600;
	line-height: 1em;
	border-radius: 10px;
	padding: 14px 22px;
}

.lisa-since {
	top: 40px;
	right: 70px;
	color: rgba(255, 255, 255, 0.9);
	background: rgba(255, 255, 255, 0.12);
}

.lisa-nominations {
	left: 40px;
	bottom: 45px;
	color: #ffffff;
	background: #2d7d3e;
}

@media only screen and (max-width: 991px) {
	.lisa-awards-section {
		padding: 70px 0;
	}

	.lisa-awards-content {
		margin-bottom: 40px;
	}

	.lisa-awards-content h3 {
		font-size: 34px;
	}

	.lisa-awards-content p {
		font-size: 18px;
	}

	.lisa-point {
		font-size: 16px;
	}

	.lisa-awards-visual {
		height: 480px;
	}

	.lisa-ring-1 {
		width: 440px;
		height: 440px;
	}

	.lisa-ring-2 {
		width: 350px;
		height: 350px;
	}

	.lisa-ring-3 {
		width: 265px;
		height: 265px;
	}

	.lisa-award-icon {
		width: 125px;
		height: 125px;
	}

	.lisa-award-icon i {
		font-size: 64px;
	}

	.lisa-since {
		right: 20px;
	}

	.lisa-nominations {
		left: 20px;
	}
}

@media only screen and (max-width: 767px) {
	.lisa-awards-section {
		padding: 50px 0;
	}

	.lisa-badge {
		padding: 8px 16px;
		margin-bottom: 18px;
	}

	.lisa-badge i,
	.lisa-badge span {
		font-size: 14px;
	}

	.lisa-awards-content h2 {
		font-size: 22px;
		margin-bottom: 16px;
	}

	.lisa-awards-content p {
		font-size: 16px;
		margin-bottom: 20px;
	}

	.lisa-points {
		gap: 12px;
		margin-bottom: 24px;
	}

	.lisa-point {
		font-size: 15px;
	}

	.lisa-cta-btn {
		font-size: 16px;
		padding: 14px 22px;
	}

	.lisa-awards-visual {
		height: 370px;
	}

	.lisa-ring-1 {
		width: 340px;
		height: 340px;
	}

	.lisa-ring-2 {
		width: 270px;
		height: 270px;
	}

	.lisa-ring-3 {
		width: 205px;
		height: 205px;
	}

	.lisa-award-icon {
		width: 100px;
		height: 100px;
	}

	.lisa-award-icon i {
		font-size: 50px;
	}

	.lisa-since,
	.lisa-nominations {
		font-size: 14px;
		padding: 10px 14px;
	}

	.lisa-since {
		top: 6px;
		right: 8px;
	}

	.lisa-nominations {
		left: 8px;
		bottom: 8px;
	}
}

/* Academic Excellence Section (Homepage) */
.academic-excellence-section {
	background: #f5efde;
	padding: 105px 0 95px;
}

.academic-content {
	max-width: 780px;
}

.academic-badge {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: #e4d4a6;
	border-radius: 999px;
	padding: 12px 24px;
	margin-bottom: 30px;
}

.academic-badge i,
.academic-badge span {
	font-size: 14px;
	font-weight: 600;
	line-height: 1em;
	color: #191919;
}

.academic-content h6 {
	font-size: 35px;
	font-weight: 500;
	line-height: 1.06em;
	letter-spacing: -0.02em;
	color: #1d1d1d;
	margin-bottom: 28px;
}

.academic-content p {
	font-size: 20px;
	line-height: 1.55em;
	color: #4d4d4d;
	margin-bottom: 30px;
}

.academic-points {
	list-style: none;
	padding: 0;
	margin: 0 0 42px;
}

.academic-points li {
	display: flex;
	align-items: center;
	gap: 14px;
	font-size: clamp(17px, 1.08vw, 36px);
	font-weight: 500;
	line-height: 1.4em;
	color: #1f1f1f;
	margin-bottom: 16px;
}

.academic-points li:last-child {
	margin-bottom: 0;
}

.academic-points li i {
	font-size: 22px;
	color: #2f7d32;
}

.academic-link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 20px;
	font-weight: 600;
	line-height: 1.15em;
	color: #2f7d32;
}

.academic-link:hover {
	color: #245e27;
}

.academic-cards {
	display: flex;
	gap: 26px;
}

.academic-card {
	width: calc(50% - 12px);
	background: #ffffff;
	border: 1px solid #e1e1e1;
	border-radius: 18px;
	text-align: center;
	padding: 48px 28px 40px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.academic-card-icon {
	width: 88px;
	height: 88px;
	border-radius: 50%;
	background: #e8eee8;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 26px;
}

.academic-card-icon i {
	font-size: 40px;
	color: #2f7d32;
}

.academic-card h3 {
	font-size: 15px;
	font-weight: 600;
	line-height: 1.12em;
	color: #202020;
	margin-bottom: 16px;
}

.academic-card p {
	font-size: 16px;
	line-height: 1.45em;
	color: #595959;
	margin-bottom: 18px;
}

.academic-card a {
	font-size: 17px;
	font-weight: 600;
	line-height: 1.2em;
	color: #2f7d32;
}

.academic-card a:hover {
	color: #245e27;
}

@media only screen and (max-width: 991px) {
	.academic-excellence-section {
		padding: 70px 0 64px;
	}

	.academic-content {
		max-width: 100%;
		margin-bottom: 36px;
	}

	.academic-content p {
		font-size: 16px;
		line-height: 1.55em;
		color: #4d4d4d;
		margin-bottom: 30px;
	}

	.academic-points li {
		font-size: 16px;
	}

	.academic-link {
		font-size: 24px;
	}

	.academic-card {
		padding: 34px 20px;
	}

	.academic-card h3 {
		font-size: 22px;
	}

	.academic-card p,
	.academic-card a {
		font-size: 18px;
	}

	.academic-content h6 {
		font-size: 25px;
		font-weight: 500;
		line-height: 1.06em;
		letter-spacing: -0.02em;
		color: #1d1d1d;
		margin-bottom: 28px;
	}
}

@media only screen and (max-width: 767px) {
	.academic-excellence-section {
		padding: 50px 0 42px;
	}

	.academic-badge {
		padding: 8px 16px;
		margin-bottom: 18px;
	}

	.academic-badge i,
	.academic-badge span {
		font-size: 14px;
	}

	.academic-points {
		margin-bottom: 26px;
	}

	.academic-points li {
		gap: 10px;
		font-size: 15px;
		margin-bottom: 10px;
	}

	.academic-points li i {
		font-size: 18px;
	}

	.academic-link {
		font-size: 18px;
	}

	.academic-cards {
		flex-direction: column;
		gap: 18px;
	}

	.academic-card {
		width: 100%;
		padding: 28px 18px;
	}

	.academic-card-icon {
		width: 46px;
		height: 46px;
		margin-bottom: 18px;
	}

	.academic-card-icon i {
		font-size: 18px;
	}

	.academic-card h3 {
		font-size: 15px;
	}

	.academic-card p,
	.academic-card a {
		font-size: 16px;
	}
}

/* Trainee Testimonials (Homepage) */
.trainee-testimonials {
	padding: 100px 0 90px;
	background: #f6f6f6;
}

.trainee-testimonials .section-title {
	max-width: 820px;
	margin: 0 auto 44px;
}

.trainee-testimonials .section-title h1 {
	color: #1d1d1d;
	margin-bottom: 12px;
	font-size: 25px;
	font-weight: 700;
}

.trainee-testimonials .section-title h2 {
	font-size: 20px;
	line-height: 1.25em;
	color: #3a3a3a;
}

.trainee-card {
	background: #ffffff;
	border: 1px solid #e6e6e6;
	border-radius: 18px;
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.05);
	padding: 32px 28px;
	height: 100%;
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.trainee-quote i {
	font-size: 30px;
	color: #d6ae42;
}

.trainee-text {
	font-size: 18px;
	line-height: 1.6em;
	color: #3d3d3d;
	margin: 0;
}

.trainee-meta {
	border-top: 1px solid #eeeeee;
	padding-top: 16px;
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.trainee-name {
	font-weight: 800;
	color: #222222;
}

.trainee-role {
	font-size: 14px;
	color: #646464;
}

.trainee-placeholder {
	font-size: 12px;
	font-style: italic;
	color: #c3921f;
}

@media only screen and (max-width: 991px) {
	.trainee-testimonials {
		padding: 70px 0 60px;
	}

	.trainee-card {
		padding: 26px 22px;
	}

	.trainee-text {
		font-size: 16px;
	}
}

@media only screen and (max-width: 767px) {
	.trainee-testimonials {
		padding: 50px 0 42px;
	}

	.trainee-card {
		box-shadow: 0 8px 22px rgba(0, 0, 0, 0.05);
	}
}

/* Pan India Coverage */
.pan-india-coverage {
	background: #e6f2e4;
	padding: 100px 0;
}

.coverage-map-card {
	position: relative;
	background: #ffffff;
	border-radius: 20px;
	padding: 28px 24px 36px;
	box-shadow: 0 14px 38px rgba(0, 0, 0, 0.08);
	aspect-ratio: 1 / 1;
	/* keep the card square */
	display: flex;
	flex-direction: column;
}

.coverage-map-title {
	font-weight: 700;
	color: #2b6a2f;
	text-align: center;
	margin-bottom: 12px;
}

.coverage-map-illustration {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: contain;
	flex: 1;
}

.coverage-stats {
	display: flex;
	justify-content: center;
	gap: 14px;
	margin-top: 14px;
}

.stat-card {
	background: #ffffff;
	border: 1px solid #e3e3e3;
	border-radius: 12px;
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
	padding: 12px 18px;
	text-align: center;
	min-width: 60px;
}

.stat-number {
	display: block;
	font-size: 22px;
	font-weight: 800;
	color: #ffffff;
	line-height: 1.1em;
}

.stat-number-home {
	display: block;
	font-size: 22px;
	font-weight: 800;
	color: #000000;
	line-height: 1.1em;
}
training-hero .gallery{
	padding-bottom: 40px;
}
.stat-label {
	display: block;
	font-size: 12px;
	color: #5b5b5b;
}

.coverage-content h3 {
	font-size: clamp(26px, 2.6vw, 36px);
	line-height: 1.2em;
	color: #1c2c1d;
	margin-bottom: 18px;
}

.coverage-content p {
	font-size: 17px;
	line-height: 1.7em;
	color: #485349;
	margin-bottom: 24px;
}

.coverage-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 26px;
}

.coverage-tag {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: #ffffff;
	border: 1px solid #d8e3d8;
	border-radius: 12px;
	padding: 10px 14px;
	font-size: 14px;
	font-weight: 600;
	color: #2a4b2a;
	transition: all 0.25s ease;
}

.coverage-tag i {
	color: #1f8c2f;
}

.coverage-tag:hover {
	border-color: #1f8c2f;
	box-shadow: 0 8px 18px rgba(0, 0, 0, 0.07);
}

.coverage-cta {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: #1f8c2f;
	color: #ffffff;
	border: none;
	border-radius: 10px;
	padding: 14px 20px;
	font-weight: 700;
	line-height: 1.1em;
}

.coverage-cta:hover {
	background: #186e26;
	color: #ffffff;
}

@media only screen and (max-width: 991px) {
	.pan-india-coverage {
		padding: 70px 0;
	}

	.coverage-map-card {
		max-width: 520px;
		margin: 0 auto;
	}
}

@media only screen and (max-width: 767px) {
	.pan-india-coverage {
		padding: 52px 0;
	}

	.coverage-stats {
		gap: 10px;
	}

	.stat-card {
		min-width: 104px;
	}
}

/* Safety Training Q&A */
.safety-qa-section {
	padding: 90px 0 80px;
	background: #f7f7f7;
}

.safety-qa-section .section-header h2 {
	font-size: clamp(28px, 2.8vw, 38px);
	line-height: 1.2em;
	color: #1c1c1c;
	margin: 8px 0 10px;
}

.safety-qa-section .section-header p {
	font-size: 16px;
	line-height: 1.6em;
	color: #606060;
	margin: 0;
}

.qa-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: #e6f2e4;
	color: #2b6a2f;
	padding: 8px 14px;
	border-radius: 12px;
	font-weight: 700;
	font-size: 13px;
}

.qa-view-all {
	font-weight: 700;
	color: #1f8c2f;
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.qa-view-all:hover {
	color: #156a24;
}

.qa-card {
	background: #ffffff;
	border: 1px solid #e5e5e5;
	border-radius: 16px;
	box-shadow: 0 10px 26px rgba(0, 0, 0, 0.06);
	padding: 22px 20px 24px;
	height: 100%;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.qa-tag {
	display: inline-flex;
	align-items: center;
	padding: 6px 12px;
	border-radius: 10px;
	font-size: 12px;
	font-weight: 700;
}

.qa-tag.fire {
	background: #fff5e5;
	color: #e39b1f;
}

.qa-tag.industrial {
	background: #e6f2e4;
	color: #2f7d32;
}

.qa-tag.career {
	background: #eaf0f7;
	color: #2f5e9b;
}

.qa-card h4 {
	font-size: 18px;
	line-height: 1.4em;
	color: #141414;
	margin: 0;
}

.qa-card p {
	font-size: 15px;
	line-height: 1.6em;
	color: #535353;
	margin: 0;
}

.qa-link {
	margin-top: auto;
	font-weight: 700;
	color: #1f8c2f;
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.qa-link:hover {
	color: #156a24;
}

@media only screen and (max-width: 991px) {
	.safety-qa-section {
		padding: 72px 0 64px;
	}
}

@media only screen and (max-width: 767px) {
	.safety-qa-section {
		padding: 54px 0 46px;
	}

	.qa-card {
		padding: 18px 16px 20px;
	}
}

/* Footer V2 (Homepage) */
.site-footer-v2 {
	background: #111319;
	margin-top: 0;
}

.site-footer-cta {
	background: #2D6A2D;
	padding: 34px 0;
}

.site-footer-cta-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

.site-footer-cta-text h3 {
	font-size: 22px;
	font-weight: 700;
	line-height: 1.2em;
	color: #ffffff;
	margin-bottom: 8px;
}

.site-footer-cta-text p {
	font-size: 18px;
	line-height: 1.5em;
	color: rgba(255, 255, 255, 0.9);
	margin: 0;
}

.site-footer-cta-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: #d6ae42;
	color: #121212;
	font-size: 14px;
	font-weight: 700;
	line-height: 1em;
	border-radius: 10px;
	padding: 18px 36px;
	transition: all 0.3s ease;
}

.site-footer-cta-btn:hover {
	background: #c89d2a;
	color: #121212;
}

.site-footer-main {
	padding: 70px 0 0;
	background: #111319;
}

.site-footer-grid {
	display: grid;
	grid-template-columns: 1.2fr 1fr 1fr 1fr 1fr;
	gap: 40px 34px;
}

.site-footer-brand-logo {
	width: 104px;
	height: 104px;
	background: #ffffff;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 22px;
}
	.location-footer
	{
		margin-top: 30px;
		margin-left: 320px;
	}
.site-footer-brand-logo img {
	max-width: 68px;
	width: 100%;
	height: auto;
}

.site-footer-col p {
	font-size: 14px;
	line-height: 1.6em;
	color: #9ca3af;
	margin-bottom: 24px;
}

.site-footer-contact-item {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	margin-bottom: 12px;
}

.site-footer-contact-item:last-child {
	margin-bottom: 0;
}

.site-footer-contact-item i {
	font-size: 16px;
	color: #d6ae42;
	padding-top: 4px;
}

.site-footer-contact-item span {
	font-size: 14px;
	line-height: 1.45em;
	color: #c9cdd7;
}

.site-footer-col h4 {
	font-size: 14px;
	font-weight: 700;
	line-height: 1.2em;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	color: #d6ae42;
	margin-bottom: 22px;
}

.site-footer-col ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.site-footer-col ul li {
	margin-bottom: 14px;
}

.site-footer-col ul li:last-child {
	margin-bottom: 0;
}

.site-footer-col ul li a {
	font-size: 14px;
	line-height: 1.35em;
	color: #a8afbc;
	transition: all 0.25s ease;
}

.site-footer-col ul li a:hover {
	color: #ffffff;
}

.site-footer-bottom {
	margin-top: 48px;
	border-top: 1px solid rgba(214, 174, 66, 0.28);
	padding: 26px 0 34px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.site-footer-bottom p {
	font-size: 14px;
	line-height: 1.4em;
	color: #7e8796;
	margin: 0;
}

.site-footer-legal-links {
	display: flex;
	align-items: center;
	gap: 30px;
}

.site-footer-legal-links a {
	font-size: 10px;
	line-height: 1.4em;
	color: #7e8796;
	transition: all 0.25s ease;
}

.site-footer-legal-links a:hover {
	color: #ffffff;
}

.fire-training-overview {
	padding: 110px 0 80px;
	background: #fff;
}

.fire-training-copy h2 {
	font-size: 30px;
	line-height: 1.25em;
	margin-bottom: 18px;
	color: #111d39;
}

.fire-training-copy p {
	font-size: 16px;
	line-height: 1.75em;
	color: #445065;
	margin-bottom: 18px;
}

.fire-training-copy h5 {
	font-size: 18px;
	margin-top: 26px;
	margin-bottom: 10px;
	color: #111d39;
}

.training-meta-stack {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.training-meta-card {
	border-radius: 16px;
	padding: 22px 24px;
	border: 1px solid #eef1f6;
	box-shadow: 0 18px 38px rgba(17, 29, 57, 0.08);
	display: grid;
	grid-template-columns: auto 1fr;
	grid-template-rows: auto auto;
	column-gap: 14px;
	row-gap: 6px;
	align-items: center;
}

.training-meta-card.is-duration {
	background: #fff7e6;
}

.training-meta-card.is-batch {
	background: #e9f5ee;
}

.training-meta-card.is-certification {
	background: #ffffff;
}

.training-meta-icon {
	width: 42px;
	height: 42px;
	border-radius: 12px;
	background: rgba(17, 29, 57, 0.08);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #111d39;
	font-size: 18px;
	grid-row: 1 / span 2;
}

.training-meta-title {
	font-weight: 700;
	color: #111d39;
	font-size: 18px;
}

.training-meta-value {
	font-size: 16px;
	color: #37445a;
}

.fire-attend-section {
	background: #eaf3e8;
	padding: 90px 0 82px;
}

.fire-attend-header {
	max-width: none;
	margin: 0 0 26px;
}

.fire-attend-header h2 {
	font-size: 25px;
	margin-bottom: 12px;
	color: #111d39;
	margin-right: 10px;
}

.fire-attend-header p {
	margin: 0;
	color: #3c4b3f;
	font-size: 16px;
	line-height: 1.6em;
}

.attendee-chip-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px 18px;
	margin-bottom: 28px;
}

.attendee-chip {
	width: 100%;
	min-width: 0;
	background: #ffffff;
	border: 1px solid #d7e4d8;
	border-radius: 14px;
	padding: 16px 18px;
	display: flex;
	align-items: center;
	gap: 12px;
	box-shadow: 0 12px 28px rgba(23, 44, 69, 0.06);
}

.attendee-chip i {
	color: #1f8c2f;
	font-size: 18px;
}

.attendee-chip span {
	color: #111d39;
	font-size: 16px;
	line-height: 1.5em;
}

.industry-applications h3 {
	font-size: 18px;
	margin-bottom: 16px;
	color: #1d2f1f;
}

.industry-chip-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 14px 16px;
}

.industry-chip {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: #ffffff;
	border: 1px solid #d7e4d8;
	border-radius: 12px;
	padding: 12px 16px;
	font-size: 15px;
	font-weight: 600;
	color: #1d2f1f;
	box-shadow: 0 10px 22px rgba(23, 44, 69, 0.06);
}

.industry-chip i {
	color: #1f8c2f;
	font-size: 16px;
}

.fire-curriculum {
	background: #f7f7f7;
	padding: 90px 0 82px;
}

.fire-curriculum .section-title {
	margin-bottom: 28px;
}

.fire-curriculum .section-title h2 {
	font-size: 30px;
	color: #111d39;
}

.curriculum-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.curriculum-item {
	background: #ffffff;
	border: 1px solid #e7e7e7;
	border-radius: 14px;
	box-shadow: 0 10px 24px rgba(17, 29, 57, 0.06);
	overflow: hidden;
}

.curriculum-item summary {
	list-style: none;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	padding: 18px 20px;
	cursor: pointer;
	font-weight: 700;
	color: #111d39;
}

.curriculum-item summary::-webkit-details-marker {
	display: none;
}

.curriculum-title {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 15px;
}

.curriculum-toggle {
	font-size: 14px;
	color: #6b7280;
	transition: transform 0.2s ease;
}

.curriculum-item[open] .curriculum-toggle {
	transform: rotate(180deg);
}

.curriculum-body {
	padding: 6px 22px 18px 32px;
}

.curriculum-body ul {
	margin: 0;
	padding-left: 18px;
	display: grid;
	gap: 8px;
}

.curriculum-body li {
	color: #4b5563;
	font-size: 15px;
	line-height: 1.6em;
}

.curriculum-body li::marker {
	color: #c9a84c;
}

.pricing-modes {
	background: #fdf3dc;
	padding: 80px 0 90px;
}

.pricing-block h3 {
	font-size: 24px;
	font-weight: 700;
	color: #1e2a35;
	margin-bottom: 20px;
}

.pricing-card {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 12px;
	background: #ffffff;
	border: 1px solid #e5dfd4;
	border-radius: 12px;
	padding: 16px 20px;
	box-shadow: 0 12px 28px rgba(23, 44, 69, 0.05);
	margin-bottom: 14px;
}

.pricing-card:last-child {
	margin-bottom: 0;
}

.pricing-card .label {
	font-size: 16px;
	font-weight: 600;
	color: #111d39;
	display: flex;
	align-items: center;
	gap: 10px;
}

.pricing-card .value {
	font-size: 15px;
	color: #4b5563;
}

.pricing-card i {
	color: #1f8c2f;
}

.pricing-note {
	margin-top: 12px;
	font-size: 14px;
	color: #4b5563;
}

.availability-section {
	background: #f7f7f7;
	padding: 76px 0 84px;
}

.availability-section .section-title h2 {
	font-size: 28px;
	color: #1e2a35;
}

.availability-text {
	font-size: 16px;
	color: #4b5563;
	margin-bottom: 22px;
}

.availability-chip-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 12px 14px;
}

.availability-chip {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: #e5f0e7;
	border: 1px solid #d2e3d5;
	border-radius: 12px;
	padding: 10px 14px;
	font-size: 15px;
	font-weight: 600;
	color: #1e2f1f;
}

.availability-chip i {
	color: #1f8c2f;
}

.related-questions {
	background: #eaf3e8;
	padding: 76px 0 82px;
}

.related-questions .section-title {
	margin-bottom: 24px;
}

.related-questions .section-title h2 {
	font-size: 26px;
}

.question-card-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
}

.question-card {
	display: flex;
	align-items: center;
	gap: 12px;
	background: #ffffff;
	border: 1px solid #e1e7df;
	border-radius: 12px;
	padding: 18px 20px;
	box-shadow: 0 12px 24px rgba(23, 44, 69, 0.05);
	font-size: 15px;
	color: #111d39;
}

.question-card i {
	color: #c9a84c;
}

.get-started-cta {
	background: #2D6A2D;
	padding: 88px 0 90px;
	text-align: center;
	color: #ffffff;
}

.get-started-cta h2 {
	font-size: 32px;
	margin-bottom: 12px;
	color: #ffffff;
}

.get-started-cta p {
	max-width: 760px;
	margin: 0 auto 24px;
	font-size: 18px;
	line-height: 1.6em;
	color: #e5f4e7;
}

.cta-actions {
	display: flex;
	justify-content: center;
	gap: 14px;
	flex-wrap: wrap;
}

.btn-gold,
.btn-outline-light {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	border-radius: 10px;
	padding: 14px 22px;
	font-weight: 700;
	font-size: 14px;
	border: 1px solid transparent;
	transition: all 0.25s ease;
}

.btn-gold {
	background: #d6ae42;
	color: #1f2d1f;
}

.btn-gold:hover {
	background: #c89d2a;
	color: #172017;
}

.btn-outline-light {
	background: transparent;
	border-color: rgba(255, 255, 255, 0.8);
	color: #ffffff;
}

.btn-outline-light:hover {
	background: rgba(255, 255, 255, 0.12);
}

@media only screen and (max-width: 1199px) {
	.site-footer-grid {
		grid-template-columns: 1.4fr 1fr 1fr 1fr;
	}

	.site-footer-col.brand-col {
		grid-column: 1 / -1;
	}
}

@media only screen and (max-width: 991px) {
	.site-footer-cta {
		padding: 28px 0;
	}

	.fire-training-overview {
		padding: 80px 0 60px;
	}

	.training-meta-stack {
		flex-direction: row;
		flex-wrap: wrap;
	}

	.training-meta-card {
		flex: 1 1 48%;
		min-width: 260px;
	}

	.fire-attend-section {
		padding: 70px 0 64px;
	}

	.attendee-chip-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.fire-curriculum {
		padding: 74px 0 66px;
	}

	.fire-curriculum .section-title h2 {
		font-size: 28px;
	}

	.pricing-modes {
		padding: 64px 0 72px;
	}

	.page-header-fire {
		padding: 140px 0 110px;
	}

	.page-hero-text h1 {
		font-size: 28px;
	}

	.related-questions {
		padding: 64px 0 70px;
	}

	.get-started-cta {
		padding: 78px 0 86px;
	}

	.site-footer-cta-inner {
		flex-direction: column;
		align-items: flex-start;
	}

	.site-footer-cta-text h3 {
		font-size: 16px;
	}

	.site-footer-cta-btn {
		font-size: 12px;
		padding: 15px 28px;
	}

	.site-footer-main {
		padding-top: 50px;
	}

	.site-footer-grid {
		grid-template-columns: 1fr 1fr;
		gap: 32px 24px;
	}

	.site-footer-col.brand-col {
		grid-column: 1 / -1;
	}

	.site-footer-col p {
		max-width: 620px;
	}

	.site-footer-bottom {
		margin-top: 36px;
		padding: 22px 0 26px;
		flex-direction: column;
		align-items: flex-start;
	}
}

@media only screen and (max-width: 767px) {
	.site-footer-cta-text h3 {
		font-size: 15px;
	}

	.fire-training-overview {
		padding: 64px 0 50px;
	}

	.fire-training-copy h2 {
		font-size: 28px;
	}

	.fire-training-copy p,
	.training-meta-value {
		font-size: 15px;
	}

	.training-meta-title {
		font-size: 16px;
	}

	.training-meta-card {
		grid-template-columns: auto 1fr;
	}

	.training-meta-stack {
		flex-direction: column;
	}

	.fire-attend-section {
		padding: 58px 0 50px;
	}

	.fire-attend-header {
		margin-bottom: 24px;
	}

	.fire-attend-header h2 {
		font-size: 26px;
	}

	.attendee-chip-grid {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.fire-curriculum {
		padding: 58px 0 52px;
	}

	.fire-curriculum .section-title h2 {
		font-size: 26px;
	}

	.curriculum-item summary {
		padding: 16px 18px;
	}

	.curriculum-title {
		font-size: 16px;
	}

	.curriculum-body {
		padding: 6px 18px 16px 26px;
	}

	.curriculum-body li {
		font-size: 14px;
	}

	.industry-chip-grid {
		gap: 10px;
	}

	.industry-chip {
		font-size: 14px;
	}

	.pricing-modes {
		padding: 54px 0 60px;
	}

	.pricing-block h3 {
		font-size: 22px;
	}

	.pricing-card {
		flex-direction: column;
		align-items: flex-start;
	}

	.pricing-card .label {
		font-size: 15px;
	}

	.pricing-card .value {
		font-size: 14px;
	}

	.availability-section {
		padding: 60px 0 66px;
	}

	.availability-section .section-title h2 {
		font-size: 24px;
	}

	.availability-chip {
		font-size: 14px;
		padding: 10px 12px;
	}

	.page-header-fire {
		padding: 120px 0 90px;
	}

	.page-hero-row {
		flex-direction: column;
		align-items: flex-start;
		gap: 12px;
	}

	.page-hero-text h1 {
		font-size: 34px;
	}

	.page-hero-text p {
		font-size: 16px;
	}

	.related-questions {
		padding: 54px 0 60px;
	}

	.question-card-grid {
		grid-template-columns: 1fr;
	}

	.get-started-cta {
		padding: 64px 0 70px;
	}

	.get-started-cta h2 {
		font-size: 28px;
	}

	.get-started-cta p {
		font-size: 16px;
	}

	.site-footer-cta-text p {
		font-size: 12px;
	}

	.site-footer-grid {
		grid-template-columns: 1fr;
	}

	.site-footer-col h4 {
		margin-bottom: 10px;
	}

	.site-footer-col ul li {
		margin-bottom: 10px;
	}

	.site-footer-col ul li a,
	.site-footer-col p,
	.site-footer-contact-item span {
		font-size: 12px;
	}

	.site-footer-legal-links {
		gap: 18px;
		flex-wrap: wrap;
	}
}

@media only screen and (max-width: 575px) {
	.fire-training-copy {
		text-align: center;
	}

	.fire-training-copy h2 {
		font-size: 24px;
		margin-bottom: 14px;
	}

	.fire-training-copy p {
		font-size: 14px;
		line-height: 1.65em;
	}

	.fire-training-copy h5 {
		font-size: 16px;
		margin-top: 18px;
	}

	.training-meta-stack {
		gap: 12px;
	}

	.training-meta-card {
		width: 100%;
		min-width: 0;
		grid-template-columns: auto 1fr;
	}

	.training-meta-title {
		font-size: 15px;
	}

	.training-meta-value {
		font-size: 14px;
		line-height: 1.55em;
	}

	.fire-attend-header h2 {
		font-size: 22px;
	}

	.fire-attend-header p {
		font-size: 14px;
	}

	.attendee-chip {
		padding: 14px;
	}

	.attendee-chip span {
		font-size: 15px;
	}

	.industry-chip {
		width: 100%;
		justify-content: center;
	}

	.industry-chip-grid {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 10px 12px;
	}

	.fire-curriculum .section-title h2 {
		font-size: 24px;
	}

	.curriculum-item summary {
		padding: 14px 16px;
	}

	.curriculum-body {
		padding: 6px 16px 14px 22px;
	}

	.pricing-card {
		width: 100%;
	}

	.pricing-note {
		font-size: 13px;
	}

	.availability-section .section-title h2 {
		font-size: 22px;
	}

	.availability-text {
		font-size: 14px;
	}

	.availability-chip-grid {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 10px;
	}

	.availability-chip {
		justify-content: center;
	}

	.related-questions .section-title h2 {
		font-size: 22px;
	}

	.question-card {
		font-size: 14px;
	}

	.get-started-cta h2 {
		font-size: 24px;
	}

	.get-started-cta p {
		font-size: 15px;
	}

	.page-header-fire {
		padding: 110px 0 80px;
	}

	.page-hero-icon {
		width: 62px;
		height: 62px;
		font-size: 28px;
	}

	.page-hero-text h1 {
		font-size: 28px;
	}

	.page-hero-text p {
		font-size: 15px;
	}
}
 .event-hero{
             
			
            text-align:center;
            min-height: 65vh;
			
        }
        .event-hero{
            position:relative;
            overflow:hidden;
        }
        
        .event-hero .event-badge{
            display:inline-flex;
            align-items:center;
            gap:8px;
            
            border-radius:999px;
            background:rgba(255,255,255,0.08);
            border:1px solid rgba(255,255,255,0.16);
            color:#d9b75a;
            font-weight:700;
            letter-spacing:0.02em;
            margin-bottom:18px;
			margin-top: 90px;
        }
        .event-hero .event-badge i{color:#d9b75a;}
        .event-hero h1{
            font-size:64px;
            line-height:1.05;
            margin:0 0 12px;
			color: #ffffff;
        }
        .event-hero h1 .accent{color:#d9b75a;}
        .event-hero h2{
            font-size:28px;
            font-weight:500;
            margin:0 0 22px;
            color:#e1e1e1;
        }
        .event-hero p.event-desc{
            max-width:620px;
            margin:0 auto 28px;
            font-size:18px;
            line-height:1.7;
            color:#e7e7e7;
        }
        .event-meta{
            display:flex;
            justify-content:center;
            gap:26px;
            flex-wrap:wrap;
            margin:0 0 32px;
            padding:0;
            list-style:none;
            color:#eaeaea;
        }
        .event-meta li{
            display:inline-flex;
            align-items:center;
            gap:10px;
            font-size:17px;
            font-weight:600;
        }
        .event-meta i{color:#d9b75a;}
        .event-actions{
            display:flex;
            gap:16px;
            justify-content:center;
            flex-wrap:wrap;
        }
        .event-actions .btn-default{
            min-width:170px;
            font-weight:700;
            padding:12px 18px;
        }
        .btn-default.btn-border{
            border:1.5px solid rgba(255,255,255,0.55);
            color:#f5f5f5;
        }
        @media(max-width:767px){
            .event-hero{padding:90px 16px 70px;}
            .event-hero h1{font-size:46px;}
            .event-hero h2{font-size:22px;}
        }
		 
        .about-lisa{
            padding:90px 0;
            background:#f9faf7;
        }
        .about-lisa h2{
            font-size:34px;
            margin-bottom:18px;
            color:#0f1720;
        }
        .about-lisa p{
            font-size:16px;
            line-height:1.7;
            color:#424242;
            margin-bottom:12px;
        }
        .about-lisa .stat-grid{
            display:grid;
            grid-template-columns:repeat(4, minmax(120px, 1fr));
            gap:18px;
            margin-top:24px;
        }
        .about-lisa .stat-item{
            /* background:#fff; */
            border:1px solid #eeeeee;
            border-radius:12px;
            padding:14px 16px;
            text-align:center;
            box-shadow:0 8px 24px rgba(0,0,0,0.05);
        }
        .about-lisa .stat-value{
            font-size:26px;
            font-weight:800;
            color:#d4ac45;
            margin-bottom:6px;
        }
        .about-lisa .stat-label{
            margin:0;
            color:#6f6f6f;
            font-weight:600;
        }
        .about-lisa-image img{
            width:100%;
            border-radius:14px;
            box-shadow:0 15px 35px rgba(0,0,0,0.16);
        }
        @media(max-width:991px){
            .event-hero h1{font-size:46px;}
            .event-hero h2{font-size:22px;}
            .about-lisa .stat-grid{grid-template-columns:repeat(2, minmax(160px, 1fr));}
        }
        @media(max-width:767px){
            .event-hero{padding:90px 16px 70px;}
            .event-hero h1{font-size:46px;}
            .event-hero h2{font-size:22px;}
        }
	        @media(max-width:575px){
	            .about-lisa{padding:70px 0;}
	            .about-lisa .stat-grid{grid-template-columns:repeat(2, minmax(140px, 1fr)); gap:14px;}
	        }



.about-lisa {
	padding: 90px 0;
	background: #f9faf7;
}

.about-lisa h2 {
	font-size: 34px;
	margin-bottom: 18px;
	color: #0f1720;
}

.about-lisa p {
	font-size: 16px;
	line-height: 1.7;
	color: #424242;
	margin-bottom: 12px;
}

.about-lisa .stat-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(120px, 1fr));
	gap: 18px;
	margin-top: 24px;
}

.about-lisa .stat-item {
	/* background:#fff; */
	border: 1px solid #eeeeee;
	border-radius: 12px;
	padding: 14px 16px;
	text-align: center;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.about-lisa .stat-value {
	font-size: 26px;
	font-weight: 800;
	color: #d4ac45;
	margin-bottom: 6px;
}

.about-lisa .stat-label {
	margin: 0;
	color: #6f6f6f;
	font-weight: 600;
}

.about-lisa-image img {
	width: 100%;
	border-radius: 14px;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.16);
}

@media(max-width:991px) {
	.event-hero h1 {
		font-size: 46px;
	}

	.event-hero h2 {
		font-size: 22px;
	}

	.about-lisa .stat-grid {
		grid-template-columns: repeat(2, minmax(160px, 1fr));
	}
}

@media(max-width:767px) {
	.event-hero {
		padding: 90px 16px 70px;
	}

	.event-hero h1 {
		font-size: 46px;
	}

	.event-hero h2 {
		font-size: 22px;
	}
}

@media(max-width:575px) {
	.about-lisa {
		padding: 70px 0;
	}

	.about-lisa .stat-grid {
		grid-template-columns: repeat(2, minmax(140px, 1fr));
		gap: 14px;
	}
}

.award-categories {
	background: #f2f6f1;
	padding: 90px 0;
}

.award-categories .section-head {
	text-align: center;
	margin-bottom: 34px;
}

.award-categories h2 {
	font-size: 32px;
	margin-bottom: 10px;
	color: #0f1720;
}

.award-categories p.lead {
	max-width: 760px;
	margin: 0 auto;
	color: #4b4b4b;
}

.award-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(260px, 1fr));
	gap: 20px;
}

.award-card {
	background: #fff;
	border: 1px solid #e4e7e2;
	border-radius: 18px;
	padding: 22px 20px;
	box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
	display: flex;
	gap: 16px;
	align-items: flex-start;
	transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.award-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 14px 34px rgba(0, 0, 0, 0.08);
}

.award-card.featured {
	border: 1.5px solid #d9b75a;
	box-shadow: 0 16px 32px rgba(217, 183, 90, 0.18);
}

.award-icon {
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: #f7f2df;
	display: grid;
	place-items: center;
	color: #c69b2d;
	font-size: 20px;
	flex-shrink: 0;
}

.award-card h4 {
	margin: 0 0 8px;
	font-size: 18px;
	color: #0f1720;
}

.award-card p {
	margin: 0;
	color: #585858;
	line-height: 1.6;
}

@media(max-width:991px) {
	.award-grid {
		grid-template-columns: repeat(2, minmax(240px, 1fr));
	}
}

@media(max-width:575px) {
	.award-categories {
		padding: 70px 0;
	}

	.award-grid {
		grid-template-columns: 1fr;
	}
}
.gallery {
	position: relative;
	padding: 170px 0 38px;
	background: linear-gradient(90deg, rgba(28, 116, 68, 0.90) 0%, rgba(28, 116, 68, 0.90) 100%), url('images/page-header-section.jpeg') center center/cover no-repeat;
	color: #ffffff;
	overflow: hidden;
}

.gallery .breadcrumb {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 0;
	margin: 0 0 18px;
	list-style: none;
	font-size: 15px;
	font-weight: 600;
	color: #dff7e7;
}

.gallery .breadcrumb a {
	color: inherit;
	text-decoration: none;
}

.gallery h1 {
	font-size: 52px;
	line-height: 1.08;
	font-weight: 800;
	margin-bottom: 16px;
	max-width: 860px;
	color : #ffffff;
}

.gallery p {
	font-size: 19px;
	max-width: 760px;
	margin-bottom: 0;
	color: #f1f9f3;
}

@media (max-width: 991px) {
	.gallery {
		padding: 120px 0 110px;
	}

	.gallery h1 {
		font-size: 42px;
	}

	.gallery p {
		font-size: 17px;
	}
}

@media (max-width: 575px) {
	.gallery {
		padding: 110px 0 90px;
	}

	.gallery h1 {
		font-size: 32px;
	}
}

.training-hero {
	position: relative;
	padding: 170px 0 140px;
	background: linear-gradient(90deg, rgba(28, 116, 68, 0.90) 0%, rgba(28, 116, 68, 0.90) 100%), url('images/page-header-section.jpeg') center center/cover no-repeat;
	color: #ffffff;
	overflow: hidden;
}

.training-hero .breadcrumb {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 0;
	margin: 0 0 18px;
	list-style: none;
	font-size: 15px;
	font-weight: 600;
	color: #dff7e7;
}

.training-hero .breadcrumb a {
	color: inherit;
	text-decoration: none;
}

.training-hero h1 {
	font-size: 52px;
	line-height: 1.08;
	font-weight: 800;
	margin-bottom: 16px;
	max-width: 860px;
	color : #ffffff;
}

.training-hero p {
	font-size: 19px;
	max-width: 760px;
	margin-bottom: 0;
	color: #f1f9f3;
}

@media (max-width: 991px) {
	.training-hero {
		padding: 120px 0 110px;
	}

	.training-hero h1 {
		font-size: 42px;
	}

	.training-hero p {
		font-size: 17px;
	}
}

@media (max-width: 575px) {
	.training-hero {
		padding: 110px 0 90px;
	}

	.training-hero h1 {
		font-size: 32px;
	}
}

.industry-hero {
	position: relative;
	padding: 180px 0 130px;
	overflow: hidden;
}

.industry-hero-bg img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: brightness(0.55) saturate(1.05);
}

.industry-hero::after {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(25, 118, 60, 0.55);
}

.industry-hero .container {
	position: relative;
	z-index: 2;
}

.industry-hero-content {
	max-width: 720px;
	color: #ffffff;
}

.industry-hero-heading {
	display: flex;
	align-items: center;
	gap: 50px;
	flex-wrap: nowrap;
	margin-top: 20px;
}

.industry-hero .breadcrumb {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: nowrap;
	margin-bottom: 18px;
	color: #f5f5f5;
	font-weight: 600;
}

.industry-hero .breadcrumb a {
	color: #f5f5f5;
}

.industry-hero-icon {
	width: 168px;
	height: 78px;
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.16);
	backdrop-filter: blur(6px);
	display: grid;
	place-items: center;
	font-size: 34px;
	margin: 0;
}

.industry-hero h1 {
	font-size: 52px;
	line-height: 1.05em;
	font-weight: 800;
	margin: 0 0 6px 0;
	color: #ffffff;
}

.industry-hero p {
	font-size: 22px;
	margin: 0;
}

@media (max-width: 991px) {
	.industry-hero {
		padding: 90px 0 110px;
	}

	.industry-hero h1 {
		font-size: 38px;
	}

	.industry-hero .breadcrumb {
		flex-wrap: wrap;
	}

	.industry-hero-heading {
		flex-wrap: wrap;
		gap: 16px;
	}
}

@media (max-width: 575px) {
	.industry-hero {
		padding: 70px 0 90px;
	}

	.industry-hero h1 {
		font-size: 30px;
	}

	.industry-hero-icon {
		width: 64px;
		height: 64px;
		font-size: 26px;
	}
}

.industry-overview {
	padding: 80px 0 70px;
	background: #f9faf9;
}

.industry-overview h2 {
	font-size: 30px;
	font-weight: 700;
	color: #1f1f1f;
	margin-bottom: 14px;
}

.industry-overview p {
	font-size: 17px;
	line-height: 1.65em;
	color: #3f3f3f;
	margin: 0;
}

.overview-stat {
	background: #fdf1cf;
	border: 1px solid #f1e0ac;
	border-radius: 14px;
	padding: 18px 20px;
	box-shadow: 0 10px 22px rgba(0, 0, 0, 0.06);
}

.overview-stat h4 {
	font-size: 18px;
	font-weight: 700;
	color: #1f1f1f;
	margin: 10px 0 40px;

}

.overview-stat p {
	margin: 0;
	font-family: "Courier New", monospace;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.5;
	color: #2a2a2a;
}

.industry-hazards {
	padding: 80px 0 90px;
	background: #e9f3ea;
}

.hazards-title {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 24px;
	color: #9c2b2b;
}

.hazards-title i {
	font-size: 22px;
}

.hazards-title h3 {
	margin: 0;
	font-size: 26px;
	font-weight: 800;
	color: #5b2017;
}

.hazard-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.hazard-card {
	background: #ffffff;
	border: 1px solid #e7e7e7;
	border-radius: 14px;
	padding: 18px 18px 20px;
	box-shadow: 0 10px 22px rgba(0, 0, 0, 0.05);
}

.hazard-card h4 {
	margin: 10px 0 30px;
	font-size: 16px;
	font-weight: 600;
	color: #b33a2b;
}

.hazard-card p {
	margin: 0;
	font-size: 15px;
	line-height: 1.55em;
	color: #3f3f3f;
}

.industry-compliance {
	padding: 80px 0 90px;
	background: #f7f7f7;
}

.compliance-title {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 26px;
}

.compliance-title i {
	color: #2f7b4f;
	font-size: 22px;
}

.compliance-title h3 {
	margin: 0;
	font-size: 26px;
	font-weight: 800;
	color: #1f1f1f;
}

.compliance-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
}

.compliance-card {
	background: #ffffff;
	border: 1px solid #dcbf6f;
	border-radius: 12px;
	padding: 18px 20px 20px;
	box-shadow: 0 12px 24px rgba(0, 0, 0, 0.05);
}

.compliance-card h4 {
	margin: 0 0 10px;
	font-size: 17px;
	font-weight: 800;
	color: #1f1f1f;
}

.compliance-card p {
	margin: 0;
	font-size: 15px;
	line-height: 1.6em;
	color: #3f3f3f;
}

.industry-case-study {
	padding: 90px 0 100px;
	background: #191919;
	color: #ffffff;
}

.case-title {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 26px;
}

.case-title i {
	color: #dcbf6f;
	font-size: 22px;
}

.case-title h3 {
	margin: 0;
	font-size: 26px;
	font-weight: 800;
	color: #ffffff;
}

.case-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}

.case-card {
	border-radius: 10px;
	padding: 18px 20px 20px;
}

.case-issue {
	background: #623535;
	color: #f8d7d7;
}

.case-fix {
	background: #254d3a;
	color: #d3f3e0;
}

.case-issue h4 {
	margin: 0 0 10px;
	font-size: 17px;
	font-weight: 800;
	color: red;
}

.case-fix h4 {
	margin: 0 0 10px;
	font-size: 17px;
	font-weight: 800;
	color: #1f8c2f;
}
.case-card p {
	margin: 0;
	font-size: 15px;
	line-height: 1.65em;
	color: #ffffff;
}

@media (max-width: 991px) {
	.compliance-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.case-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 575px) {
	.industry-compliance {
		padding: 60px 0 70px;
	}

	.industry-case-study {
		padding: 70px 0 80px;
	}

	.compliance-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 575px) {
	.industry-overview {
		padding: 60px 0 50px;
	}

	.industry-hazards {
		padding: 60px 0 70px;
	}

	.hazard-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 991px) {
	.hazard-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

.lisa-section-header{
	text-align:center;
	max-width:920px;
	margin:0 auto 32px;
}
.lisa-section-header h2{
	font-size:32px;
	color:#0f1720;
	margin-bottom:10px;
}
.lisa-section-header p.lead{
	margin:0;
	color:#4b4b4b;
	font-size:17px;
}

.lisa-recognition{
	padding:90px 0;
	background:#fff;
}
.recognition-grid{
	display:grid;
	grid-template-columns:repeat(3, minmax(240px, 1fr));
	gap:20px;
}
.recognition-card{
	border:1px solid #e6e9e2;
	border-radius:16px;
	padding:18px 18px;
	display:flex;
	gap:14px;
	align-items:flex-start;
	background:#f9faf7;
	box-shadow:0 10px 26px rgba(0,0,0,0.06);
}
.recognition-card h4{
	margin:0 0 8px;
	font-size:18px;
	color:#0f1720;
}
.recognition-card p{
	margin:0;
	color:#555;
	line-height:1.6;
}
.icon-badge{
	width:48px;
	height:48px;
	border-radius:12px;
	background:#f7f2df;
	display:grid;
	place-items:center;
	color:#c69b2d;
	font-size:18px;
	flex-shrink:0;
}

.lisa-leadership{
	padding:90px 0;
	background:#f2f6f1;
}
.leadership-grid{
	display:grid;
	grid-template-columns:repeat(2, minmax(280px, 1fr));
	gap:20px;
}
.leadership-card{
	background:#fff;
	border:1px solid #e4e7e2;
	border-radius:16px;
	padding:20px 20px;
	box-shadow:0 12px 28px rgba(0,0,0,0.07);
}
.leadership-card-center{
	grid-column:1 / -1;
	max-width:560px;
	margin:0 auto;
	margin-top:50px;
}
.leadership-meta{
	display:flex;
	align-items:center;
	gap:12px;
	margin-bottom:10px;
}
.leader-initials{
	width:42px;
	height:42px;
	border-radius:12px;
	background:#d9b75a;
	color:#0f1720;
	display:grid;
	place-items:center;
	font-weight:800;
}
.leader-photo{
	width:168px;
	height:208px;
	border-radius:16px;
	overflow:hidden;
	border:2px solid #d9b75a;
	box-shadow:0 8px 18px rgba(0,0,0,0.12);
	flex-shrink:0;
}
.leader-photo img{
	width:100%;
	height:100%;
	object-fit:cover;
	display:block;
}
.leadership-card h4{
	margin:0;
	color:#0f1720;
	font-size:18px;
}
.leadership-card .role{
	margin:0;
	color:#636363;
	font-weight:600;
}
.leadership-card p{
	margin:0;
	color:#4f4f4f;
	line-height:1.6;
}

.lisa-safety-movement{
	padding:90px 0 80px;
	background:linear-gradient(135deg, #f9faf7 0%, #eef3ea 100%);
}
.movement-list{
	display:grid;
	grid-template-columns:repeat(2, minmax(260px, 1fr));
	gap:14px;
	margin-bottom:18px;
	
}
.movement-item{
	display:flex;
	gap:10px;
	align-items:flex-start;
	background:#fff;
	border:1px solid #e6e9e2;
	border-radius:12px;
	padding:12px 14px;
	box-shadow:0 8px 20px rgba(0,0,0,0.05);
	
}
.movement-item i{
	color:#2f955c;
	margin-top:2px;
}
.movement-item span{
	color:#404040;
	font-weight: 700;
}
.movement-note{
	margin:0;
	text-align:center;
	color:#3a3a3a;
	font-weight:600;
	font-style: italic;
	font-size: 18px;
	margin-top: 40px;
}

@media(max-width:991px){
	.recognition-grid{grid-template-columns:repeat(2, minmax(220px, 1fr));}
	.leadership-grid{grid-template-columns:1fr;}
	.movement-list{grid-template-columns:1fr;}
}
@media(max-width:575px){
	.lisa-recognition,
	.lisa-leadership,
	.lisa-safety-movement{padding:70px 0;}
	.recognition-grid{grid-template-columns:1fr;}
	.leader-initials{width:38px; height:38px;}
}

 .lisa-popup-overlay {
 	position: fixed;
 	inset: 0;
 	background: rgba(0, 0, 0, 0.9);
 	display: none;
 	align-items: center;
 	justify-content: center;
 	z-index: 9999;
	/* border-color: #ffffff; */
 }

.lisa-popup {
	background: #000;
	border-radius: 18px;
	box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
	border: 2px solid #D3AF37;
 	max-width: 820px;
 	width: 90%;
 	overflow: hidden;
 	display: grid;
 	grid-template-columns: 1.1fr 0.9fr;
 	position: relative;
 	height: 450px;
 }

 .lisa-popup__content {
 	padding: 32px 28px;
 	color: #ffff;
 }

 .lisa-popup__title {
 	font-family: "Sora", sans-serif;
 	font-weight: 700;
 	font-size: 23px;
 	margin-bottom: 26px;
 	letter-spacing: 0.4px;
 	text-transform: uppercase;
 	color: #D3AF37;
 }

 .lisa-popup__headline {
 	font-size: 21px;
 	font-weight: 800;
 	margin: 2px 0 10px;
 	margin-bottom: 10px;
 	color: #D3AF37;
 }

 .lisa-popup__body {
 	font-size: 16px;
 	line-height: 1.5;
 	margin-bottom: 18px;
 	color: #D3AF37;
 }

 .lisa-popup__button {
 	display: inline-block;
 	padding: 12px 18px;
 	background: #ffff;
 	color: #000;
 	border-radius: 10px;
 	font-weight: 700;
 	text-decoration: none;
 	transition: transform 0.2s ease, box-shadow 0.2s ease;
 }

 .lisa-popup__button:hover {
 	transform: translateY(-2px);
 	box-shadow: 0 8px 16px rgba(11, 92, 173, 0.25);
 }

 .lisa-popup__visual {
 	position: relative;
 	background: #f7fbff;
 	display: flex;
 	align-items: center;
 	justify-content: center;
 	padding: 18px;
 }

 .lisa-popup__visual img {
 	max-width: 100%;
 	height: auto;
 }

 .lisa-popup__close {
 	position: absolute;
 	top: 12px;
 	right: 12px;
 	z-index: 2;
 	display: flex;
 	align-items: center;
 	justify-content: center;
 	background: #0d3b4c;
 	border: 1px solid #D3AF37;
 	border-radius: 50%;
 	width: 34px;
 	height: 34px;
 	padding: 0;
 	font-size: 20px;
 	font-weight: 800;
 	line-height: 1;
 	color: #ffffff;
 	cursor: pointer;
 	box-shadow: 0 6px 14px rgba(0, 0, 0, 0.18);
 	transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
 }

 .lisa-popup__close:hover {
 	transform: scale(1.05);
 	background: #D3AF37;
 	color: #0d3b4c;
 }

 @media (max-width: 640px) {
 	.lisa-popup {
 		grid-template-columns: 1fr;
 	}

 	.lisa-popup__visual {
 		display: none;
 	}
 }


 .gallery-hero {
 	background: #f8f9fa;
 	padding: 80px 0;
 	text-align: center;
 }

 .gallery-hero-title {
 	font-size: 2.8rem;
 	font-weight: 700;
 	color: #111;
 	margin-bottom: 1rem;
 }

 .gallery-hero-desc {
 	font-size: 1.1rem;
 	max-width: 800px;
 	margin: 0 auto;
 	color: #555;
 }

 /* Asymmetric Masonry Gallery – matches your reference image */
 .gallery-masonry {

	 display: grid;
	 grid-template-columns: repeat(3, 1fr);
	 gap: 25px;
	 padding: 1rem 4.5rem;
}

.gallery-item {
	 width: 100%;
	 /* Slightly wider ratio to keep cards shorter */
	 aspect-ratio: 4 / 2;
	 border-radius: 20px;
	 overflow: hidden;
	 box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
	 transition: transform 0.35s ease, box-shadow 0.35s ease;
	 margin: 0;
 }

 .gallery-item:hover {
 	transform: translateY(-8px);
 	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
 }

 .gallery-item img {
 	width: 100%;
 	height: 100%;
 	object-fit: cover;
 	display: block;
 	transition: transform 0.45s ease;
 }

 .gallery-item:hover img {
 	transform: scale(1.08);
 }

 /* Different sizes to create the asymmetric look */
.size-sm,
.size-md,
.size-lg,
.size-xl {
	 /* Match the shorter card height across all size variants */
	 aspect-ratio: 4 / 3;
}

 /* Tablet */
 @media (max-width: 992px) {
	.gallery-masonry {
		grid-template-columns: repeat(2, 1fr);
		gap: 16px;
	}

	.gallery-item,
	.size-sm,
	.size-md,
	.size-lg,
	.size-xl {
		aspect-ratio: 4 / 3;
	}
}

 /* Mobile */
 @media (max-width: 576px) {
	.gallery-masonry {
		grid-template-columns: repeat(1, 1fr);
		gap: 12px;
		padding: 1rem;
	}

	.gallery-masonry {
		gap: 10px;
		padding: 1rem;
	}

	.gallery-item,
	.size-sm,
	.size-md,
	.size-lg,
	.size-xl {
		aspect-ratio: 4 / 3;
	}
}

 .contact-hero-simple {
 	background: #1f1f1f;
 	padding: 160px 0 100px;
 }

 .contact-hero-title {
 	font-size: clamp(26px, 4vw, 36px);
 	font-weight: 700;
 	color: #f5f5f5;
 	margin-bottom: 16px;
 	letter-spacing: -0.5px;
 }

 .contact-hero-title span {
 	color: #cfa449;
 }

 .contact-hero-subtitle {
 	color: #d7d7d7;
 	font-size: 18px;
 	line-height: 1.6;
 	margin: 0 auto;
 	max-width: 720px;
 }
