/* ================================
   Schemes – Main Wrapper
================================ */
.dr1051schemes {
	padding: 80px 16px;
	background: linear-gradient(180deg, #f8fafc, #ffffff);
}

/* ================================
   Layout
================================ */
.dr1051schemes .sc-container {
	max-width: 1200px;
	margin: auto;
}

.dr1051schemes .sc-header {
	text-align: center;
	margin-bottom: 50px;
}

.dr1051schemes .sc-header h2 {
	font-size: 34px;
	color: #0f172a;
	font-weight: 700;
	margin-bottom: 10px;
}

.dr1051schemes .sc-header p {
	font-size: 16px;
	color: #64748b;
}

/* ================================
   Grid
================================ */
.dr1051schemes .sc-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 28px;
	margin-bottom: 60px;
}

/* ================================
   Cards
================================ */
.dr1051schemes .sc-card {
	background: #ffffff;
	border-radius: 20px;
	padding: 30px 24px;
	text-align: center;
	box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
	transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.dr1051schemes .sc-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 30px 70px rgba(0, 0, 0, 0.15);
}

.dr1051schemes .sc-icon {
	font-size: 42px;
	margin-bottom: 14px;
}

.dr1051schemes .sc-card h3 {
	font-size: 20px;
	color: #0f172a;
	margin-bottom: 10px;
	font-weight: 600;
}

.dr1051schemes .sc-card p {
	font-size: 14px;
	color: #64748b;
	line-height: 1.6;
}

/* ================================
   CTA Section
================================ */
.dr1051schemes .sc-cta {
	background: linear-gradient(135deg, #0f172a, #020617);
	border-radius: 24px;
	padding: 40px 24px;
	text-align: center;
	color: #ffffff;
}

.dr1051schemes .sc-cta h3 {
	font-size: 24px;
	margin-bottom: 8px;
	font-weight: 600;
}

.dr1051schemes .sc-cta p {
	font-size: 15px;
	color: #cbd5f5;
	margin-bottom: 24px;
}

/* ================================
   Actions
================================ */
.dr1051schemes .sc-actions {
	display: flex;
	justify-content: center;
	gap: 14px;
	flex-wrap: wrap;
}

.dr1051schemes .btn {
	min-width: 160px;
	padding: 12px 18px;
	border-radius: 14px;
	font-size: 14px;
	color: #ffffff;
	text-decoration: none;
	font-weight: 500;
	transition: transform 0.3s ease, opacity 0.3s ease;
}

.dr1051schemes .btn.whatsapp {
	background: #25d366;
}

.dr1051schemes .btn.call {
	background: #0ea5e9;
}

.dr1051schemes .btn:hover {
	opacity: 0.9;
	transform: translateY(-2px);
}

/* ================================
   Mobile Optimizations
================================ */
@media ( max-width : 480px) {
	.dr1051schemes {
		padding: 60px 14px;
	}
	.dr1051schemes .sc-header h2 {
		font-size: 26px;
	}
	.dr1051schemes .sc-cta h3 {
		font-size: 20px;
	}
	.dr1051schemes .btn {
		font-size: 13px;
		padding: 10px 14px;
	}
}