/* ================= TESTIMONIAL SECTION ================= */
.dr1050testimonial {
	padding: 100px 20px;
	background: linear-gradient(135deg, #e6f0ff, #cce0ff);
	font-family: 'Poppins', 'Noto Serif Telugu', sans-serif;
	color: #1a1a1a;
}

.dr1050testimonial .testimonial-container {
	max-width: 1200px;
	margin: auto;
	text-align: center;
}

/* HEADER */
.dr1050testimonial h2 {
	font-size: 2.6rem;
	font-weight: 800;
	color: #0a3cff;
	margin-bottom: 10px;
	line-height: 1.3;
}

.dr1050testimonial .english-heading {
	display: block;
	font-size: 1rem;
	font-weight: 500;
	color: #355cff;
	margin-top: 6px;
}

.dr1050testimonial .intro {
	font-size: 1.15rem;
	line-height: 1.8;
	color: #333;
	margin-bottom: 50px;
	max-width: 900px;
	margin-left: auto;
	margin-right: auto;
}

/* TESTIMONIAL GRID */
.dr1050testimonial .testimonial-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 26px;
	margin-bottom: 60px;
}

/* TESTIMONIAL CARD */
.dr1050testimonial .testimonial-card {
	background: #ffffff;
	padding: 28px 22px;
	border-radius: 18px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	text-align: left;
}

.dr1050testimonial .testimonial-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.dr1050testimonial .testimonial-card .stars {
	font-size: 1.4rem;
	margin-bottom: 12px;
	color: #ffd700; /* gold stars */
}

.dr1050testimonial .testimonial-card p {
	font-size: 1rem;
	line-height: 1.7;
	color: #444;
	margin: 0;
}

/* CTA SECTION */
.dr1050testimonial .testimonial-cta {
	background: linear-gradient(135deg, #0a3cff, #0032a8);
	color: #fff;
	padding: 36px 24px;
	border-radius: 20px;
	text-align: center;
}

.dr1050testimonial .testimonial-cta p {
	font-size: 1.2rem;
	font-weight: 600;
	margin-bottom: 22px;
}

/* CTA BUTTONS */
.dr1050testimonial .cta-buttons {
	display: flex;
	justify-content: center;
	gap: 16px;
	flex-wrap: wrap;
}

.dr1050testimonial .btn {
	padding: 14px 30px;
	border-radius: 30px;
	font-weight: 600;
	text-decoration: none;
	color: #fff;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.dr1050testimonial .btn.whatsapp {
	background: #25d366;
}

.dr1050testimonial .btn.call {
	background: #ff9800;
}

.dr1050testimonial .btn:hover {
	transform: scale(1.07);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* ================= ANIMATION ================= */
.dr1050testimonial .fade-up {
	opacity: 0;
	transform: translateY(40px);
	transition: opacity 0.9s ease, transform 0.9s ease;
}

.dr1050testimonial .fade-up.show {
	opacity: 1;
	transform: translateY(0);
}

.dr1050testimonial .delay-1 {
	transition-delay: 0.1s;
}

.dr1050testimonial .delay-2 {
	transition-delay: 0.2s;
}

.dr1050testimonial .delay-3 {
	transition-delay: 0.3s;
}

.dr1050testimonial .delay-4 {
	transition-delay: 0.4s;
}

/* ================= RESPONSIVE ================= */
@media ( max-width : 992px) {
	.dr1050testimonial .testimonial-card {
		text-align: center;
	}
}

@media ( max-width : 480px) {
	.dr1050testimonial {
		padding: 70px 16px;
	}
	.dr1050testimonial h2 {
		font-size: 2.1rem;
	}
}