.dr1019doctors {
	background: linear-gradient(to bottom right, #fffaf0, #fffdf6);
	padding: 80px 20px;
	font-family: 'Segoe UI', 'Noto Sans Telugu', sans-serif;
	color: #3b3b3b;
	box-sizing: border-box;
}

.dr1019doctors h2 {
	text-align: center;
	font-size: 2.6rem;
	margin-bottom: 40px;
	color: #b08d57;
	font-weight: 600;
	letter-spacing: 1px;
	position: relative;
}

.dr1019doctors h2::after {
	content: '';
	display: block;
	width: 60px;
	height: 4px;
	background: #d4af37;
	margin: 12px auto 0;
	border-radius: 4px;
}

/* Telugu Subtitle Styling */
.telugu-title {
	display: block;
	font-size: 1.3rem;
	color: #00796b;
	margin-top: 6px;
	font-weight: 500;
	font-family: 'Noto Sans Telugu', 'Segoe UI', sans-serif;
}

.telugu-subtitle {
	display: block;
	font-size: 1.05rem;
	color: #4a4a4a;
	margin-top: 4px;
	font-family: 'Noto Sans Telugu', 'Segoe UI', sans-serif;
}

.doctors-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 40px;
	max-width: 1200px;
	margin: 0 auto;
}

.doctor-card {
	background: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(8px);
	border-radius: 20px;
	border: 1px solid #f2e6d8;
	box-shadow: 0 10px 30px rgba(176, 141, 87, 0.1);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	padding: 30px 25px;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.doctor-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 16px 32px rgba(212, 175, 55, 0.3);
}

.doctor-photo img {
	width: 180px;
	height: 180px;
	border-radius: 50%;
	object-fit: cover;
	filter: grayscale(100%);
	border: 4px solid #d4af37;
	margin-bottom: 20px;
	transition: filter 0.4s ease;
}

.doctor-card:hover .doctor-photo img {
	filter: grayscale(0%);
}

.doctor-info h3 {
	font-size: 1.4rem;
	color: #8b6f47;
	margin-bottom: 6px;
	font-weight: 600;
}

.doctor-info p {
	font-size: 1rem;
	color: #666;
	line-height: 1.6;
	margin: 6px 0;
}

.toggle-more-btn {
	margin-top: 14px;
	background: #d4af37;
	color: white;
	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(212, 175, 55, 0.3);
}

.toggle-more-btn:hover {
	background: #b08d57;
	transform: scale(1.05);
}

.more-text {
	display: none;
	margin-top: 12px;
	text-align: left;
	font-size: 0.95rem;
	color: #555;
}

.more-text ul {
	list-style: none;
	padding-left: 0;
	margin-top: 10px;
}

.more-text ul li {
	margin: 6px 0;
	padding-left: 26px;
	position: relative;
}

.more-text ul li::before {
	content: '✔';
	color: #d4af37;
	position: absolute;
	left: 0;
	top: 0;
	font-size: 1.1rem;
}

/* Fade Animation */
.fade-on-scroll {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-on-scroll.visible {
	opacity: 1;
	transform: translateY(0);
}

/* Responsive */
@media ( max-width : 768px) {
	.dr1019doctors h2 {
		font-size: 2.1rem;
	}
	.doctor-info h3 {
		font-size: 1.2rem;
	}
	.doctor-info p {
		font-size: 0.9rem;
	}
	.telugu-title {
		font-size: 1.1rem;
	}
}

@media ( max-width : 480px) {
	.dr1019doctors {
		padding: 50px 15px;
	}
	.dr1019doctors h2 {
		font-size: 1.9rem;
	}
	.doctor-photo img {
		width: 120px;
		height: 120px;
	}
	.toggle-more-btn {
		padding: 6px 14px;
		font-size: 0.85rem;
	}
}