/* ================= SCHEMES / OFFERS ================= */
.dr1050schemes {
	padding: 100px 20px;
	background: linear-gradient(135deg, #f4f8ff, #e9f0ff);
	font-family: 'Poppins', 'Noto Serif Telugu', sans-serif;
	color: #1a1a1a;
	box-sizing: border-box;
}

.dr1050schemes *, .dr1050schemes *::before, .dr1050schemes *::after {
	box-sizing: inherit;
}

.dr1050schemes .schemes-container {
	max-width: 1200px;
	margin: auto;
}

/* ================= HEADER ================= */
.dr1050schemes h2 {
	font-size: 2.6rem;
	font-weight: 800;
	color: #0a3cff;
	margin-bottom: 12px;
	line-height: 1.3;
}

.dr1050schemes .english-heading {
	display: block;
	font-size: 1rem;
	font-weight: 500;
	color: #355cff;
	margin-top: 6px;
	opacity: 0.9;
}

.dr1050schemes .intro {
	font-size: 1.15rem;
	line-height: 1.8;
	color: #333;
	margin-bottom: 50px;
	max-width: 900px;
}

.dr1050schemes .english-desc {
	display: block;
	font-size: 0.95rem;
	color: #555;
	margin-top: 6px;
}

/* ================= GRID ================= */
.dr1050schemes .schemes-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 26px;
	margin-bottom: 60px;
}

/* ================= CARD ================= */
.dr1050schemes .scheme-card {
	background: #ffffff;
	padding: 28px 22px;
	border-radius: 18px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dr1050schemes .scheme-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.dr1050schemes .scheme-card .icon {
	font-size: 36px;
	margin-bottom: 14px;
}

.dr1050schemes .scheme-card h3 {
	font-size: 1.25rem;
	font-weight: 700;
	color: #0a3cff;
	margin-bottom: 10px;
}

.dr1050schemes .scheme-card p {
	font-size: 1rem;
	line-height: 1.7;
	color: #444;
}

/* ================= CTA ================= */
.dr1050schemes .schemes-cta {
	background: linear-gradient(135deg, #0a3cff, #0032a8);
	color: #ffffff;
	padding: 36px 24px;
	border-radius: 20px;
	text-align: center;
}

.dr1050schemes .cta-text {
	font-size: 1.2rem;
	font-weight: 600;
	margin-bottom: 22px;
	line-height: 1.6;
}

/* ================= BUTTONS ================= */
.dr1050schemes .cta-buttons {
	display: flex;
	justify-content: center;
	gap: 16px;
	flex-wrap: wrap;
}

.dr1050schemes .btn {
	padding: 14px 30px;
	border-radius: 30px;
	font-weight: 600;
	text-decoration: none;
	color: #ffffff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	cursor: pointer;
}

.dr1050schemes .btn.whatsapp {
	background: #25d366;
}

.dr1050schemes .btn.call {
	background: #ff9800;
}

.dr1050schemes .btn:hover {
	transform: scale(1.07);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* ================= ANIMATION ================= */
.dr1050schemes .fade-up {
	opacity: 0;
	transform: translateY(40px);
	transition: opacity 0.9s ease, transform 0.9s ease;
}

.dr1050schemes .fade-up.show {
	opacity: 1;
	transform: translateY(0);
}

.dr1050schemes .delay-1 {
	transition-delay: 0.1s;
}

.dr1050schemes .delay-2 {
	transition-delay: 0.2s;
}

.dr1050schemes .delay-3 {
	transition-delay: 0.3s;
}

.dr1050schemes .delay-4 {
	transition-delay: 0.4s;
}

/* ================= RESPONSIVE ================= */
@media ( max-width : 768px) {
	.dr1050schemes {
		padding: 80px 16px;
	}
	.dr1050schemes h2 {
		font-size: 2.1rem;
	}
	.dr1050schemes .intro {
		font-size: 1.05rem;
		margin-bottom: 40px;
	}
	.dr1050schemes .cta-text {
		font-size: 1.1rem;
	}
}