.dr1007header {
	position: sticky;
	top: 0;
	z-index: 1000;
	background: #fff8f0;
	font-family: 'Noto Sans Telugu', sans-serif;
}

/* Header Bar */
.dr1007header header {
	background: linear-gradient(90deg, #ff7043, #e65100);
	color: white;
	padding: 15px 10px;
	text-align: center;
}

.header-content {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	gap: 15px;
	flex-wrap: wrap;
}

.logo {
	width: 60px;
	height: 60px;
	object-fit: contain;
	border-radius: 50%;
	background: white;
	padding: 4px;
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.brand-name {
	font-size: 28px;
	font-weight: bold;
	color: #fffde7;
	text-shadow: 1px 1px 2px #00000033;
	line-height: 1.2;
}

/* Menu Toggle */
.menu-toggle {
	display: none;
	background: none;
	border: none;
	font-size: 28px;
	color: white;
	cursor: pointer;
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
}

/* Navigation */
.nav-menu {
	display: flex;
	justify-content: center;
	background: #ffb74d;
	flex-wrap: wrap;
	transition: max-height 0.3s ease;
}

/* Nav links */
.nav-menu a {
	color: #4e342e;
	padding: 15px 20px;
	text-decoration: none;
	font-weight: 600;
	transition: background 0.3s ease;
	border-radius: 20px;
	margin: 5px;
	background: rgba(255, 255, 255, 0.15);
}

.nav-menu a:hover {
	background: #ffe0b2;
}

/* Mobile view */
@media ( max-width : 768px) {
	.menu-toggle {
		display: block;
	}
	.nav-menu {
		display: none;
		flex-direction: column;
		max-height: 90vh;
		overflow-y: auto;
		width: 100%;
	}
	.nav-menu.show {
		display: flex;
	}
	.nav-menu a {
		border-top: 1px solid rgba(255, 255, 255, 0.2);
		padding: 12px;
		text-align: center;
		font-size: 16px;
	}
	.header-content {
		flex-direction: column;
		gap: 5px;
	}
	.brand-name {
		font-size: 20px;
	}
	.logo {
		width: 50px;
		height: 50px;
	}
}