.dr1030testimonial {
	background: linear-gradient(145deg, #fff8e1, #fbe9e7);
	/* Soft Gold-Peach */
	background-image:
		url('https://www.transparenttextures.com/patterns/fancy-deboss.png');
	padding: 100px 20px;
	font-family: 'Noto Sans Telugu', 'Poppins', sans-serif;
	color: #4e342e;
	box-sizing: border-box;
}

/* Section Title */
.testimonial-section h2 {
	text-align: center;
	font-size: 2.8rem;
	color: #6d4c41;
	font-weight: 800;
	margin-bottom: 50px;
	text-shadow: 1px 1px 2px rgba(212, 175, 55, 0.3);
	position: relative;
}

.testimonial-section .telugu-sub {
	display: block;
	font-size: 1.2rem;
	color: #a67c00;
	font-weight: 500;
	margin-top: 8px;
}

/* Decorative underline */
.testimonial-section h2::after {
	content: '';
	display: block;
	width: 80px;
	height: 4px;
	background: #d4af37;
	margin: 14px auto 0;
	border-radius: 4px;
}

/* Grid Layout */
.testimonial-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
	max-width: 1100px;
	margin: 0 auto;
}

/* Testimonial Card */
.testimonial-card {
	background: linear-gradient(145deg, #fffefb, #fff8e1);
	border-radius: 20px;
	padding: 32px 26px;
	box-shadow: 0 10px 28px rgba(160, 120, 0, 0.1);
	border: 2px solid rgba(212, 175, 55, 0.2);
	position: relative;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 16px 36px rgba(160, 120, 0, 0.25);
}

/* Accent Emoji */
.testimonial-card::before {
	content: "👑";
	font-size: 2.5rem;
	position: absolute;
	top: 10px;
	right: 16px;
	opacity: 0.1;
}

/* English Text */
.testimonial-text {
	color: #5d4037;
	margin: 0;
	font-size: 1.05rem;
	line-height: 1.7;
}

/* Telugu Text */
.testimonial-text.telugu-text {
	color: #6d4c41;
	margin-top: 10px;
	font-size: 0.95rem;
	font-weight: 500;
	font-family: 'Noto Sans Telugu', sans-serif;
}

/* Rating Stars */
.testimonial-stars {
	font-size: 1.3rem;
	color: #d4af37;
	margin-top: 16px;
	letter-spacing: 6px;
	text-align: left;
}

/* Animation */
.fade-on-scroll {
	opacity: 0;
	transform: translateY(40px);
	transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-on-scroll.visible {
	opacity: 1;
	transform: translateY(0);
}

/* Responsive */
@media ( max-width : 768px) {
	.testimonial-section h2 {
		font-size: 2.2rem;
	}
	.testimonial-section .telugu-sub {
		font-size: 1.05rem;
	}
}

@media ( max-width : 480px) {
	.dr1030testimonial {
		padding: 60px 15px;
	}
	.testimonial-card {
		padding: 24px 20px;
	}
	.testimonial-stars {
		text-align: center;
	}
}