.dr1021whyus {
	background: linear-gradient(to bottom, #e0f7fa, #f1f8e9);
	/* Soft teal to green */
	padding: 80px 20px;
	font-family: 'Segoe UI', 'Noto Sans Telugu', sans-serif;
	color: #2e2e2e;
	box-sizing: border-box;
}

.whyus-section h2 {
	text-align: center;
	font-size: 2.5rem;
	margin-bottom: 50px;
	color: #00695c;
	font-weight: 700;
	line-height: 1.4;
}

.whyus-section h2::after {
	content: '';
	display: block;
	width: 60px;
	height: 4px;
	background: #26a69a;
	margin: 12px auto 0;
	border-radius: 4px;
}

.whyus-section .sub-title-eng {
	display: block;
	font-size: 1.05rem;
	color: #4e8073;
	margin-top: 8px;
	font-weight: 500;
	font-style: italic;
}

.whyus-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 30px;
	max-width: 1200px;
	margin: 0 auto;
}

.whyus-card {
	background: #ffffff;
	border-radius: 16px;
	padding: 25px 20px;
	text-align: center;
	box-shadow: 0 6px 18px rgba(38, 166, 154, 0.15);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	border: 1px solid #c8e6c9;
}

.whyus-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 14px 28px rgba(0, 150, 136, 0.2);
}

.whyus-icon {
	font-size: 2.6rem;
	margin-bottom: 15px;
	color: #009688;
}

.whyus-card h3 {
	font-size: 1.2rem;
	margin-bottom: 10px;
	color: #00796b;
	font-weight: 600;
}

.whyus-card p {
	font-size: 0.95rem;
	color: #444;
	line-height: 1.6;
}

.whyus-card .telugu-text {
	margin-top: 8px;
	font-size: 0.9rem;
	font-family: 'Noto Sans Telugu', sans-serif;
	color: #2f4f4f;
}

/* Scroll Animation */
.fade-on-scroll {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-on-scroll.visible {
	opacity: 1;
	transform: translateY(0);
}

/* Responsive */
@media ( max-width : 768px) {
	.whyus-section h2 {
		font-size: 2rem;
	}
	.whyus-card h3 {
		font-size: 1.1rem;
	}
}

@media ( max-width : 480px) {
	.dr1021whyus {
		padding: 50px 15px;
	}
}