.dr1049schemes {
	background: linear-gradient(to right, #fdf5f6, #ffe9ee);
	padding: 90px 20px;
	font-family: 'Poppins', 'Noto Serif Telugu', sans-serif;
	text-align: center;
	color: #5b2a2f;
	/* initially hidden for animation */
	opacity: 0;
	transform: translateY(50px);
	transition: all 0.8s ease;
}

/* visible on scroll */
.dr1049schemes.show {
	opacity: 1;
	transform: translateY(0);
}

.dr1049schemes h2 {
	font-size: 2.4rem;
	font-weight: 800;
	color: #972b3f;
	margin-bottom: 10px;
}

.sub-text {
	font-size: 1.15rem;
	margin-bottom: 30px;
}

.scheme-wrapper {
	max-width: 850px;
	margin: auto;
}

.scheme-box {
	background: #ffffff;
	border-left: 6px solid #a5354a;
	padding: 18px;
	margin: 15px 0;
	border-radius: 14px;
	box-shadow: 0 10px 18px rgba(0, 0, 0, 0.07);
	font-size: 1.15rem;
}

/* CTA */
.scheme-btn {
	display: inline-block;
	margin-top: 40px;
	padding: 15px 35px;
	background: #25d366;
	color: white;
	font-size: 1.2rem;
	font-weight: 600;
	border-radius: 40px;
	text-decoration: none;
	transition: 0.3s;
}

.scheme-btn:hover {
	transform: scale(1.06);
}

/* Responsive */
@media ( max-width : 768px) {
	.dr1049schemes h2 {
		font-size: 2rem;
	}
}