.dr1050header {
	position: sticky;
	top: 0;
	z-index: 1000;
	background: #0a3cff;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
	font-family: 'Poppins', 'Noto Serif Telugu', sans-serif;
}

/* ================= INNER FLEX ================= */
.dr1050header .inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 14px 16px;
	max-width: 1200px;
	margin: 0 auto;
	position: relative;
}

/* ================= LOGO BLOCK ================= */
.dr1050header .logo {
	display: flex;
	align-items: center;
	gap: 14px;
	color: #ffffff;
}

/* LOGO IMAGE (DECORATED) */
.dr1050header .logo img {
	height: 56px;
	width: auto;
	padding: 6px;
	background: #ffffff;
	border-radius: 12px;
	box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
	object-fit: contain;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dr1050header .logo:hover img {
	transform: scale(1.05);
	box-shadow: 0 8px 18px rgba(0, 0, 0, 0.35);
}

/* BRAND TEXT */
.dr1050header .brand-text span {
	font-size: 17px;
	font-weight: 600;
	line-height: 1.2;
	display: block;
}

/* TELUGU LINE */
.dr1050header .telugu {
	font-size: 13px;
	opacity: 0.9;
	line-height: 1.2;
}

/* ================= LOCATION - BIG & ATTRACTIVE ================= */
.dr1050header .location a {
	font-size: 16px; /* Bigger size */
	font-weight: 700; /* Bold */
	color: #FFD700; /* Bright gold */
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 4px 8px;
	border-radius: 6px;
	background: rgba(255, 215, 0, 0.15); /* subtle gold background */
	box-shadow: 0 2px 8px rgba(255, 215, 0, 0.4); /* glowing effect */
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dr1050header .location a:hover {
	text-decoration: underline;
	transform: scale(1.1);
	box-shadow: 0 4px 16px rgba(255, 215, 0, 0.6);
}

/* ================= NAV MENU ================= */
.dr1050header .nav-menu ul {
	display: flex;
	list-style: none;
	gap: 22px;
	margin: 0;
	padding: 0;
}

.dr1050header .nav-menu ul li a {
	text-decoration: none;
	color: #ffffff;
	font-weight: 500;
	transition: opacity 0.2s ease;
}

.dr1050header .nav-menu ul li a:hover {
	opacity: 0.8;
}

/* ================= ACTION ICONS ================= */
.dr1050header .actions {
	display: flex;
	align-items: center;
	gap: 12px;
}

.dr1050header .actions a {
	color: #ffffff;
	font-size: 18px;
	text-decoration: none;
	transition: transform 0.2s ease, opacity 0.2s ease;
}

.dr1050header .actions a:hover {
	opacity: 0.85;
	transform: scale(1.1);
}

/* ================= HAMBURGER ================= */
.dr1050header .hamburger {
	display: none;
	background: none;
	border: none;
	color: #ffffff;
	font-size: 22px;
	cursor: pointer;
}

/* ================= MOBILE VIEW ================= */
@media ( max-width : 768px) {
	/* HEADER SPACING */
	.dr1050header .inner {
		padding: 10px 12px;
	}

	/* LOGO STACK */
	.dr1050header .logo {
		align-items: flex-start;
	}
	.dr1050header .logo img {
		height: 48px;
	}
	.dr1050header .brand-text span {
		font-size: 15px;
	}

	/* TELUGU + LOCATION VISIBLE */
	.dr1050header .telugu {
		display: block;
		font-size: 12px;
	}
	.dr1050header .location a {
		font-size: 14px;
	}

	/* MOBILE MENU */
	.dr1050header .nav-menu {
		position: absolute;
		top: 74px;
		right: 0;
		background: #0a3cff;
		width: 220px;
		display: none;
		flex-direction: column;
		box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
		border-radius: 0 0 10px 10px;
	}
	.dr1050header .nav-menu.active {
		display: flex;
	}
	.dr1050header .nav-menu ul {
		flex-direction: column;
		gap: 0;
	}
	.dr1050header .nav-menu ul li {
		border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	}
	.dr1050header .nav-menu ul li a {
		padding: 12px 16px;
		display: block;
	}

	/* ACTIONS + HAMBURGER */
	.dr1050header .actions a, .dr1050header .hamburger {
		width: 38px;
		height: 38px;
		display: flex;
		align-items: center;
		justify-content: center;
		border-radius: 6px;
	}
	.dr1050header .hamburger {
		display: flex;
	}
}