* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	font-family: "Krub", sans-serif;
}
body {
	background: #D6F7AA;
	
}
.counter {
	padding: 12% 0;
}
.single-number {
	padding: 35px;
	transition: all 0.6s;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}
.icon-area {
	width: 80px;
	height: 80px;
	margin: 15px auto;
	background: #2e363e;
	border-radius: 15px;
	line-height: 90px;
	border: 5px solid #D6F7AA;
}
.icon-area i {
	color: #D6F7AA;
	font-size: 40px;
}
.digit-box {
	display: block;
	font-size: 35px;
	font-weight: 700;
	color: #000;
}
.text-box {
	font-size: 22px;
	color: #000;
}


.bg-dark-to-lime {
  background: #99D383; /* fallback dark green */
  background: linear-gradient(135deg, #99D383 0%, #D6F7AA 100%); /* dark green → lime green */
  color: white; /* text contrast */
}
.text-darkgreen {
  color: #99D383 !important;
}
.text-limegreen {
  color: #D6F7AA !important;
}
a, a:visited, a:hover, a:active {
    text-decoration: none !important;
}
 .bg-darkgreen {
  background: #99D383 !important;
}
.bg-limegreen {
  background: #D6F7AA !important;
}



@media (max-width: 1000px) {
	.single-number {
		margin-bottom: 30px;
	}
	.digit-box {
		font-size: 50px;
	}
}