.dr1048testimonial {
	background: linear-gradient(145deg, #1b1b1b, #2a2a2a);
	background-blend-mode: overlay;
	padding: 100px 20px;
	font-family: 'Noto Sans Telugu', 'Poppins', sans-serif;
	color: #f5f5f5;
	box-sizing: border-box;
}

/* Section Title */
.testimonial-section h2 {
	text-align: center;
	font-size: 2.8rem;
	color: #ffd700;
	font-weight: 800;
	margin-bottom: 50px;
	text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
	position: relative;
}

.testimonial-section .telugu-sub {
	display: block;
	font-size: 1.3rem;
	color: #ffe082;
	font-weight: 600;
	margin-top: 8px;
}

.testimonial-section h2::after {
	content: '';
	display: block;
	width: 80px;
	height: 4px;
	background: #ffd700;
	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: rgba(255, 255, 255, 0.05);
	border-radius: 20px;
	padding: 30px 25px;
	border: 1px solid rgba(255, 215, 0, 0.3);
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
	transition: all 0.3s ease;
	position: relative;
	backdrop-filter: blur(2px);
}

.testimonial-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 18px 40px rgba(255, 215, 0, 0.3);
}

.testimonial-card::before {
	content: "🛠️";
	font-size: 2.2rem;
	position: absolute;
	top: 12px;
	right: 18px;
	opacity: 0.1;
}

/* Text Styling */
.testimonial-text {
	color: #f1f1f1;
	font-size: 1.1rem;
	line-height: 1.7;
}

.testimonial-text.telugu-text {
	margin-top: 12px;
	color: #ffe082;
	font-weight: 500;
	font-size: 1rem;
}

/* Rating */
.testimonial-stars {
	margin-top: 14px;
	font-size: 1.4rem;
	letter-spacing: 6px;
	color: #ffd700;
}

/* Scroll 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.1rem;
	}
}

@media ( max-width : 480px) {
	.dr1048testimonial {
		padding: 60px 15px;
	}
	.testimonial-card {
		padding: 24px 20px;
	}
	.testimonial-stars {
		text-align: center;
	}
}