.dr1028schemes {
	background: linear-gradient(to right, #a8e6cf, #56ab2f);
	/* Light to leaf green */
	padding: 80px 20px;
	text-align: center;
	font-family: 'Noto Sans Telugu', 'Poppins', sans-serif;
}

.schemes-content {
	max-width: 850px;
	margin: 0 auto;
	background: #ffffff;
	border-radius: 24px;
	padding: 50px 30px;
	box-shadow: 0 12px 36px rgba(34, 139, 34, 0.2); /* Green shadow */
	color: #2e3a59;
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.9s ease;
}

.fade-on-scroll.visible {
	opacity: 1;
	transform: translateY(0);
}

.dr1028schemes h2 {
	font-size: 2.4rem;
	color: #2e3a59;
	font-weight: 800;
	margin-bottom: 20px;
	line-height: 1.3;
}

.dr1028schemes p {
	font-size: 1.2rem;
	color: #444;
	line-height: 1.75;
	margin-bottom: 30px;
}

.telugu-note {
	display: block;
	margin-top: 14px;
	color: #388e3c;
	font-size: 1.1rem;
	font-weight: 600;
}

.scheme-btn {
	background: linear-gradient(135deg, #66bb6a, #43a047); /* Fresh green */
	color: #ffffff;
	padding: 14px 36px;
	font-size: 1rem;
	text-decoration: none;
	border-radius: 40px;
	font-weight: 700;
	display: inline-block;
	box-shadow: 0 6px 20px rgba(76, 175, 80, 0.3);
	transition: background 0.3s ease, transform 0.2s ease;
}

.scheme-btn:hover {
	background: linear-gradient(135deg, #43a047, #2e7d32);
	transform: scale(1.05);
}

/* Responsive */
@media ( max-width : 768px) {
	.dr1028schemes h2 {
		font-size: 2rem;
	}
	.dr1028schemes p {
		font-size: 1.05rem;
	}
	.telugu-note {
		font-size: 1rem;
	}
	.scheme-btn {
		padding: 12px 24px;
		font-size: 0.95rem;
	}
}