.dr1041doctors {
	background: linear-gradient(135deg, #fff0f5, #e8f5e9, #e0f7fa);
	padding: 80px 20px;
	font-family: 'Noto Sans Telugu', 'Poppins', sans-serif;
	border-radius: 20px;
	color: #1b3c59;
}

.doctors-container {
	max-width: 1200px;
	margin: auto;
	text-align: center;
}

.doctors-title {
	font-size: 2.5rem;
	font-weight: 800;
	color: #0d9488;
	margin-bottom: 12px;
	text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.1);
}

.doctors-subtitle {
	font-size: 1.1rem;
	color: #334155;
	margin-bottom: 40px;
}

.doctor-cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
}

.doctor-card {
	background: white;
	border-radius: 20px;
	padding: 20px;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.doctor-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.doctor-photo img {
	width: 150px;
	height: 150px;
	border-radius: 50%;
	object-fit: cover;
	margin-bottom: 15px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.doctor-header h3 {
	font-size: 1.3rem;
	color: #0d9488;
	margin-bottom: 6px;
	text-align: center;
}

.doctor-header span {
	display: block;
	font-size: 0.95rem;
	color: #f97316;
	margin-bottom: 12px;
	text-align: center;
}

.doctor-content {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s ease;
	text-align: left;
	width: 100%;
}

.doctor-content ul {
	list-style: disc;
	padding-left: 20px;
	margin: 0;
	color: #334155;
	line-height: 1.6;
}

.toggle-btn {
	padding: 10px 20px;
	border-radius: 30px;
	border: none;
	background: linear-gradient(45deg, #f97316, #dc2626);
	color: #fff;
	font-weight: 600;
	cursor: pointer;
	transition: transform 0.3s ease;
}

.toggle-btn:hover {
	transform: scale(1.05);
}

/* Fade-in Animation */
.fade-in-up {
	opacity: 0;
	transform: translateY(40px);
	transition: opacity 1s ease, transform 1s ease;
}

.fade-in-up.animate {
	opacity: 1;
	transform: translateY(0);
}

@media ( max-width :992px) {
	.doctors-title {
		font-size: 2rem;
	}
	.doctor-cards {
		grid-template-columns: 1fr;
	}
}