.dr1040services {
	padding: 70px 20px;
	background: linear-gradient(135deg, #e0f2fe, #f0fdf4);
	background-size: 400% 400%;
	animation: gradientMove 15s ease infinite;
	font-family: 'Poppins', sans-serif;
	text-align: center;
}

.section-title {
	font-size: 2.4rem;
	font-weight: 800;
	color: #0d9488;
	margin-bottom: 40px;
	text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.1);
}

.section-title span {
	color: #f97316;
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 30px;
	max-width: 1200px;
	margin: auto;
}

.service-card {
	background: #ffffff;
	border-radius: 20px;
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
	padding: 30px 20px;
	transition: all 0.3s ease;
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.service-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 10px 22px rgba(0, 0, 0, 0.15);
}

.service-icon {
	font-size: 3rem;
	margin-bottom: 15px;
	color: #0d9488;
}

.service-card h3 {
	font-size: 1.4rem;
	font-weight: 700;
	margin-bottom: 12px;
	color: #1e293b;
}

.service-card p {
	font-size: 1rem;
	color: #475569;
	line-height: 1.5;
	margin-bottom: 20px;
}

/* Action Buttons */
.service-actions {
	display: flex;
	gap: 10px;
	justify-content: center;
}

.whatsapp-btn, .call-btn {
	flex: 1;
	padding: 10px 14px;
	border-radius: 30px;
	text-decoration: none;
	font-weight: 600;
	font-size: 0.95rem;
	color: #fff;
	transition: all 0.3s ease;
	text-align: center;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.whatsapp-btn {
	background: linear-gradient(45deg, #25d366, #128c7e);
}

.call-btn {
	background: linear-gradient(45deg, #f97316, #dc2626);
}

.whatsapp-btn:hover, .call-btn:hover {
	transform: scale(1.05);
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

/* 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.2s;
}

.delay-2 {
	transition-delay: 0.4s;
}

.delay-3 {
	transition-delay: 0.6s;
}

@media ( max-width : 768px) {
	.section-title {
		font-size: 2rem;
	}
	.service-actions {
		flex-direction: column;
	}
}