.dr1027header {
	position: sticky;
	top: 0;
	z-index: 10000;
	background: #2E3A59; /* Indigo Slate */
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
	font-family: 'Poppins', 'Noto Sans Telugu', sans-serif;
	height: 72px;
	overflow: hidden;
}

.dr1027header .container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 10px;
}

.dr1027header .nav-wrapper {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 72px;
}

.dr1027header .logo {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-shrink: 0;
	background: #F4F7FA; /* Light background */
	padding: 6px 12px;
	border-radius: 10px;
	box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.05);
}

.dr1027header .clinic-logo {
	height: 48px;
	width: auto;
	max-width: 120px;
	object-fit: contain;
	filter: brightness(1.15) contrast(1.05);
	transition: transform 0.3s ease, filter 0.3s ease;
}

.dr1027header .clinic-logo:hover {
	transform: scale(1.05);
	filter: brightness(1.3) contrast(1.15);
}

.dr1027header .logo-text {
	line-height: 1.2;
}

.dr1027header .logo-text .eng {
	font-weight: 700;
	font-size: 0.95rem;
	color: #2C3E50; /* Dark Text */
}

.dr1027header .logo-text .telugu {
	font-size: 0.85rem;
	color: #6FCF97; /* Accent Green */
	font-weight: 600;
}

.dr1027header nav {
	flex: 1;
	margin-left: 20px;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

.dr1027header nav::-webkit-scrollbar {
	height: 4px;
}

.dr1027header nav::-webkit-scrollbar-thumb {
	background: #6FCF97;
	border-radius: 2px;
}

.dr1027header .nav-links {
	display: flex;
	gap: 18px;
	list-style: none;
	margin: 0;
	padding: 0;
	white-space: nowrap;
}

.dr1027header .nav-links li {
	position: relative;
}

.dr1027header .nav-links a {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 0.9rem;
	font-weight: 600;
	color: #ffffff;
	text-decoration: none;
	padding: 4px 0;
	transition: color 0.2s ease;
}

.dr1027header .nav-links a:hover {
	color: #FF7043; /* Soft Coral Highlight */
}

.dr1027header .nav-links a img {
	width: 18px;
	height: 18px;
}

.dr1027header .hamburger {
	display: none;
	font-size: 1.6rem;
	cursor: pointer;
	color: #ffffff;
	background: none;
	border: none;
	z-index: 10001;
}

@media ( max-width : 768px) {
	.dr1027header .nav-wrapper {
		justify-content: space-between;
	}
	.dr1027header .clinic-logo {
		height: 45px;
		max-width: 100px;
	}
	.dr1027header .logo-text .eng {
		font-size: 0.85rem;
	}
	.dr1027header .logo-text .telugu {
		font-size: 0.75rem;
	}
	.dr1027header nav {
		position: fixed;
		top: 72px;
		right: 0;
		width: 240px;
		height: calc(100vh - 72px);
		background: #2E3A59;
		transform: translateX(100%);
		transition: transform 0.3s ease;
		box-shadow: -3px 0 8px rgba(0, 0, 0, 0.15);
		padding: 20px;
		border-radius: 10px 0 0 10px;
		z-index: 9999;
	}
	.dr1027header nav.open {
		transform: translateX(0);
	}
	.dr1027header .nav-links {
		flex-direction: column;
		gap: 14px;
	}
	.dr1027header .hamburger {
		display: block;
	}
}