*,
*::before,
*::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	/* Primary */
	--primary-light: 255, 255, 255;
	--primary: 224, 224, 224;
	--primary-dark: 180, 180, 180;
	--on-primary: 0, 0, 0;

	/* Secondary */

	--secondary-light: 39, 165, 136;
	--secondary: 21, 92, 79;
	--secondary-dark: 15, 65, 56;
	--on-secondary: 255, 255, 255;

	/* Tertiary */
	--tertiary-light: 255, 255, 230;
	--tertiary: 255, 242, 196;
	--tertiary-dark: 200, 190, 120;
	--on-tertiary: 0, 0, 0;
}


/* Hide scrollbar for Chrome, Safari and Opera */
body::-webkit-scrollbar {
	display: none;
}

body {
	/* font-family: 'Roboto', sans-serif; */
	font-family: "Montserrat";
	margin: 0;
	padding: 0;
	background: rgba(var(--primary-green-light));
	background-image: url('../assets/images/background.jpg');
	background-repeat: repeat;
	background-size: contain;
	background-position: top left;
	background-attachment: fixed;
}
body::before {
	content: "";
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.6);
	pointer-events: none;
	z-index: -1;
}


/* ================================
   Page Title Section
   ================================ */
.headerBannerWrapper {
	background: url('../assets/images/header.png') no-repeat center center/cover;
	width: 100%;
	height: 20em;
	margin-top: 6em;
	display: flex;
	align-items: center;
}

.page-banner {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0em 2em;
}

.page-banner__title {
	font-size: 4em;
	color: #004d40;
	margin-bottom: 20px;
}

.breadcrumb {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}

.breadcrumb__link {
	text-decoration: none;
	color: #008060;
	font-weight: bold;
}


/* COUNTER */
.stats {
	/* background: #f0f0f0; */
	padding: 0rem 2rem;
	margin-top: 4rem;
	text-align: center;
}

.stats__overlay {
	background: rgb(147 207 30 / 20%);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	/* For Safari */
	padding: 2rem;
	border-radius: 12px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.stats__container {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 2rem;
	max-width: 1200px;
	margin: 0 auto;
}

.stats__item {
	background: #fff;
	border-radius: 8px;
	padding: 2rem;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	min-width: 200px;
	flex: 1 1 200px;
}

.stats__number {
	font-size: 2rem;
	font-weight: 700;
	color: #00665f;
}

.stats__label {
	margin-top: 0.5rem;
	font-size: 0.95rem;
	color: #333;
}


/* WHY CHOOSE US */
.why-choose {
	text-align: center;
	margin: 4rem 2rem;
	background: rgb(147 207 30 / 20%);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	padding: 2rem;
	border-radius: 12px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.why-choose__heading {
	color: #1a5d34;
	font-size: 28px;
	margin-bottom: 30px;
}

.why-choose__grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
}

.why-choose__card {
	background: #fff;
	border-radius: 12px;
	padding: 20px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
	display: flex;
	align-items: center;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	min-width: fit-content;
	max-width: 100%;
	word-wrap: break-word;
	overflow-wrap: break-word;
}

.why-choose__card:hover {
	transform: translateY(-5px);
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.why-choose__icon-wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	white-space: nowrap;
}

.why-choose__icon {
	width: 32px;
	height: 32px;
	flex-shrink: 0;
}

.why-choose__title {
	white-space: nowrap;
	text-align: center;
	margin: 0;
	font-size: 16px;
	font-weight: bold;
	color: #222;
}

.why-choose__number {
	font-size: 20px;
	color: #cdd0d4;
	font-weight: bold;
	flex-shrink: 0;
}


/* Mobile responsiveness */
@media (max-width: 768px) {
	.headerBannerWrapper {
		height: 18em;
	}

	.page-banner {
		padding: 1em;
	}

	.page-banner__right {
		width: 0%;
		position: relative;
	}

	.page-banner__title {
		font-size: 2em;
		text-align: center;
	}
	
	.stats {
		padding: 0.5em;
	}

	.stats__item {
		padding: 2em 0em;
	}

	.why-choose {
		margin: 4em 0em;	
	}

	.why-choose__card {
		padding: 1em 0.5em;
	}
}