/* Section Wrapper */
.dr1016doctors {
	background: #f9fefe;
	padding: 60px 20px;
	font-family: 'Segoe UI', sans-serif;
	color: #004d40;
	box-sizing: border-box;
}

/* Section Heading */
.dr1016doctors h2 {
	text-align: center;
	font-size: 2.5rem;
	margin-bottom: 40px;
	color: #00695c;
	position: relative;
}

.dr1016doctors h2::after {
	content: '';
	display: block;
	width: 60px;
	height: 4px;
	background: #00bfa5;
	margin: 10px auto 0;
	border-radius: 2px;
}

/* Grid Layout */
.dr1016doctors .doctors-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
	max-width: 1200px;
	margin: 0 auto;
}

/* Doctor Card */
.dr1016doctors .doctor-card {
	background: #ffffff;
	border-radius: 16px;
	box-shadow: 0 8px 20px rgba(0, 150, 136, 0.1);
	overflow: hidden;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 25px;
}

.dr1016doctors .doctor-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 12px 28px rgba(0, 150, 136, 0.2);
}

/* Doctor Photo */
.dr1016doctors .doctor-photo img {
	width: 200px;
	height: 200px;
	border-radius: 50%;
	object-fit: cover;
	border: 4px solid #00bfa5;
	margin-bottom: 16px;
}

/* Doctor Info */
.dr1016doctors .doctor-info h3 {
	font-size: 1.4rem;
	color: #00796b;
	margin-bottom: 8px;
}

.dr1016doctors .doctor-info p {
	font-size: 0.95rem;
	color: #555;
	line-height: 1.5;
	margin: 6px 0;
}

/* Toggle Button */
.doctor-info .toggle-more-btn {
	margin-top: 12px;
	background: #00bfa5;
	color: white;
	border: none;
	padding: 8px 16px;
	font-size: 0.9rem;
	border-radius: 8px;
	cursor: pointer;
	transition: background 0.3s ease;
}

.doctor-info .toggle-more-btn:hover {
	background: #008e76;
}

/* Expanded Text */
.more-text {
	display: none;
	margin-top: 10px;
	text-align: left;
	font-size: 0.95rem;
	color: #444;
}

.more-text ul {
	list-style: none;
	padding-left: 0;
	margin-top: 10px;
}

.more-text ul li {
	margin: 4px 0;
	padding-left: 24px;
	position: relative;
}

.more-text ul li::before {
	content: '✔';
	color: #00bfa5;
	position: absolute;
	left: 0;
	top: 0;
	font-size: 1rem;
}

/* Responsive Tweaks */
@media ( max-width : 768px) {
	.dr1016doctors h2 {
		font-size: 2rem;
	}
	.dr1016doctors .doctor-info h3 {
		font-size: 1.2rem;
	}
	.dr1016doctors .doctor-info p {
		font-size: 0.9rem;
	}
}

@media ( max-width : 480px) {
	.dr1016doctors {
		padding: 40px 15px;
	}
	.dr1016doctors h2 {
		font-size: 1.8rem;
	}
	.dr1016doctors .doctor-photo img {
		width: 120px;
		height: 120px;
	}
	.doctor-info .toggle-more-btn {
		padding: 6px 12px;
		font-size: 0.85rem;
	}
}