.dr1040schemes {
	padding: 80px 20px;
	background: linear-gradient(135deg, #fff8e1, #f1f8e9, #e0f7fa);
	background-size: 400% 400%;
	animation: gradientMove 15s ease infinite;
	text-align: center;
	font-family: 'Poppins', sans-serif;
}

.section-title {
	font-size: 2.5rem;
	font-weight: 800;
	color: #0d9488;
	margin-bottom: 15px;
	text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.1);
}

.section-title span {
	color: #f97316;
}

.section-subtitle {
	font-size: 1.1rem;
	color: #334155;
	max-width: 700px;
	margin: 0 auto 40px;
	line-height: 1.6;
}

.scheme-actions {
	display: flex;
	justify-content: center;
	gap: 15px;
	flex-wrap: wrap;
}

.whatsapp-btn, .call-btn {
	padding: 14px 22px;
	border-radius: 35px;
	text-decoration: none;
	font-weight: 600;
	font-size: 1rem;
	color: #fff;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
}

.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.07);
	box-shadow: 0 8px 18px 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;
}

@media ( max-width : 768px) {
	.section-title {
		font-size: 2rem;
	}
	.scheme-actions {
		flex-direction: column;
		gap: 10px;
	}
}