/* ===== Dental Clinic Header Styling ===== */
.dr1019header {
	background: linear-gradient(to right, #e0f7fa, #b2ebf2);
	color: #004d40;
	position: sticky;
	top: 0;
	z-index: 999;
	box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
	font-family: 'Poppins', 'Noto Sans Telugu', sans-serif;
}

/* ===== Container ===== */
.dr1019header .container {
	max-width: 1200px;
	margin: auto;
	padding: 15px 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
	min-height: 80px;
	box-sizing: border-box;
}

/* ===== Logo + Title ===== */
.dr1019header .logo-title {
	display: flex;
	align-items: center;
	gap: 12px;
	width: 100%;
	justify-content: space-between;
}

.dr1019header .logo-title img {
	width: 58px;
	height: 58px;
	padding: 6px;
	background: #ffffff;
	border-radius: 50%;
	box-shadow: 0 4px 12px rgba(0, 172, 193, 0.2);
	transition: transform 0.3s ease;
}

.dr1019header .logo-title img:hover {
	transform: scale(1.08);
}

.dr1019header .logo-title h1 {
	font-size: 1.5rem;
	line-height: 1.4;
	margin: 0;
	font-weight: 600;
	color: #006064;
	font-family: 'Noto Sans Telugu', 'Poppins', sans-serif;
}

.dr1019header .logo-title h1 .subtitle {
	display: block;
	font-size: 0.95rem;
	color: #00796b;
	font-weight: 400;
}

/* ===== Navigation - Desktop ===== */
.dr1019header nav {
	display: flex;
	gap: 14px;
	overflow-x: auto;
	white-space: nowrap;
	scrollbar-width: thin;
	scrollbar-color: rgba(0, 150, 136, 0.2) transparent;
}

.dr1019header nav::-webkit-scrollbar {
	height: 4px;
}

.dr1019header nav::-webkit-scrollbar-thumb {
	background: rgba(0, 150, 136, 0.3);
	border-radius: 3px;
}

.dr1019header nav a {
	color: #004d40;
	text-decoration: none;
	padding: 8px 16px;
	border-radius: 20px;
	font-weight: 500;
	transition: background 0.3s ease;
	font-size: 0.95rem;
	font-family: 'Poppins', 'Noto Sans Telugu', sans-serif;
}

.dr1019header nav a:hover {
	background: rgba(0, 172, 193, 0.15);
}

/* ===== Menu Toggle ===== */
.dr1019header .menu-toggle {
	display: none;
	font-size: 2rem;
	cursor: pointer;
	color: #006064;
}

/* ===== Mobile View ===== */
@media ( max-width : 768px) {
	.dr1019header .container {
		flex-direction: column;
		align-items: stretch;
	}
	.dr1019header .logo-title {
		width: 100%;
	}
	.dr1019header .menu-toggle {
		display: block;
	}
	.dr1019header nav {
		display: none;
		flex-direction: column;
		width: 100%;
		background: #b2dfdb;
		padding: 10px 0;
		border-radius: 8px;
		margin-top: 10px;
		/* Add scrolling and proper height */
		max-height: 70vh;
		overflow-y: auto;
	}
	.dr1019header nav.show {
		display: flex;
	}
	.dr1019header nav a {
		padding: 14px 20px;
		text-align: left;
		font-size: 1rem;
		width: 100%;
		box-sizing: border-box;
	}
}