/* CSS for svg icon */
.cs_service_icon {
	width: 38px; /* matches old SVG width */
	height: 40px; /* matches old SVG height */
	background: #5b4394; /* same as before if it had a background */
	border-radius: 10px; /* keep same rounded effect */
	transition: all 0.3s ease;
}
.cs_service_icon i {
	color: #fff; /* white icon */
	font-size: 22px; /* same visual size as SVG */
	transition: transform 0.3s ease, color 0.3s ease;
}
.cs_service_icon:hover i {
	transform: scale(1.1);
	color: #e6e6e6; /* light hover tint */
}
/* CSS for svg icon end */
/* ---------------------------------------------------------------------------------------------------- */
/* css for services */
.cs_service {
	position: relative;
	height: 100%;
	display: flex;
	flex-direction: column;
	/* justify-content: space-between; */
	transition: all 0.4s ease;
	border-radius: 10px;
	overflow: visible; /* arrow can float outside */
}
.cs_service:hover {
	transform: translateY(-10px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}
/* Image container */
.cs_service_thumb {
	position: relative;
	border-radius: 10px;
	overflow: hidden;
}
.cs_service_thumb-in {
	background-size: cover;
	background-position: center;
	width: 100%;
	height: 250px;
	transition: transform 0.6s ease;
}
/* Arrow Button */
.cs_service_btn {
	position: absolute;
	bottom: 235px;
	right: 35px;
	width: 50px;
	height: 50px;
	background-color: rgba(0, 0, 0, 0.7);
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	color: #fff;
	z-index: 10;
	transition: all 0.4s ease;
}
/* Hover effects */
.cs_service:hover .cs_service_thumb-in {
	transform: scale(1.08);
}
.cs_service:hover .cs_service_btn {
	background-color: #000;
	transform: scale(1.15);
}
/* css for services end */
/* ---------------------------------------------------------------------------------------------------- */
/* Custom Container for Mobile Spacing */
@media (max-width: 768px) {
	.mobile-container {
		padding-left: 20px; /* Ningalkku vendathra space adjust cheyyam */
		padding-right: 20px;
		box-sizing: border-box; /* Padding karanam width koodathirikkan */
		width: 100%;
		display: block;
	}
}
