.dr1015scheme {
	
}

.dr1015scheme .savings-emi-section {
	background: linear-gradient(135deg, #fff7e6 0%, #ffe39c 100%);
	padding: 4rem 1rem;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	text-align: center;
	color: #5a3e00;
}

.dr1015scheme .savings-emi-section .container {
	max-width: 1100px;
	margin: 0 auto;
}

.dr1015scheme .savings-emi-section .section-title {
	font-size: 2.75rem;
	font-weight: 700;
	margin-bottom: 0.25rem;
	color: #bfa046;
	text-shadow: 0 0 5px rgba(191, 160, 70, 0.6);
}

.dr1015scheme .savings-emi-section .section-subtitle {
	font-size: 1.2rem;
	margin-bottom: 3rem;
	color: #5a3e00dd;
}

.dr1015scheme .plans-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2.5rem;
}

.dr1015scheme .plan-card {
	background: #fff9e6;
	border-radius: 1.5rem;
	padding: 2rem 1.5rem;
	box-shadow: 0 8px 20px rgba(191, 160, 70, 0.15);
	transition: box-shadow 0.3s ease, transform 0.3s ease;
	display: flex;
	flex-direction: column;
	align-items: center;
	color: #6a4b00;
}

.dr1015scheme .plan-card:hover {
	box-shadow: 0 12px 28px rgba(191, 160, 70, 0.35);
	transform: translateY(-6px);
}

.dr1015scheme .plan-icon {
	font-size: 3.5rem;
	margin-bottom: 1rem;
	color: #d4af37;
	filter: drop-shadow(0 0 3px rgba(212, 175, 55, 0.8));
}

.dr1015scheme .plan-title {
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 1rem;
	color: #a07f00;
}

.dr1015scheme .plan-description {
	font-size: 1rem;
	line-height: 1.5;
	margin-bottom: 1.5rem;
	max-width: 280px;
}

.dr1015scheme .contact-btn {
	background-color: #bfa046;
	color: white;
	padding: 0.75rem 1.5rem;
	border-radius: 50px;
	font-weight: 600;
	text-decoration: none;
	box-shadow: 0 4px 8px rgba(191, 160, 70, 0.4);
	transition: background-color 0.3s ease;
}

.dr1015scheme .contact-btn:hover {
	background-color: #d4af37;
	box-shadow: 0 6px 12px rgba(212, 175, 55, 0.6);
}

/* Responsive */
@media ( max-width : 480px) {
	.dr1015scheme .savings-emi-section .section-title {
		font-size: 2rem;
	}
	.dr1015scheme .plans-grid {
		grid-template-columns: 1fr;
	}
	.dr1015scheme .plan-description {
		max-width: 100%;
	}
}