.dr1015testimonial {
	
}

.dr1015testimonial .testimonial-section {
	background-color: #fffaf5;
	padding: 4rem 1rem;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	text-align: center;
}

.dr1015testimonial .container {
	max-width: 1200px;
	margin: 0 auto;
}

.dr1015testimonial .section-title {
	font-size: 2.5rem;
	font-weight: 700;
	color: #bfa046;
	margin-bottom: 3rem;
}

.dr1015testimonial .testimonial-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2.5rem;
}

.dr1015testimonial .testimonial-card {
	background: #ffffff;
	border-top: 6px solid #bfa046;
	border-radius: 2rem;
	padding: 2rem 1.5rem 2.5rem;
	box-shadow: 0 6px 18px rgba(191, 160, 70, 0.25);
	transition: box-shadow 0.3s ease, transform 0.3s ease;
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.dr1015testimonial .testimonial-card:hover {
	box-shadow: 0 12px 30px rgba(191, 160, 70, 0.45);
	transform: translateY(-8px);
}

/* Gold-themed gradient background behind images */
.dr1015testimonial .testimonial-img-wrapper {
	width: 170px;
	height: 170px;
	border-radius: 50%;
	padding: 8px;
	background: radial-gradient(
		circle at center,
		#fff8e1 0%,       /* soft light gold */
		#f9d71c 40%,      /* bright gold */
		#bfa046 70%,      /* darker antique gold */
		#7a5e11 100%      /* deep rich gold brown */
	);
	box-shadow:
		0 0 12px rgba(255, 215, 0, 0.7),
		0 0 18px rgba(191, 160, 70, 0.4);
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.25rem;
	animation: glowPulse 4s ease-in-out infinite;
}

/* Animated gold shimmer ring */
.dr1015testimonial .testimonial-img-wrapper::after {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: 50%;
	border: 2px dashed rgba(255, 215, 0, 0.4);
	animation: shimmerRing 10s linear infinite;
	pointer-events: none;
}

/* Profile image */
.dr1015testimonial .testimonial-img {
	width: 150px;
	height: 150px;
	border-radius: 50%;
	border: 4px solid #fffaf0;
	object-fit: cover;
	display: block;
	z-index: 2;
}

/* Testimonial content */
.dr1015testimonial .testimonial-name {
	font-size: 1.25rem;
	font-weight: 600;
	color: #333333;
	margin-bottom: 0.25rem;
}

.dr1015testimonial .testimonial-location {
	font-size: 0.875rem;
	color: #bfa046;
	margin-bottom: 1rem;
}

.dr1015testimonial .testimonial-text {
	font-style: italic;
	color: #555555;
	line-height: 1.6;
	max-width: 90%;
}

/* Animation for glow pulse */
@keyframes glowPulse {
	0%, 100% {
		box-shadow: 0 0 12px rgba(255, 215, 0, 0.7),
		            0 0 18px rgba(191, 160, 70, 0.4);
	}
	50% {
		box-shadow: 0 0 24px rgba(255, 215, 0, 0.9),
		            0 0 30px rgba(191, 160, 70, 0.6);
	}
}

/* Animation for shimmer ring */
@keyframes shimmerRing {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

/* Responsive adjustments */
@media (max-width: 480px) {
	.dr1015testimonial .section-title {
		font-size: 2rem;
	}
	.dr1015testimonial .testimonial-card {
		padding: 1.5rem 1rem 2rem;
		border-radius: 1.5rem;
	}
	.dr1015testimonial .testimonial-img-wrapper {
		width: 120px;
		height: 120px;
	}
	.dr1015testimonial .testimonial-img {
		width: 100px;
		height: 100px;
	}
}