.dr1043services5 {
	padding: 70px 20px;
	background: linear-gradient(135deg, #fff5f5, #ffe5e5);
	font-family: 'Poppins', 'Noto Sans Telugu', sans-serif;
	border-radius: 30px;
	margin-top: 50px;
	text-align: center;
}

.section-title {
	font-size: 2.3rem;
	font-weight: 800;
	color: #dc2626;
	margin-bottom: 30px;
	text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.1);
}

.sub-heading {
	display: block;
	font-size: 1.1rem;
	color: #b91c1c;
	margin-top: 4px;
}

.services5-container {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 24px;
	max-width: 1100px;
	margin: auto;
}

.service-card {
	background: #ffffff;
	border-left: 6px solid #ef4444;
	padding: 24px;
	border-radius: 16px;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	text-align: left;
}

.service-card h3 {
	font-size: 1.4rem;
	font-weight: 700;
	color: #b91c1c;
	margin-bottom: 10px;
}

.service-card .telugu {
	display: block;
	font-size: 0.95rem;
	color: #ef4444;
	margin-top: 4px;
}

.service-card p {
	font-size: 1rem;
	color: #374151;
	line-height: 1.5;
	margin-bottom: 16px;
}

.service-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 10px 28px rgba(0, 0, 0, 0.15);
}

.service-buttons {
	display: flex;
	gap: 10px;
}

.whatsapp-button, .call-button {
	flex: 1;
	text-align: center;
	padding: 10px 14px;
	border-radius: 30px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
}

.whatsapp-button {
	background: linear-gradient(45deg, #25d366, #128c7e);
	color: #fff;
}

.call-button {
	background: linear-gradient(45deg, #f97316, #dc2626);
	color: #fff;
}

.whatsapp-button:hover, .call-button:hover {
	transform: scale(1.05);
}

/* Fade-in Animation */
.fade-in-up {
	opacity: 0;
	transform: translateY(40px);
	transition: opacity 1s ease, transform 1s ease;
}

.fade-in-up.animate {
	opacity: 1;
	transform: translateY(0);
}

.delay-1 {
	transition-delay: 0.3s;
}

.delay-2 {
	transition-delay: 0.5s;
}

@media ( max-width : 768px) {
	.service-card {
		text-align: center;
	}
	.service-buttons {
		flex-direction: column;
	}
}