.dr1027whyus {
	background: linear-gradient(to bottom, #f4f7fa, #ffffff);
	padding: 80px 20px;
	font-family: 'Segoe UI', 'Noto Sans Telugu', sans-serif;
	color: #2c3e50;
	box-sizing: border-box;
}

.whyus-section h2 {
	text-align: center;
	font-size: 2.4rem;
	margin-bottom: 50px;
	color: #2E3A59;
	font-weight: 700;
	line-height: 1.4;
}

.whyus-section h2::after {
	content: '';
	display: block;
	width: 60px;
	height: 4px;
	background: #6FCF97;
	margin: 12px auto 0;
	border-radius: 4px;
}

.whyus-section .sub-title-eng {
	display: block;
	font-size: 1.05rem;
	color: #607d8b;
	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(46, 58, 89, 0.12);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	border: 1px solid #dce3ec;
}

.whyus-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 14px 28px rgba(46, 58, 89, 0.15);
}

.whyus-icon {
	font-size: 2.6rem;
	margin-bottom: 15px;
	color: #FF7043;
}

.whyus-card h3 {
	font-size: 1.2rem;
	margin-bottom: 10px;
	color: #2E3A59;
	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: #3e2723;
}

/* Scroll Fade 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) {
	.dr1027whyus {
		padding: 50px 15px;
	}
}