/* Talent Trail Header Container */
.dr1042header {
	position: sticky;
	top: 0;
	z-index: 9999;
	background: linear-gradient(135deg, #1a73e8, #0b4f6c);
	/* professional gradient */
	color: white;
	padding: 15px 20px;
	font-family: 'Poppins', sans-serif;
	border-bottom-left-radius: 14px;
	border-bottom-right-radius: 14px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

/* Flex Layout */
.header-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

/* Logo & Brand */
.header-logo-text {
	display: flex;
	align-items: center;
	gap: 12px;
}

/* Simple Clean Logo */
.header-logo {
	height: 55px;
	width: auto;
	border-radius: 12px;
	flex-shrink: 0;
	padding: 0; /* Removed shiny padding */
	background: none; /* Removed gradient background */
	box-shadow: none; /* Removed glow/shadow */
	object-fit: contain;
	animation: none; /* Removed glow animation */
}

/* Header Title & Tagline */
.header-text h1 {
	margin: 0;
	font-size: 2rem;
	font-weight: 700;
	letter-spacing: 1px;
	line-height: 1.2;
	color: #ffffff; /* Simple white text */
	background: none; /* Removed gradient */
	-webkit-background-clip: unset;
	-webkit-text-fill-color: unset;
}

.header-text p {
	margin: 4px 0 0;
	font-size: 1rem;
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	align-items: center;
	color: #e2e8f0; /* softer white for tagline */
}

.header-text p span {
	font-weight: 600;
	background: rgba(255, 255, 255, 0.15); /* subtle accent */
	color: #ffffff;
	padding: 2px 6px;
	border-radius: 6px;
}

/* Hamburger Menu */
.hamburger {
	font-size: 1.8rem;
	cursor: pointer;
	background: rgba(255, 255, 255, 0.15);
	padding: 8px 12px;
	border-radius: 8px;
	transition: background 0.3s ease, transform 0.3s ease;
}

.hamburger:hover {
	background: rgba(255, 255, 255, 0.25);
}

.hamburger.active {
	transform: rotate(90deg);
}

/* Slide Menu */
.slide-menu {
	position: fixed;
	top: 0;
	right: -270px;
	width: 270px;
	height: 100%;
	background: #0b4f6c; /* deep teal for menu */
	display: flex;
	flex-direction: column;
	transition: right 0.3s ease-in-out;
	box-shadow: -3px 0 12px rgba(0, 0, 0, 0.35);
	border-top-left-radius: 14px;
	border-bottom-left-radius: 14px;
}

.slide-menu.open {
	right: 0;
}

.menu-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 18px 20px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.menu-header h2 {
	margin: 0;
	font-size: 1.3rem;
	font-weight: 600;
	color: white;
}

.close-btn {
	font-size: 1.5rem;
	cursor: pointer;
	color: white;
	transition: transform 0.2s ease;
}

.close-btn:hover {
	transform: rotate(90deg);
}

.slide-menu a {
	color: white;
	text-decoration: none;
	padding: 16px 20px;
	font-size: 1.1rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.15);
	transition: background 0.3s ease;
}

.slide-menu a:hover {
	background: rgba(255, 255, 255, 0.1);
}

/* Mobile Responsive */
@media ( max-width : 480px) {
	.header-top {
		flex-direction: column;
		align-items: center;
		gap: 8px;
	}
	.header-logo-text {
		flex-direction: column;
		text-align: center;
	}
	.header-logo {
		height: 45px;
	}
	.header-text h1 {
		font-size: 1.7rem;
	}
	.header-text p {
		font-size: 0.9rem;
		text-align: center;
	}
}