.dr1041testimonial {
	padding: 80px 20px;
	background: linear-gradient(135deg, #e0f7fa, #f1f8e9, #fffde7);
	font-family: 'Noto Sans Telugu', 'Poppins', sans-serif;
}

.section-title {
	font-size: 2.5rem;
	font-weight: 800;
	color: #0d9488;
	margin-bottom: 12px;
	text-align: center;
	text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.1);
}

.section-title span {
	color: #f97316;
}

.section-subtitle {
	font-size: 1.1rem;
	color: #334155;
	max-width: 700px;
	margin: 0 auto 40px;
	line-height: 1.6;
	text-align: center;
}

.testimonial-cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 20px;
	margin-top: 30px;
}

.testimonial-card {
	background: #fff;
	padding: 22px 18px;
	border-radius: 18px;
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
	text-align: center;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 22px rgba(0, 0, 0, 0.15);
}

.testimonial-card p {
	font-size: 1rem;
	color: #374151;
	line-height: 1.5;
	margin-bottom: 12px;
}

.stars {
	color: #fbbf24;
	font-size: 1.2rem;
}

/* Fade-in Animation */
.fade-in-up {
	opacity: 0;
	transform: translateY(40px);
	transition: opacity 1s ease, transform 1s ease;
}

.fade-in-up.animate {
	opacity: 1;
	transform: translateY(0);
}

.delay-1 {
	transition-delay: 0.2s;
}

.delay-2 {
	transition-delay: 0.4s;
}

@media ( max-width : 768px) {
	.section-title {
		font-size: 2rem;
	}
	.testimonial-card {
		padding: 18px 14px;
	}
}