.dr1021schemes {
	background: linear-gradient(to right, #e3f2fd, #fce4ec);
	/* soft blue to pink */
	padding: 80px 20px;
	text-align: center;
	font-family: 'Poppins', 'Noto Sans Telugu', sans-serif;
}

.schemes-content {
	max-width: 800px;
	margin: 0 auto;
	background: #ffffff;
	border-radius: 18px;
	padding: 40px 30px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.dr1021schemes h2 {
	font-size: 2.3rem;
	color: #00695c;
	margin-bottom: 20px;
	font-weight: 700;
}

.dr1021schemes p {
	font-size: 1.15rem;
	color: #37474f;
	line-height: 1.8;
	margin-bottom: 30px;
}

.telugu-note {
	display: block;
	margin-top: 12px;
	color: #d84315;
	font-size: 1.05rem;
	font-family: 'Noto Sans Telugu', sans-serif;
	font-weight: 500;
}

.scheme-btn {
	background: #00897b;
	color: white;
	padding: 12px 28px;
	font-size: 1rem;
	text-decoration: none;
	border-radius: 30px;
	font-weight: 600;
	display: inline-block;
	transition: background 0.3s ease, transform 0.2s ease;
	box-shadow: 0 6px 14px rgba(0, 0, 0, 0.1);
}

.scheme-btn:hover {
	background: #00695c;
	transform: scale(1.05);
}

/* Animation */
.fade-on-scroll {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-on-scroll.visible {
	opacity: 1;
	transform: translateY(0);
}

/* Responsive */
@media ( max-width : 768px) {
	.dr1021schemes h2 {
		font-size: 1.9rem;
	}
	.dr1021schemes p {
		font-size: 1.05rem;
	}
	.telugu-note {
		font-size: 0.95rem;
	}
	.scheme-btn {
		padding: 10px 20px;
		font-size: 0.95rem;
	}
}