.dr1017whyus {
	padding: 60px 20px;
	background: linear-gradient(to right, #fff8e1, #fff3e0);
	font-family: 'Segoe UI', 'Noto Sans Telugu', sans-serif;
}

.whyus-section {
	max-width: 1100px;
	margin: auto;
	text-align: center;
}

.whyus-title {
	font-size: 2.4rem;
	font-weight: 800;
	color: #e65100;
	margin-bottom: 10px;
	background: linear-gradient(90deg, #ff6f00, #ffa000);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.whyus-subtitle {
	font-size: 18px;
	color: #6d4c41;
	margin-bottom: 40px;
}

.whyus-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 30px;
}

.whyus-card {
	background: #ffffff;
	border-radius: 16px;
	padding: 30px 20px;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
	text-align: center;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whyus-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 14px 30px rgba(0, 0, 0, 0.15);
}

.whyus-card i {
	font-size: 36px;
	color: #ff9800;
	margin-bottom: 15px;
}

.whyus-card h3 {
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 10px;
	color: #e65100;
}

.whyus-card p {
	font-size: 16px;
	color: #5d4037;
	line-height: 1.6;
}

/* Responsive */
@media screen and (max-width: 768px) {
	.whyus-title {
		font-size: 2rem;
	}
	.whyus-subtitle {
		font-size: 16px;
	}
}

@media screen and (max-width: 480px) {
	.whyus-title {
		font-size: 1.8rem;
	}
	.whyus-card {
		padding: 20px 15px;
	}
	.whyus-card i {
		font-size: 30px;
	}
}