.dr1021doctors {
	background: linear-gradient(to bottom right, #1b3a32, #264a3f);
	/* Deep green tones */
	padding: 80px 20px;
	font-family: 'Segoe UI', 'Noto Sans Telugu', sans-serif;
	color: #e0f2f1; /* Light teal */
	box-sizing: border-box;
}

.dr1021doctors h2 {
	text-align: center;
	font-size: 2.6rem;
	margin-bottom: 40px;
	color: #ffeb3b; /* Bright golden yellow */
	font-weight: 600;
	letter-spacing: 1px;
	position: relative;
}

.dr1021doctors h2::after {
	content: '';
	display: block;
	width: 60px;
	height: 4px;
	background: #fdd835;
	margin: 12px auto 0;
	border-radius: 4px;
}

.dr1021doctors .telugu-title {
	display: block;
	font-size: 1.3rem;
	color: #fff8e1;
	margin-top: 6px;
	font-weight: 500;
}

.dr1021doctors .telugu-subtitle {
	display: block;
	font-size: 1.05rem;
	color: #f1f8e9;
	margin-top: 4px;
}

.dr1021doctors .doctors-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 40px;
	max-width: 1200px;
	margin: 0 auto;
}

.dr1021doctors .doctor-card {
	background: #2e4b43;
	backdrop-filter: blur(8px);
	border-radius: 20px;
	border: 1px solid #3e6259;
	box-shadow: 0 10px 30px rgba(0, 128, 96, 0.3);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	padding: 30px 25px;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.dr1021doctors .doctor-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 16px 32px rgba(255, 235, 59, 0.25);
}

.dr1021doctors .doctor-photo img {
	width: 180px;
	height: 180px;
	border-radius: 50%;
	object-fit: cover;
	filter: grayscale(100%);
	border: 4px solid #ffeb3b;
	margin-bottom: 20px;
	background: #4e5d55;
	transition: filter 0.4s ease;
}

.dr1021doctors .doctor-card:hover .doctor-photo img {
	filter: grayscale(0%);
}

.dr1021doctors .doctor-info h3 {
	font-size: 1.4rem;
	color: #fff176;
	margin-bottom: 6px;
	font-weight: 600;
}

.dr1021doctors .doctor-info p {
	font-size: 1rem;
	color: #e0f7fa;
	line-height: 1.6;
	margin: 6px 0;
}

.dr1021doctors .toggle-more-btn {
	margin-top: 14px;
	background: linear-gradient(to right, #ffee58, #fbc02d);
	color: #2e4b43;
	border: none;
	padding: 10px 20px;
	font-size: 0.95rem;
	border-radius: 30px;
	cursor: pointer;
	transition: background 0.3s ease, transform 0.2s ease;
	box-shadow: 0 4px 12px rgba(255, 235, 59, 0.4);
}

.dr1021doctors .toggle-more-btn:hover {
	background: #f9a825;
	transform: scale(1.05);
}

.dr1021doctors .more-text {
	display: none;
	margin-top: 12px;
	text-align: left;
	font-size: 0.95rem;
	color: #f1f8e9;
}

.dr1021doctors .more-text ul {
	list-style: none;
	padding-left: 0;
	margin-top: 10px;
}

.dr1021doctors .more-text ul li {
	margin: 6px 0;
	padding-left: 26px;
	position: relative;
}

.dr1021doctors .more-text ul li::before {
	content: '✔';
	color: #ffee58;
	position: absolute;
	left: 0;
	top: 0;
	font-size: 1.1rem;
}

/* Fade-on-scroll animation */
.dr1021doctors .fade-on-scroll {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.8s ease, transform 0.8s ease;
}

.dr1021doctors .fade-on-scroll.visible {
	opacity: 1;
	transform: translateY(0);
}

/* Responsive */
@media ( max-width : 768px) {
	.dr1021doctors h2 {
		font-size: 2.1rem;
	}
	.dr1021doctors .doctor-info h3 {
		font-size: 1.2rem;
	}
	.dr1021doctors .doctor-info p {
		font-size: 0.9rem;
	}
	.dr1021doctors .telugu-title {
		font-size: 1.1rem;
	}
}

@media ( max-width : 480px) {
	.dr1021doctors {
		padding: 50px 15px;
	}
	.dr1021doctors h2 {
		font-size: 1.9rem;
	}
	.dr1021doctors .doctor-photo img {
		width: 120px;
		height: 120px;
	}
	.dr1021doctors .toggle-more-btn {
		padding: 6px 14px;
		font-size: 0.85rem;
	}
}