.dr1header {
	position: sticky; /* Sticky header */
	top: 0; /* Stick to top */
	z-index: 1000; /* Stay above other content */
	background-color: #111;
	color: #fff;
	font-family: 'Segoe UI', sans-serif;
	border-bottom: 2px solid #00aced;
}

.dr1header a {
	text-decoration: none;
	color: inherit;
}

.dr1header .header-wrapper {
	max-width: 1200px;
	margin: 0 auto;
	padding: 15px 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
}

.dr1header .brand {
	display: flex;
	align-items: center;
	gap: 15px;
}

.dr1header .brand img {
	width: 70px; /* increased from 48px */
	height: auto;
}

.dr1header .brand-text h1 {
	margin: 0;
	font-size: 24px;
	color: #00aced;
}

.dr1header .brand-text p {
	margin: 0;
	font-size: 14px;
	color: #aaa;
}

.dr1header .nav-toggle {
	font-size: 26px;
	background: none;
	border: none;
	color: #fff;
	display: none;
	cursor: pointer;
}

.dr1header .nav-menu {
	display: flex;
	gap: 25px;
}

.dr1header .nav-menu a {
	color: #fff;
	text-decoration: none;
	font-weight: 500;
	padding: 8px 0;
	transition: color 0.3s;
}

.dr1header .nav-menu a:hover {
	color: #00aced;
}

/* Responsive Styles */
@media ( max-width : 768px) {
	.dr1header .nav-toggle {
		display: block;
	}
	.dr1header .nav-menu {
		display: none;
		flex-direction: column;
		width: 100%;
		text-align: center;
		background-color: #222;
		margin-top: 10px;
		padding: 10px 0;
	}
	.dr1header .nav-menu.show {
		display: flex;
	}
	.dr1header .nav-menu a {
		padding: 12px 0;
		border-top: 1px solid #333;
	}
}