.dm-services-section {
	padding: 70px 0 80px;
	background: linear-gradient(180deg, #f6fbff 0%, #ffffff 100%);
}

.dm-section-tag {
	display: inline-block;
	color: #1b6b9a;
	font-size: 0.95rem;
	font-weight: 500;
	text-transform: uppercase;
	margin-bottom: 18px;
	letter-spacing: 1px;
}

.dm-section-title {
	font-size: clamp(2.2rem, 2.3vw, 3rem);
	font-weight: 700;
	color: #072a43;
	margin-bottom: 14px;
	line-height: 1.1;
	letter-spacing: 1px;
}

.dm-section-desc {
	max-width: 720px;
	margin: 0 auto;
	font-size: 1rem;
	color: #4b5f75;
	line-height: 1.8;
	margin-bottom: 50px;
	letter-spacing: 1px;
}

.dm-service-card {
	background: #ffffff;
	border-radius: 24px;
	overflow: hidden;
	box-shadow: 0 28px 55px rgba(18, 56, 118, 0.1);
	transition: transform 0.35s ease, box-shadow 0.35s ease;
	height: 100%;
	display: flex;
	flex-direction: column;
}

.dm-service-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 36px 72px rgba(18, 56, 118, 0.16);
}

.dm-service-image {
	height: 240px;
	overflow: hidden;
}

.dm-service-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.45s ease;
}

.dm-service-card:hover .dm-service-image img {
	transform: scale(1.05);
}

.dm-service-body {
	padding: 28px 26px 30px;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.dm-service-body h3 {
	font-size: 1.3rem;
	margin: 0;
	letter-spacing: 1px;
}

.dm-service-heading a {
	color: #0f3654;
	text-decoration:none;
}

.dm-service-body p {
	font-size: 0.96rem;
	color: #5a6b7f;
	line-height: 1.75;
	margin: 0;
	letter-spacing: 1px;
}

.dm-service-btn {
	align-self: flex-start;
	padding: 12px 24px;
	border-radius: 999px;
	background: linear-gradient(90deg, #0172cc 0%, #0b83cc 100%);
	color: #ffffff;
	font-size: 0.95rem;
	letter-spacing: 1px;
	font-weight: 500;
	text-decoration: none;
	transition: background 0.25s ease, transform 0.25s ease;
}

.dm-service-btn:hover {
	transform: translateY(-2px);
	background: linear-gradient(90deg, #025fa3 0%, #0b6cac 100%);
}

@media (max-width: 767px) {
	.dm-services-section {
		padding: 55px 0 30px;
	}

	.dm-service-image {
		height: 220px;
	}
}
