.dr1048whyus {
	background: linear-gradient(to bottom, #121212, #1f1f1f);
	padding: 100px 20px;
	font-family: 'Poppins', 'Noto Sans Telugu', sans-serif;
	color: #fff;
	box-sizing: border-box;
}

.whyus-section h2 {
	text-align: center;
	font-size: 2.8rem;
	color: #ffd700;
	font-weight: 800;
	text-shadow: 0 3px 6px rgba(0, 0, 0, 0.6);
	margin-bottom: 12px;
}

.sub-title-eng {
	display: block;
	font-size: 1.15rem;
	color: #f0c84b;
	font-style: italic;
	font-weight: 500;
	margin-top: 10px;
}

/* Optional tagline under subtitle */
.section-tagline {
	text-align: center;
	color: #ffc107;
	font-size: 1rem;
	margin: -10px auto 40px;
	max-width: 600px;
	font-weight: 400;
}

.whyus-section h2::after {
	content: '';
	display: block;
	width: 80px;
	height: 4px;
	background: #ffd700;
	margin: 14px auto 0;
	border-radius: 4px;
}

.whyus-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 30px;
	max-width: 1200px;
	margin: 0 auto;
}

.whyus-card {
	background: rgba(255, 255, 255, 0.05);
	border-radius: 20px;
	padding: 30px 24px;
	text-align: center;
	box-shadow: 0 10px 28px rgba(255, 215, 0, 0.12);
	border: 1px solid rgba(255, 215, 0, 0.25);
	transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s
		ease, background 0.3s ease;
	position: relative;
	backdrop-filter: blur(6px);
}

.whyus-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 18px 40px rgba(255, 215, 0, 0.45);
	border-color: #fff176;
	background: rgba(255, 255, 255, 0.07);
}

.whyus-icon {
	font-size: 3.2rem;
	color: #ffdb4d;
	margin-bottom: 16px;
	text-shadow: 0 2px 4px rgba(255, 215, 0, 0.6);
}

.whyus-card h3 {
	font-size: 1.4rem;
	margin-bottom: 12px;
	color: #fffde7;
	font-weight: 700;
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
}

.whyus-card p {
	font-size: 1rem;
	color: #ffe97f;
	line-height: 1.6;
}

.telugu-text {
	margin-top: 10px;
	font-size: 0.95rem;
	color: #ffecb3;
	font-family: 'Noto Sans Telugu', sans-serif;
	font-weight: 500;
}

/* Scroll Fade-in 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: 2.2rem;
	}
	.whyus-card h3 {
		font-size: 1.15rem;
	}
	.whyus-icon {
		font-size: 2.5rem;
	}
}

@media ( max-width : 480px) {
	.dr1048whyus {
		padding: 60px 15px;
	}
}