.dr1027schemes {
	background: linear-gradient(to right, #2E3A59, #1F2A3C);
	padding: 80px 20px;
	text-align: center;
	color: white;
}

.schemes-content {
	max-width: 800px;
	margin: 0 auto;
	background: #ffffff;
	border-radius: 20px;
	padding: 40px 30px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
	color: #2C3E50;
}

.dr1027schemes h2 {
	font-size: 2.3rem;
	color: #2E3A59;
	font-weight: 700;
	margin-bottom: 20px;
	font-family: 'Noto Sans Telugu', 'Poppins', sans-serif;
}

.dr1027schemes p {
	font-size: 1.15rem;
	color: #424242;
	line-height: 1.7;
	margin-bottom: 30px;
}

.telugu-note {
	display: block;
	margin-top: 14px;
	color: #FF7043;
	font-size: 1.05rem;
	font-family: 'Noto Sans Telugu', sans-serif;
	font-weight: 500;
}

.scheme-btn {
	background: #6FCF97;
	color: #2E3A59;
	padding: 14px 32px;
	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: #57b681;
	transform: scale(1.05);
}

/* Scroll 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) {
	.dr1027schemes h2 {
		font-size: 2rem;
	}
	.dr1027schemes p {
		font-size: 1rem;
	}
	.telugu-note {
		font-size: 0.95rem;
	}
	.scheme-btn {
		padding: 12px 24px;
		font-size: 0.95rem;
	}
}