/* Service Area Adjustments */
.st-service-area {
	padding: 50px 0;
}

.st__service__box {
	text-align: center;
	padding: 20px;
	border-radius: 10px;
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
	position: relative;
	overflow: hidden;
}

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

.st__service__icon {
	position: absolute;
	top: 10px;
	right: 10px;
	width: 50px; /* Set a specific width for the icon */
	height: 50px; /* Set a specific height for the icon */
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: rgba(255, 255, 255, 0.8);
	border-radius: 50%;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.st__service__icon img {
	width: 60%; /* Adjusted to fit within the icon container */
	height: auto;
}

/* Service Content Styling */
.st__service__content h2 {
	font-size: 20px;
	line-height: 1.4;
	margin-top: 15px;
}

.st__service__content .st__service__btn a {
	color: #FF8C00;
	font-size: 24px;
	text-decoration: none;
}

/* Mobile Specific Adjustments */
@media (max-width: 768px) {
	.st-service-area {
		padding: 30px 15px;
	}

	.st__service__box {
		padding: 15px;
		margin-bottom: 20px;
	}

	.st__service__icon {
		width: 40px;
		height: 40px;
		top: 5px;
		right: 5px;
	}

	.st__service__icon img {
		width: 70%; /* Slightly larger within the smaller container */
	}

	.st__service__content h2 {
		font-size: 18px;
	}

	.st__service__content .st__service__btn a {
		font-size: 20px;
	}
}

@media (max-width: 576px) {
	.st__service__icon {
		width: 35px;
		height: 35px;
		top: 5px;
		right: 5px;
	}

	.st__service__icon img {
		width: 60%;
	}

	.st__service__content h2 {
		font-size: 16px;
	}
}
