.dr1050services {
	background: #f8f9fb;
	padding: 60px 16px;
	font-family: 'Poppins', 'Noto Serif Telugu', sans-serif;
}

.dr1050services h2 {
	text-align: center;
	font-size: 28px;
	color: #0a3cff;
	margin-bottom: 40px;
	font-weight: 700;
	position: relative;
}

.dr1050services h2::after {
	content: "";
	display: block;
	width: 60px;
	height: 4px;
	background: #FFD54F;
	margin: 12px auto 0;
	border-radius: 2px;
}

.dr1050services .services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 24px;
	max-width: 1200px;
	margin: 0 auto;
}

.dr1050services .card {
	background: #ffffff;
	padding: 24px 16px;
	border-radius: 12px;
	text-align: center;
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	position: relative;
}

.dr1050services .card i {
	font-size: 32px;
	color: #0a3cff;
	margin-bottom: 12px;
	transition: transform 0.3s ease, color 0.3s ease;
}

.dr1050services .card h3 {
	font-size: 18px;
	color: #222;
	margin-bottom: 8px;
	font-weight: 600;
}

.dr1050services .card h3 .telugu {
	display: block;
	font-size: 14px;
	color: #ff9800;
	margin-top: 4px;
}

.dr1050services .card p {
	font-size: 14px;
	color: #555;
	line-height: 1.5;
}

.dr1050services .card p .telugu {
	display: block;
	font-size: 13px;
	color: #0a3cff;
	margin-top: 4px;
	font-weight: 500;
}

.dr1050services .service-actions {
	margin-top: 16px;
	display: flex;
	justify-content: center;
	gap: 12px;
	flex-wrap: wrap;
}

.dr1050services .service-actions a {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 8px 14px;
	border-radius: 8px;
	text-decoration: none;
	font-weight: 600;
	font-size: 14px;
	color: #fff;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	transition: all 0.3s ease;
}

.dr1050services .service-actions .whatsapp-btn {
	background: #25d366;
}

.dr1050services .service-actions .call-btn {
	background: #ff9800;
}

.dr1050services .service-actions a:hover {
	transform: scale(1.05);
	box-shadow: 0 10px 18px rgba(0, 0, 0, 0.3);
}

.dr1050services .card:hover {
	transform: translateY(-6px);
	box-shadow: 0 14px 26px rgba(0, 0, 0, 0.12);
}

.dr1050services .card:hover i {
	color: #FFD54F;
	transform: scale(1.2);
}
/* Mobile Responsive */
@media ( max-width : 768px) {
	.dr1050services h2 {
		font-size: 24px;
	}
	.dr1050services .services-grid {
		gap: 18px;
	}
	.dr1050services .card {
		padding: 20px 12px;
	}
	.dr1050services .card i {
		font-size: 28px;
	}
	.dr1050services .card h3 {
		font-size: 16px;
	}
	.dr1050services .card h3 .telugu {
		font-size: 12px;
	}
	.dr1050services .card p {
		font-size: 13px;
	}
	.dr1050services .card p .telugu {
		font-size: 12px;
	}
	.dr1050services .service-actions a {
		width: 48%;
		justify-content: center;
		padding: 8px 0;
	}
}