.dr1030header {
	position: sticky;
	top: 0;
	z-index: 10000;
	background: linear-gradient(90deg, #3e2723, #bf360c); /* Jewel tones */
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
	font-family: 'Poppins', 'Noto Sans Telugu', sans-serif;
	height: 72px;
	overflow: hidden;
}

/* Header Inner Layout */
.dr1030header .nav-wrapper {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 16px;
	height: 72px;
}

/* Logo Styles */
.dr1030header .logo {
	display: flex;
	align-items: center;
	gap: 12px;
	background: linear-gradient(135deg, #4e342e, #6d4c41);
	padding: 10px 18px;
	border-radius: 32px;
	box-shadow: 0 4px 16px rgba(255, 215, 64, 0.3);
	border: 2px solid #fbc02d;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	cursor: pointer;
}

.dr1030header .logo:hover {
	transform: scale(1.02);
	box-shadow: 0 6px 20px rgba(255, 215, 64, 0.5);
}

.dr1030header .clinic-logo {
	height: 48px;
	width: 48px;
	object-fit: cover;
	border-radius: 50%;
	background-color: #fff8e1;
	padding: 4px;
	box-shadow: 0 0 10px rgba(255, 235, 59, 0.4);
	border: 2px solid #fdd835;
}

/* Logo Text */
.dr1030header .logo-text {
	display: flex;
	flex-direction: column;
	line-height: 1.2;
}

.dr1030header .logo-text .eng {
	font-weight: 800;
	font-size: 1rem;
	color: #ffe082;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.dr1030header .logo-text .telugu {
	font-size: 0.88rem;
	font-weight: 600;
	color: #ffcc80;
	font-family: 'Noto Sans Telugu', sans-serif;
}

.dr1030header .logo-text .location {
	font-size: 0.75rem;
	font-weight: 500;
	color: #d7ccc8;
	font-style: italic;
	letter-spacing: 0.3px;
}

/* Desktop Navigation */
.dr1030header nav {
	flex: 1;
	margin-left: 20px;
	overflow-x: auto;
}

.dr1030header .nav-links {
	display: flex;
	list-style: none;
	gap: 18px;
	margin: 0;
	padding: 0;
	white-space: nowrap;
}

.dr1030header .nav-links a {
	display: flex;
	align-items: center;
	gap: 6px;
	color: #ffffff;
	font-weight: 600;
	font-size: 0.9rem;
	text-decoration: none;
	padding: 4px 0;
	transition: color 0.2s ease;
}

.dr1030header .nav-links a:hover {
	color: #ffeb3b;
}

/* Hamburger Icon */
.dr1030header .hamburger {
	display: none;
	font-size: 2rem;
	background: none;
	border: none;
	color: #ffffff;
	cursor: pointer;
}

/* Responsive Mobile Navigation */
@media ( max-width : 768px) {
	.dr1030header nav {
		position: fixed;
		top: 72px;
		right: 0;
		width: 240px;
		height: calc(100vh - 72px);
		background: linear-gradient(135deg, #5d4037, #bf9b30);
		transform: translateX(100%);
		transition: transform 0.3s ease;
		box-shadow: -3px 0 8px rgba(0, 0, 0, 0.3);
		padding: 20px;
		border-radius: 10px 0 0 10px;
		z-index: 9999;
		background-blend-mode: overlay;
	}
	.dr1030header nav.open {
		transform: translateX(0);
	}
	.dr1030header .nav-links {
		flex-direction: column;
		gap: 16px;
	}
	.dr1030header .nav-links a {
		background: rgba(255, 215, 0, 0.08);
		padding: 10px 12px;
		border-radius: 6px;
		transition: all 0.3s ease;
	}
	.dr1030header .nav-links a:hover {
		background: rgba(255, 215, 0, 0.25);
		color: #fff176;
	}
	.dr1030header .hamburger {
		display: block;
	}
}