.dr1041services {
	padding: 70px 20px;
	background: linear-gradient(135deg, #f0f9ff, #fefce8);
	text-align: center;
	border-radius: 0 0 40px 40px;
	font-family: 'Poppins', 'Noto Sans Telugu', sans-serif;
}

.dr1041services h2 {
	font-size: 2.4rem;
	font-weight: 800;
	color: #0d9488;
	margin-bottom: 30px;
	text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.15);
}

.telugu-sub {
	display: block;
	font-size: 1.2rem;
	color: #f97316;
	margin-top: 6px;
	font-weight: 700;
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 24px;
	max-width: 1200px;
	margin: 0 auto;
}

.service-card {
	background: #ffffff;
	border-radius: 20px;
	padding: 24px;
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.service-card h3 {
	font-size: 1.3rem;
	font-weight: 700;
	color: #0d9488;
	margin-bottom: 8px;
}

.service-card h3 span {
	font-size: 0.95rem;
	color: #f97316;
	font-weight: 600;
}

.service-card p {
	font-size: 1rem;
	color: #374151;
	margin-bottom: 16px;
}

.card-buttons {
	display: flex;
	justify-content: center;
	gap: 12px;
}

.whatsapp-button, .call-button {
	padding: 8px 18px;
	border-radius: 30px;
	font-size: 0.9rem;
	font-weight: 700;
	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);
}