.dr1048schemes {
	background: linear-gradient(to right, #fff9e6, #ffe0b2);
	padding: 100px 20px;
	text-align: center;
	font-family: 'Noto Sans Telugu', 'Poppins', sans-serif;
}

.schemes-content {
	max-width: 950px;
	margin: 0 auto;
	background: linear-gradient(145deg, #fffaf0, #fbe9e7);
	border-radius: 30px;
	padding: 60px 40px;
	box-shadow: 0 16px 48px rgba(160, 120, 0, 0.2);
	color: #5d4037;
	opacity: 0;
	transform: translateY(40px);
	transition: all 1s ease;
	border: 3px dashed #d4af37;
	position: relative;
}

.fade-on-scroll.visible {
	opacity: 1;
	transform: translateY(0);
}

.dr1048schemes h2 {
	font-size: 2.8rem;
	color: #6d4c41;
	font-weight: 900;
	margin-bottom: 24px;
	text-shadow: 1px 1px 3px rgba(212, 175, 55, 0.3);
}

.dr1048schemes p {
	font-size: 1.25rem;
	color: #4e342e;
	line-height: 1.8;
	margin-bottom: 35px;
}

.telugu-note {
	display: block;
	margin-top: 16px;
	color: #a67c00;
	font-size: 1.1rem;
	font-weight: 600;
}

.scheme-btn {
	background: linear-gradient(to right, #ffd54f, #fbc02d);
	color: #4e342e;
	padding: 16px 42px;
	font-size: 1.1rem;
	text-decoration: none;
	border-radius: 50px;
	font-weight: 700;
	display: inline-block;
	box-shadow: 0 10px 30px rgba(160, 120, 0, 0.3);
	border: 2px solid #f9a825;
	transition: all 0.3s ease;
}

.scheme-btn:hover {
	background: linear-gradient(to right, #fbc02d, #ffb300);
	transform: scale(1.07);
	box-shadow: 0 12px 36px rgba(160, 120, 0, 0.4);
}

.schemes-content::after {
	content: "🏗️";
	position: absolute;
	top: -20px;
	right: -20px;
	font-size: 3rem;
}

@media ( max-width : 768px) {
	.dr1048schemes h2 {
		font-size: 2.2rem;
	}
	.dr1048schemes p {
		font-size: 1.1rem;
	}
	.telugu-note {
		font-size: 1rem;
	}
	.scheme-btn {
		padding: 14px 28px;
		font-size: 0.95rem;
	}
	.schemes-content {
		padding: 40px 20px;
	}
}