.dr1021testimonial {
	background: linear-gradient(to bottom right, #e8f5f5, #f1fffa);
	/* Light teal & mint */
	padding: 80px 20px;
	font-family: 'Segoe UI', 'Noto Sans Telugu', sans-serif;
	color: #333;
	box-sizing: border-box;
}

.testimonial-section h2 {
	text-align: center;
	font-size: 2.6rem;
	margin-bottom: 50px;
	color: #00796b;
	font-weight: 700;
	position: relative;
}

.testimonial-section .telugu-sub {
	display: block;
	font-size: 1.2rem;
	color: #004d40;
	font-family: 'Noto Sans Telugu', sans-serif;
	margin-top: 6px;
	font-weight: 500;
}

.testimonial-section h2::after {
	content: '';
	display: block;
	width: 60px;
	height: 4px;
	background: #009688;
	margin: 12px auto 0;
	border-radius: 4px;
}

.testimonial-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 30px;
	max-width: 1200px;
	margin: 0 auto;
}

.testimonial-card {
	background: #ffffff;
	border-radius: 16px;
	padding: 25px 20px;
	box-shadow: 0 8px 20px rgba(0, 105, 92, 0.12);
	border: 1px solid #c8e6c9;
	font-size: 1rem;
	line-height: 1.6;
	position: relative;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 10px 28px rgba(0, 105, 92, 0.2);
}

.testimonial-card::before {
	content: '“';
	font-size: 3.5rem;
	color: #b2dfdb;
	position: absolute;
	top: -10px;
	left: 20px;
	font-family: serif;
	opacity: 0.15;
}

.testimonial-text {
	margin: 0;
	color: #555;
}

.testimonial-text.telugu-text {
	font-family: 'Noto Sans Telugu', sans-serif;
	font-size: 0.95rem;
	color: #4a4a4a;
	margin-top: 10px;
}

.testimonial-stars {
	color: #fbc02d;
	font-size: 1.2rem;
	margin-top: 14px;
	letter-spacing: 3px;
}

/* 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 Styles */
@media ( max-width : 768px) {
	.testimonial-section h2 {
		font-size: 2.2rem;
	}
	.testimonial-section .telugu-sub {
		font-size: 1.05rem;
	}
}

@media ( max-width : 480px) {
	.dr1021testimonial {
		padding: 50px 15px;
	}
	.testimonial-stars {
		text-align: center;
	}
}