/* Header Container */
.dr1028header {
	position: sticky;
	top: 0;
	z-index: 10000;
	background: linear-gradient(90deg, #388e3c, #66bb6a);
	/* Green gradient */
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
	font-family: 'Poppins', 'Noto Sans Telugu', sans-serif;
	height: 72px;
	overflow: hidden;
}

/* Flex wrapper for logo + nav */
.dr1028header .nav-wrapper {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 16px;
	height: 72px;
}

/* 🌿 Modern Nature-Inspired Logo */
.dr1028header .logo {
	display: flex;
	align-items: center;
	gap: 12px;
	background: rgba(255, 255, 255, 0.85);
	padding: 8px 16px;
	border-radius: 16px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
	backdrop-filter: blur(6px);
	transition: transform 0.3s ease;
	cursor: pointer;
}

.dr1028header .logo:hover {
	transform: scale(1.02);
}

.dr1028header .clinic-logo {
	height: 48px;
	width: auto;
	object-fit: contain;
	border-radius: 8px;
	background-color: transparent;
	padding: 0;
	box-shadow: none;
}

/* Logo Text Styling */
.dr1028header .logo-text {
	display: flex;
	flex-direction: column;
	line-height: 1.2;
}

.dr1028header .logo-text .eng {
	font-weight: 800;
	font-size: 1rem;
	color: #2e7d32;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.dr1028header .logo-text .telugu {
	font-size: 0.88rem;
	font-weight: 600;
	color: #1b5e20;
	font-family: 'Noto Sans Telugu', sans-serif;
}

/* Navigation base */
.dr1028header nav {
	flex: 1;
	margin-left: 20px;
	overflow-x: auto;
}

.dr1028header .nav-links {
	display: flex;
	list-style: none;
	gap: 18px;
	margin: 0;
	padding: 0;
	white-space: nowrap;
}

.dr1028header .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;
}

.dr1028header .nav-links a:hover {
	color: #ffeb3b; /* Yellow on hover */
}

/* Hamburger button */
.dr1028header .hamburger {
	display: none;
	font-size: 1.8rem;
	background: none;
	border: none;
	color: #ffffff;
	cursor: pointer;
}

/* 🌱 Responsive Mobile Menu */
@media ( max-width : 768px) {
	.dr1028header nav {
		position: fixed;
		top: 72px;
		right: 0;
		width: 240px;
		height: calc(100vh - 72px);
		background: #388e3c;
		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;
	}
	.dr1028header nav.open {
		transform: translateX(0);
	}
	.dr1028header .nav-links {
		flex-direction: column;
		gap: 16px;
	}
	.dr1028header .hamburger {
		display: block;
	}
}