.dr1021header {
	position: sticky;
	top: 0;
	z-index: 10000;
	background: #003554; /* Dark shade */
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.25);
	font-family: 'Segoe UI', Tahoma, sans-serif;
}

/* Header Container */
.dr1021header .container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.dr1021header .nav-wrapper {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 70px;
}

/* Logo Block */
.dr1021header .logo {
	display: flex;
	align-items: center;
	font-weight: 700;
	font-size: 1.3rem;
	gap: 12px;
	flex-shrink: 0;
}

.dr1021header .clinic-logo {
	height: 48px;
	width: auto;
	object-fit: contain;
	filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.5));
}

.dr1021header .logo-text {
	display: flex;
	flex-direction: column;
	line-height: 1.2;
}

.dr1021header .logo-text .eng {
	font-weight: 700;
	font-size: 1rem;
	color: #ffffff;
}

.dr1021header .logo-text .telugu {
	font-size: 0.9rem;
	font-weight: 500;
	color: #ffe066; /* Bright golden-yellow */
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
	letter-spacing: 0.3px;
}

/* Navigation Menu */
.dr1021header nav {
	flex: 1;
	margin-left: 40px;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

.dr1021header nav::-webkit-scrollbar {
	height: 6px;
}

.dr1021header nav::-webkit-scrollbar-thumb {
	background-color: rgba(255, 215, 0, 0.6);
	border-radius: 3px;
}

.dr1021header .nav-links {
	list-style: none;
	display: flex;
	gap: 25px;
	flex-wrap: nowrap;
	white-space: nowrap;
}

.dr1021header .nav-links li {
	position: relative;
}

.dr1021header .nav-links a {
	font-weight: 600;
	color: white;
	padding: 6px 0;
	display: inline-block;
	transition: color 0.3s ease;
}

.dr1021header .nav-links a:hover, .dr1021header .nav-links a:focus {
	color: #ffd700;
}

/* Hamburger Button */
.dr1021header .hamburger {
	display: none;
	font-size: 1.8rem;
	cursor: pointer;
	color: white;
	background: none;
	border: none;
}

/* Responsive Menu */
@media ( max-width : 992px) {
	.dr1021header .nav-links {
		gap: 15px;
		margin-left: 20px;
	}
}

@media ( max-width : 768px) {
	.dr1021header .nav-wrapper {
		justify-content: space-between;
	}
	.dr1021header nav {
		position: fixed;
		top: 70px;
		right: 0;
		height: calc(100vh - 70px);
		width: 260px;
		background: #002b45;
		transform: translateX(100%);
		transition: transform 0.3s ease;
		padding-top: 30px;
		box-shadow: -3px 0 8px rgba(0, 0, 0, 0.15);
		border-radius: 10px 0 0 10px;
		z-index: 9999;
		overflow-y: auto;
	}
	.dr1021header nav.open {
		transform: translateX(0);
	}
	.dr1021header .nav-links {
		flex-direction: column;
		gap: 18px;
		margin: 0;
		padding: 0 20px;
	}
	.dr1021header .hamburger {
		display: block;
	}
	.dr1021header .logo-text .telugu {
		font-size: 0.85rem;
		color: #ffe066;
		text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
		opacity: 1;
	}
}