/* ============================= */
/* WHY US – ROOT                 */
/* ============================= */
.dr1017whyus {
	padding: 90px 24px;
	background: linear-gradient(180deg, #fffaf3, #fff1dc);
	font-family: 'Noto Sans Telugu', 'Segoe UI', sans-serif;
}

/* ============================= */
/* SECTION LAYOUT                */
/* ============================= */
.dr1017whyus .whyus-section {
	max-width: 1200px;
	margin: auto;
	text-align: center;
}

/* ============================= */
/* TITLE                         */
/* ============================= */
.dr1017whyus .whyus-title {
	font-size: 42px;
	font-weight: 800;
	margin-bottom: 12px;
	letter-spacing: 0.6px;
	background: linear-gradient(90deg, #ff6f00, #ffb74d);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.dr1017whyus .whyus-subtitle {
	font-size: 18px;
	color: #6d4c41;
	margin-bottom: 60px;
	opacity: 0.95;
}

/* ============================= */
/* GRID                          */
/* ============================= */
.dr1017whyus .whyus-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 36px;
}

/* ============================= */
/* CARD                          */
/* ============================= */
.dr1017whyus .whyus-card {
	background: rgba(255, 255, 255, 0.88);
	border-radius: 28px;
	padding: 40px 30px;
	box-shadow:
		0 18px 45px rgba(0, 0, 0, 0.08),
		inset 0 0 0 1px rgba(255, 224, 178, 0.6);
	transition: transform 0.35s ease, box-shadow 0.35s ease;
	backdrop-filter: blur(10px);
}

/* Hover */
.dr1017whyus .whyus-card:hover {
	transform: translateY(-10px);
	box-shadow:
		0 30px 70px rgba(0, 0, 0, 0.14);
}

/* ============================= */
/* ICON                          */
/* ============================= */
.dr1017whyus .whyus-card i {
	font-size: 34px;
	color: #ff8f00;
	margin-bottom: 18px;
	background: linear-gradient(135deg, #fff3e0, #ffe0b2);
	width: 64px;
	height: 64px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* ============================= */
/* TEXT                          */
/* ============================= */
.dr1017whyus .whyus-card h3 {
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 12px;
	color: #bf360c;
}

.dr1017whyus .whyus-card p {
	font-size: 16.5px;
	color: #5d4037;
	line-height: 1.7;
}

/* ============================= */
/* RESPONSIVE                    */
/* ============================= */
@media (max-width: 768px) {
	.dr1017whyus .whyus-title {
		font-size: 32px;
	}

	.dr1017whyus .whyus-subtitle {
		font-size: 16px;
		margin-bottom: 40px;
	}

	.dr1017whyus .whyus-card {
		padding: 30px 22px;
	}
}

@media (max-width: 480px) {
	.dr1017whyus .whyus-title {
		font-size: 28px;
	}

	.dr1017whyus .whyus-card i {
		width: 56px;
		height: 56px;
		font-size: 28px;
	}
}