/* ===================== Our Services Section ===================== */
.dr1016services {
	background: #f7f9fc;
	padding: 20px 20px;
}

.dr1016services .services {
	max-width: 1200px;
	margin: 0 auto;
}

.dr1016services .services h2 {
	text-align: center;
	font-size: 2.5rem;
	color: #009688;
	margin-bottom: 40px;
	position: relative;
}

.dr1016services .services h2::after {
	content: "";
	display: block;
	width: 60px;
	height: 4px;
	background: #009688;
	margin: 12px auto 0;
	border-radius: 2px;
}

/* Grid Container */
.dr1016services .cards-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 30px;
}

/* Individual Service Card */
.dr1016services .service-card {
	background: #ffffff;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	display: flex;
	flex-direction: column;
}

.dr1016services .service-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* Service Image */
.dr1016services .service-image {
	width: 100%;
	overflow: hidden;
}

.dr1016services .service-image img {
	width: 100%;
	height: auto; /* natural aspect ratio */
	display: block;
	transition: transform 0.4s ease;
}

.dr1016services .service-card:hover .service-image img {
	transform: scale(1.05);
}

/* Service Content */
.dr1016services .service-content {
	padding: 20px;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
}

.dr1016services .service-content h3 {
	font-size: 1.25rem;
	color: #004d40;
	margin-bottom: 12px;
}

.dr1016services .service-content p {
	font-size: 0.95rem;
	color: #555555;
	line-height: 1.6;
	flex-grow: 1;
}

/* Responsive Adjustments */
@media ( max-width : 768px) {
	.dr1016services .services h2 {
		font-size: 2rem;
		margin-bottom: 30px;
	}
	.dr1016services .cards-grid {
		gap: 20px;
	}
	.dr1016services .service-image img {
		height: auto; /* images scale naturally */
	}
	.dr1016services .service-content h3 {
		font-size: 1.1rem;
	}
	.dr1016services .service-content p {
		font-size: 0.9rem;
	}
}

@media ( max-width : 480px) {
	.dr1016services {
		padding: 20px 15px;
	}
	.dr1016services .services h2 {
		font-size: 1.8rem;
		margin-bottom: 25px;
	}
	.dr1016services .cards-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	.dr1016services .service-image img {
		height: auto; /* full width, no cropping */
	}
	.dr1016services .service-content h3 {
		font-size: 1rem;
	}
	.dr1016services .service-content p {
		font-size: 0.85rem;
	}
}