.dr1049testimonial {
	background: linear-gradient(to right, #fff5f7, #ffe7ee);
	padding: 90px 20px;
	font-family: 'Poppins', 'Noto Serif Telugu', sans-serif;
	text-align: center;
	color: #4b292f;
	opacity: 0;
	transform: translateY(60px);
	transition: all 0.8s ease;
}

.dr1049testimonial.show {
	opacity: 1;
	transform: translateY(0);
}

.testimonial-container {
	max-width: 1100px;
	margin: auto;
}

.dr1049testimonial h2 {
	font-size: 2.4rem;
	font-weight: 800;
	color: #982a3f;
}

.subline {
	margin-bottom: 35px;
	font-size: 1.2rem;
	color: #7b4b53;
}

.testimonial-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 25px;
}

.testimonial-card {
	background: white;
	padding: 25px;
	border-radius: 14px;
	box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
	border-left: 6px solid #982a3f;
	transition: 0.3s ease;
	text-align: left;
}

.testimonial-card:hover {
	transform: translateY(-8px);
}

.stars {
	font-size: 1.3rem;
	color: #ffb300;
	margin-bottom: 10px;
}

.feedback {
	font-size: 1.1rem;
	line-height: 1.6;
	margin-bottom: 12px;
}

.anonymous {
	font-size: 0.95rem;
	font-weight: 600;
	color: #7d565c;
}

/* Responsive */
@media ( max-width : 992px) {
	.testimonial-grid {
		grid-template-columns: 1fr 1fr;
	}
}

@media ( max-width : 600px) {
	.testimonial-grid {
		grid-template-columns: 1fr;
	}
}