/* Header Container */
.dr1031header {
	position: sticky;
	top: 0;
	z-index: 9999;
	background: linear-gradient(90deg, #4e342e, #6d4c41, #a67c52);
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
	font-family: 'Poppins', 'Noto Serif Telugu', sans-serif;
}

/* Inner Flex Layout */
.nav-wrapper {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 16px;
	max-width: 1200px;
	margin: auto;
}

/* Logo Layout */
.logo {
	display: flex;
	align-items: center;
	gap: 14px;
}

/* Enlarged Logo Image */
.clinic-logo {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background-color: #fffde7;
	padding: 5px;
	border: 2px solid #d4af37;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
	object-fit: cover;
}

/* Logo Text Styling */
.logo-text {
	display: flex;
	flex-direction: column;
	line-height: 1.3;
}

.logo-text .eng {
	font-weight: 900;
	font-size: 1.2rem;
	color: #ffeb3b;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.logo-text .telugu {
	font-size: 1rem;
	font-weight: 700;
	color: #ffe082;
	font-family: 'Noto Serif Telugu', serif;
	text-shadow: 1px 1px 0 #bfa145, 2px 2px 1px rgba(0, 0, 0, 0.2), 0 0 5px
		rgba(255, 215, 64, 0.4);
	letter-spacing: 0.5px;
}

.logo-text .location {
	font-size: 0.8rem;
	color: #d0c4b0;
	font-style: italic;
	margin-top: 2px;
}

/* Navigation */
nav {
	transition: transform 0.3s ease;
}

.nav-links {
	display: flex;
	list-style: none;
	gap: 20px;
	margin: 0;
	padding: 0;
}

.nav-links a {
	text-decoration: none;
	color: #fffde7;
	font-weight: 600;
	font-size: 0.95rem;
	transition: color 0.3s ease;
}

.nav-links a:hover {
	color: #ffeb3b;
}

/* Hamburger Button */
.hamburger {
	display: none;
	background: none;
	border: none;
	color: #fff;
	font-size: 2rem;
	cursor: pointer;
}

/* Responsive Mobile View */
@media ( max-width : 768px) {
	nav {
		position: fixed;
		top: 72px;
		right: 0;
		width: 250px;
		height: 100vh;
		background: #4e342e;
		transform: translateX(100%);
		transition: transform 0.3s ease;
		padding: 20px;
	}
	nav.open {
		transform: translateX(0);
	}
	.nav-links {
		flex-direction: column;
		gap: 16px;
	}
	.nav-links a {
		padding: 10px;
		border-radius: 6px;
		background: rgba(255, 255, 255, 0.05);
	}
	.hamburger {
		display: block;
	}
}