/* Reset and base styles */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
/* Services Section */
.services-section {
	line-height: 1.6;
	color: #333;
}
/* Services Content */
.services-content {
	background: #fff;
	border-radius: 12px;
	padding: 20px 25px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
	height: 100%;
	display: flex;
	flex-direction: column;
	border: 1px solid #f0f0f0;
	margin-bottom: 40px;
}
.services-content:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}
/* Services Thumbnail */
.services-thumb {
	margin-bottom: 20px;
	border-radius: 8px;
	overflow: hidden;
	position: relative;
}
.services-thumb img {
	width: 100%;
	height: 200px;
	object-fit: cover;
	transition: transform 0.3s ease;
	display: block;
}
.services-thumb:hover img {
	transform: scale(1.05);
}
/* Services Tag (Title) */
.services-tag {
	font-size: 20px;
	font-weight: 600;
	color: #2c3e50;
	margin-bottom: 15px;
	line-height: 1.3;
	margin-top: 0px;
}
/* Services Paragraph */
.services-ptag {
	font-size: 15px;
	color: #666;
	line-height: 1.7;
	flex-grow: 1;
	margin-bottom: 0;
}
/* Responsive Design */
@media (max-width: 992px) {
	.services-section {
		padding: 0;
	}
}
@media (max-width: 768px) {
	.services-content {
		padding: 25px 20px;
		margin-bottom: 20px;
	}        
	.services-tag {
		font-size: 1.25rem;
	}        
	.services-ptag {
		font-size: 16px;
	}        
	.services-thumb img {
		height: 180px;
	}
}
@media (max-width: 480px) {
	.services-section {
		padding: 0;
	}
	.services-content {
		padding: 20px 15px;
	}        
	.services-tag {
		font-size: 20px;
	}
	.services-thumb img {
		height: 160px;
	}
}
/* Enhanced visual effects */
.services-content::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, #3498db, #2980b9);
	border-radius: 12px 12px 0 0;
	opacity: 0;
	transition: opacity 0.3s ease;
}
.services-content {
	position: relative;
}
.services-content:hover::before {
	opacity: 1;
}
/* Typography improvements */
.services-tag {
	background: linear-gradient(135deg, #2c3e50, #34495e);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}
/* Focus states for accessibility */
.services-content:focus-within {
	outline: 2px solid #3498db;
	outline-offset: 2px;
}