/*
Theme Name: NoticeFix High UI Theme
Theme URI: https://noticefix.com/
Author: NoticeFix Team
Description: Custom high-performance theme for NoticeFix.
Version: 2.1
*/

:root {
	--nf-primary: #1A374D;
	--nf-accent: #DAA520;
	--nf-bg-pure: #FFFFFF;
	--nf-text-light: #f1f5f9;
	--nf-text-medium: #94a3b8;
}

body { 
	margin: 0; 
	font-family: "Poppins", "Segoe UI", Arial, sans-serif;
}

.site-header {
	background: var(--nf-primary);
	position: sticky;
	top: 0;
	z-index: 1000;
	padding: 0.75rem 2rem;
	transition: box-shadow 0.3s ease, background-color 0.3s ease;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.site-header.scrolled {
	box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
}

.header-container {
	max-width: 1300px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 2rem;
	flex-wrap: wrap;
}

.logo-nav-wrapper {
	display: flex;
	align-items: center;
	gap: 2.5rem;
	flex-grow: 1;
}

.logo-area {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.site-branding img {
	height: 55px;
	display: block;
}

.main-navigation ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: 2rem;
}

.main-navigation a {
	color: var(--nf-text-light);
	text-decoration: none;
	font-weight: 600;
	font-size: 1rem;
	position: relative;
	padding: 0.5rem 0;
	transition: color 0.3s ease;
}

.main-navigation a:hover {
	color: var(--nf-accent);
}

.main-navigation a::after {
	content: '';
	position: absolute;
	width: 100%;
	transform: scaleX(0);
	height: 2px;
	bottom: 0;
	left: 0;
	background-color: var(--nf-accent);
	transform-origin: bottom right;
	transition: transform 0.3s ease-out;
}

.main-navigation a:hover::after {
	transform: scaleX(1);
	transform-origin: bottom left;
}

.right-buttons {
	display: flex;
	gap: 0.75rem;
	align-items: center;
}

.header-btn {
	padding: 0.6rem 1.5rem;
	border-radius: 50px;
	font-weight: 700;
	font-size: 0.9rem;
	text-decoration: none;
	transition: all 0.3s ease;
	border: 2px solid transparent;
	text-align: center;
}

.btn-login {
	color: var(--nf-text-light);
	background-color: transparent;
	border-color: rgba(255, 255, 255, 0.5);
}

.btn-login:hover {
	background-color: var(--nf-text-light);
	color: var(--nf-primary);
	border-color: var(--nf-text-light);
}

.btn-register, .btn-dashboard {
	background-color: var(--nf-accent);
	color: var(--nf-primary);
}

.btn-register:hover, .btn-dashboard:hover {
	background-color: #EBC143;
	box-shadow: 0 4px 15px rgba(218, 165, 32, 0.2);
	transform: translateY(-2px);
}
 .btn-logout {
	background: #c0392b;
	color: white;
}
.btn-logout:hover {
	background: #e74c3c;
}

.menu-toggle {
	display: none;
	background: none;
	border: none;
	font-size: 28px;
	cursor: pointer;
	color: var(--nf-text-light);
}

@media (max-width: 1024px) {
	.header-container {
		justify-content: space-between;
	}
	.logo-nav-wrapper {
		gap: 1rem;
	}
	.main-navigation {
		display: none;
		order: 3;
		width: 100%;
		background: var(--nf-primary);
		margin-top: 1rem;
		padding: 1rem 0;
		border-top: 1px solid rgba(255, 255, 255, 0.1);
	}
	.main-navigation.active {
		display: block;
	}
	.main-navigation ul {
		flex-direction: column;
		align-items: center;
		gap: 1rem;
	}
	.menu-toggle {
		display: block;
	}
	.right-buttons {
		margin-left: auto;
	}
}

@media (max-width: 500px) {
	.site-header {
		padding: 0.75rem 1rem;
	}
	.right-buttons {
		display: none;
	}
}

/* ==========================================================================
   High-UI Footer Styles for NoticeFix
   ========================================================================== */

.site-footer {
	background: var(--nf-primary);
	color: var(--nf-text-medium);
	padding: 4rem 2rem;
	font-family: 'Poppins', sans-serif;
	font-size: 0.95rem;
	line-height: 1.7;
}

.footer-container {
	max-width: 1300px;
	margin: 0 auto;
}

.footer-widgets {
	display: flex;
	flex-wrap: wrap;
	gap: 2.5rem;
	justify-content: space-between;
	padding-bottom: 3rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-widget {
	flex: 1;
	min-width: 160px;
}

.footer-widget.widget-about,
.footer-widget.widget-contact {
	flex-basis: 250px;
}

.footer-logo img {
	height: 50px;
	margin-bottom: 1rem;
}

.footer-widget__title {
	color: var(--nf-text-light);
	font-size: 1.1rem;
	margin-bottom: 1rem;
	font-weight: 600;
}

.footer-widget__list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-widget__list a {
	color: var(--nf-text-medium);
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer-widget__list a:hover {
	color: var(--nf-accent);
}

.widget-contact a {
	color: var(--nf-accent);
	text-decoration: none;
}
.widget-contact a:hover {
    text-decoration: underline;
}

.footer-cta-button {
	display: inline-block;
	margin-top: 1rem;
	padding: 0.7rem 1.5rem;
	border-radius: 50px;
	background-color: var(--nf-accent);
	color: var(--nf-primary) !important; /* Important to override link color */
	text-decoration: none;
	font-weight: 700;
	transition: all 0.3s ease;
}

.footer-cta-button:hover {
	background-color: #EBC143;
	transform: translateY(-2px);
	box-shadow: 0 4px 15px rgba(218, 165, 32, 0.2);
}

.sub-footer {
	padding-top: 2rem;
	text-align: center;
}

.social-links {
	display: flex;
	justify-content: center;
	gap: 1rem;
	margin-bottom: 1.5rem;
}

.social-links a {
	color: var(--nf-text-light);
	background-color: rgba(255, 255, 255, 0.1);
	width: 44px;
	height: 44px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	font-size: 1.1rem;
	transition: all 0.3s ease;
}

.social-links a:hover {
	background-color: var(--nf-accent);
	color: var(--nf-primary);
	transform: translateY(-3px);
}

.copyright-text {
	font-size: 0.9rem;
	color: var(--nf-text-medium);
}

/* ================================================
   Floating Widgets & Chat Styles
   ================================================ */
.nf-whatsapp-btn {
	position: fixed;
	bottom: 25px;
	right: 25px;
	width: 65px;
	height: 65px;
	background: #25D366;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
	z-index: 999;
	transition: transform 0.3s ease;
    font-size: 2rem;
    color: white;
}
.nf-whatsapp-btn:hover { transform: scale(1.1); }

.chat-widget-button {
	position: fixed;
	bottom: 105px; /* Positioned above WhatsApp */
	right: 25px;
	background: linear-gradient(45deg, #2563eb, #1d4ed8);
	color: white;
	width: 65px;
	height: 65px;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 1.8rem;
	cursor: pointer;
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
	z-index: 999;
	border: none;
}
.chat-widget-button:hover { transform: scale(1.1); }

.chat-widget-window {
	position: fixed;
	bottom: 185px; /* Positioned above chat button */
	right: 25px;
	width: 360px;
	background: white;
	border-radius: 10px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.25);
	z-index: 998;
	transform: translateY(20px) scale(0.95);
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
	display: flex;
	flex-direction: column;
	max-height: 60vh;
}
.chat-widget-window.open {
	transform: translateY(0) scale(1);
	opacity: 1;
	visibility: visible;
}

.chat-widget-header {
	background: linear-gradient(45deg, #2563eb, #1d4ed8);
	color: white;
	padding: 1rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-radius: 10px 10px 0 0;
}
.chat-widget-header h4 { margin: 0; font-family: 'Poppins';}
.chat-widget-close-btn { background: none; border: none; color: white; font-size: 1.2rem; cursor: pointer; opacity: 0.8; }
.chat-widget-close-btn:hover { opacity: 1; }

.chat-widget-body {
	padding: 1rem;
	overflow-y: auto;
	flex-grow: 1;
}

.chat-message { margin-bottom: 1rem; display: flex; }
.chat-message.user { justify-content: flex-end; }
.chat-bubble { padding: 0.75rem 1rem; border-radius: 0.75rem; max-width: 85%; font-size: 0.95rem; line-height: 1.5; }
.chat-message.user .chat-bubble { background-color: #2563eb; color: white; }
.chat-message.bot .chat-bubble { background-color: #e5e7eb; color: #1f2937; }

.chat-options { display: flex; flex-direction: column; gap: 0.5rem; background-color: transparent !important; padding: 0 !important; }
.chat-options button { width: 100%; text-align: left; background: white; border: 1px solid #d1d5db; padding: 0.75rem; border-radius: 0.5rem; cursor: pointer; transition: background-color 0.2s; font-weight: 500;}
.chat-options button:hover { background-color: #f3f4f6; }

.chat-input-area { border-top: 1px solid #e5e7eb; padding: 1rem; display: flex; background: #f9fafb; border-radius: 0 0 10px 10px;}
.chat-input-area input { flex-grow: 1; padding: 0.75rem; border: 1px solid #d1d5db; border-radius: 0.5rem; margin-right: 0.5rem; }
.chat-input-area button { background-color: #2563eb; color: white; border: none; border-radius: 0.5rem; padding: 0.75rem 1rem; cursor: pointer; transition: background-color 0.2s; }
.chat-input-area button:hover { background-color: #1d4ed8; }

.proactive-chat-bubble {
	position: fixed;
	bottom: 180px;
	right: 100px;
	background-color: #1f2937;
	color: white;
	padding: .75rem 1.25rem;
	border-radius: .75rem;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s;
	z-index: 997;
}
.proactive-chat-bubble.show { opacity: 1; visibility: visible; }

/* ==========================================================================
   Careers Page Styles
   ========================================================================== */

/* Hero Section */
.careers-hero {
	background-color: var(--nf-primary);
	color: white;
	text-align: center;
	padding: 5rem 1.5rem;
}

.hero-subheading {
	color: var(--nf-accent);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 1rem;
}

.hero-heading {
	font-family: 'Playfair Display', serif;
	font-size: 3.5rem;
	font-weight: 900;
	margin: 0 0 1rem 0;
}

.hero-description {
	font-size: 1.25rem;
	max-width: 800px;
	margin: 0 auto;
	opacity: 0.9;
	line-height: 1.7;
}

/* Main Content Layout */
.careers-content-area {
	background-color: #F8F9FB; /* Light gray background */
	padding: 4rem 0;
}

.careers-content-area .container {
	max-width: 1000px;
	margin: 0 auto;
	padding: 0 1.5rem;
}

.careers-section {
	background: white;
	padding: 3rem;
	border-radius: 12px;
	box-shadow: 0 10px 25px rgba(0,0,0,0.05);
	margin-bottom: 3rem;
}

.section-title {
	font-family: 'Playfair Display', serif;
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--nf-primary);
	text-align: center;
	margin: 0 0 2.5rem 0;
}

.section-intro {
    text-align: center;
    max-width: 700px;
    margin: -1.5rem auto 2rem;
    line-height: 1.7;
    font-size: 1.1rem;
}
.section-intro a {
    color: var(--nf-primary);
    font-weight: 600;
}

/* Benefits Grid */
.benefits-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
}

.benefit-card {
	text-align: center;
}

.benefit-icon {
	font-size: 2.5rem;
	color: var(--nf-accent);
	margin-bottom: 1rem;
}

.benefit-card h3 {
	font-family: 'Poppins', sans-serif;
	color: var(--nf-primary);
	font-size: 1.25rem;
	font-weight: 600;
	margin: 0 0 0.5rem 0;
}

.benefit-card p {
	line-height: 1.6;
	color: #4b5563;
	margin: 0;
}

/* Job Listings */
.job-listings {
	list-style: none;
	padding: 0;
	margin: 0;
	border: 1px solid #e5e7eb;
	border-radius: 8px;
	overflow: hidden;
}

.job-item {
	padding: 1rem 1.5rem;
	border-bottom: 1px solid #e5e7eb;
	font-weight: 600;
	color: var(--nf-primary);
}
.job-item:last-child {
    border-bottom: none;
}
.job-item span {
    font-weight: 400;
    color: #6b7280;
}


/* FAQ Section */
.faq-container {
	max-width: 800px;
	margin: 0 auto;
}

.faq-item {
	border-bottom: 1px solid #e5e7eb;
}

.faq-item summary {
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--nf-primary);
	padding: 1.25rem 0;
	cursor: pointer;
	list-style: none; /* Hide default marker */
	position: relative;
	padding-right: 2rem; /* Space for icon */
}
.faq-item summary::-webkit-details-marker { display: none; } /* Hide for Chrome */

.faq-item summary::after { /* Custom icon */
	content: '+';
	position: absolute;
	right: 0.5rem;
	top: 50%;
	transform: translateY(-50%);
	font-size: 1.5rem;
	color: var(--nf-accent);
	transition: transform 0.2s;
}
.faq-item[open] summary::after {
	transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
	padding: 0 0 1.5rem 0;
	line-height: 1.7;
	color: #374151;
}

/* CTA Section */
.careers-cta {
	background: linear-gradient(135deg, var(--nf-primary), #0E1F29);
	color: white;
	padding: 3rem;
	border-radius: 12px;
	text-align: center;
}
.cta-heading {
    font-family: 'Playfair Display', serif;
    font-size: 2.25rem;
    margin: 0 0 0.5rem 0;
}
.cta-text {
    margin: 0 0 1.5rem 0;
    opacity: 0.9;
    font-size: 1.1rem;
}
.cta-button {
	display: inline-block;
	background-color: var(--nf-accent);
	color: var(--nf-primary);
	padding: 0.8rem 2rem;
	border-radius: 50px;
	text-decoration: none;
	font-weight: 700;
	transition: all 0.3s ease;
}
.cta-button:hover {
	background-color: #EBC143;
	transform: translateY(-2px);
	box-shadow: 0 4px 15px rgba(218, 165, 32, 0.2);
}

/* ==========================================================================
   Mobile Header Button Fix
   ========================================================================== */

/* This contains the mobile-only buttons inside the dropdown */
.mobile-auth-links {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	margin-top: 1.5rem;
	padding-top: 1.5rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	width: 100%;
	align-items: center;
}

/* Hides the mobile buttons on desktop */
.hide-on-desktop {
	display: none; /* Hidden by default */
}
@media (min-width: 1025px) {
	.hide-on-desktop {
		display: none !important;
	}
}

/* Hides the desktop buttons on mobile */
@media (max-width: 1024px) {
	.hide-on-mobile {
		display: none;
	}
	/* Shows the new mobile-only buttons inside the nav */
	.hide-on-desktop {
		display: flex;
	}
}

/* ==========================================================================
   Refer & Earn Button Style
   ========================================================================== */

.header-btn.btn-refer {
	background-color: transparent;
	color: var(--nf-accent);
	border-color: var(--nf-accent);
}

.header-btn.btn-refer:hover {
	background-color: var(--nf-accent);
	color: var(--nf-primary);
	box-shadow: 0 4px 15px rgba(218, 165, 32, 0.2);
	transform: translateY(-2px);
}

/* ==========================================================================
   Notice Fix University Page Styles
   ========================================================================== */

.university-page {
	font-family: 'Poppins', sans-serif;
}

/* --- Hero Section --- */
.university-hero {
	background-color: var(--nf-primary);
	color: white;
	text-align: center;
	padding: 5rem 1.5rem 6rem;
}
.university-hero__title {
	font-family: 'Playfair Display', serif;
	font-size: 3.5rem;
	font-weight: 900;
	margin-bottom: 1rem;
}
.university-hero__subtitle {
	font-size: 1.25rem;
	max-width: 700px;
	margin: 0 auto 2.5rem;
	opacity: 0.9;
}

/* --- Quiz Card --- */
.quiz-card {
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.2);
	max-width: 800px;
	margin: 0 auto;
	padding: 2rem;
	border-radius: 12px;
	text-align: left;
}
.quiz-card__title {
	font-family: 'Poppins';
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 1.5rem;
	text-align: center;
}
.quiz-question {
	border: none;
	margin-bottom: 1.5rem;
}
.quiz-question legend {
	font-size: 1.1rem;
	font-weight: 600;
	margin-bottom: 0.75rem;
}
.quiz-question div {
	display: flex;
	align-items: center;
	margin-bottom: 0.5rem;
}
.quiz-question input[type="radio"] {
	margin-right: 0.75rem;
	width: 1.2em;
	height: 1.2em;
}
.quiz-card__button {
	background-color: var(--nf-accent);
	color: var(--nf-primary);
	border: none;
	width: 100%;
	padding: 0.9rem;
	font-weight: 700;
	font-size: 1rem;
	border-radius: 8px;
	cursor: pointer;
	transition: all 0.3s;
}
.quiz-card__button:hover {
	background-color: #EBC143;
}
.quiz-recommendation {
	background-color: var(--nf-primary);
	padding: 1.5rem;
	border-radius: 8px;
	text-align: center;
	font-size: 1.1rem;
	line-height: 1.6;
}

/* --- Checklist Section --- */
.llc-checklist {
	background-color: #F8F9FB;
	padding: 4rem 1.5rem;
	border-bottom: 1px solid #e5e7eb;
}
.checklist-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 1.5rem;
	max-width: 1200px;
	margin: 0 auto;
}
.checklist-item {
	background: white;
	padding: 1rem 1.5rem;
	border-radius: 8px;
	box-shadow: 0 4px 15px rgba(0,0,0,0.05);
	font-weight: 600;
	color: var(--nf-primary);
	display: flex;
	align-items: center;
}
.checklist-item span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2rem;
	height: 2rem;
	background-color: var(--nf-accent);
	color: var(--nf-primary);
	border-radius: 50%;
	margin-right: 1rem;
	font-size: 1rem;
}

/* --- State Hub Section --- */
.state-hub {
	background-color: white;
	padding: 5rem 1.5rem;
}
.section-title {
	font-family: 'Playfair Display', serif;
	font-size: 2.8rem;
	font-weight: 700;
	color: var(--nf-primary);
	text-align: center;
	margin: 0 0 1rem 0;
}
.section-subtitle {
	text-align: center;
	max-width: 700px;
	margin: 0 auto 3rem;
	line-height: 1.7;
	font-size: 1.1rem;
	color: #4b5563;
}
.state-hub__search-box {
	position: relative;
	max-width: 600px;
	margin: 0 auto 2rem;
}
.state-hub__search-box i {
	position: absolute;
	left: 1.25rem;
	top: 50%;
	transform: translateY(-50%);
	color: #9ca3af;
}
.state-hub__search-box input {
	width: 100%;
	padding: 1rem 1rem 1rem 3rem;
	border: 1px solid #e5e7eb;
	border-radius: 50px;
	font-size: 1rem;
	box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.state-hub__filter-buttons {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.75rem;
	margin-bottom: 3rem;
}
.filter-btn {
	background-color: #F8F9FB;
	border: 1px solid #e5e7eb;
	padding: 0.6rem 1.25rem;
	border-radius: 50px;
	cursor: pointer;
	font-weight: 600;
	transition: all 0.3s;
}
.filter-btn.active, .filter-btn:hover {
	background-color: var(--nf-primary);
	color: white;
	border-color: var(--nf-primary);
}
.state-hub__grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
	gap: 1.5rem;
}
.state-card {
	background: white;
	padding: 1.5rem;
	border-radius: 12px;
	box-shadow: 0 8px 30px rgba(0,0,0,0.07);
	transition: all 0.3s;
}
.state-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}
.state-card__title {
	font-family: 'Playfair Display', serif;
	font-size: 1.5rem;
	color: var(--nf-primary);
	margin-bottom: 1rem;
}
.state-card__info-group {
	margin-bottom: 1rem;
}
.state-card__info-title {
	font-weight: 600;
	color: var(--nf-primary);
	margin-bottom: 0.5rem;
	display: flex;
	align-items: center;
}
.state-card__info-title i {
	color: var(--nf-accent);
	margin-right: 0.5rem;
}
.state-card__info-item {
	display: block;
	color: #374151;
	text-decoration: none;
	margin-bottom: 0.25rem;
}
.state-card__info-item:hover {
	color: var(--nf-primary);
	text-decoration: underline;
}

/* --- CTA Section --- */
.university-cta {
	background: linear-gradient(135deg, var(--nf-primary), #0E1F29);
	color: white;
	padding: 5rem 1.5rem;
	text-align: center;
}
.cta-title {
	font-family: 'Playfair Display', serif;
	font-size: 2.5rem;
	margin-bottom: 1rem;
}
.cta-subtitle {
	max-width: 650px;
	margin: 0 auto 2rem;
	opacity: 0.9;
	font-size: 1.1rem;
}
.cta-button {
	display: inline-block;
	background-color: var(--nf-accent);
	color: var(--nf-primary);
	padding: 0.9rem 2.5rem;
	border-radius: 50px;
	text-decoration: none;
	font-weight: 700;
	font-size: 1.1rem;
	transition: all 0.3s ease;
}
.cta-button:hover {
	background-color: #EBC143;
	transform: translateY(-3px);
	box-shadow: 0 4px 20px rgba(218, 165, 32, 0.3);
}
.cta-button i {
	margin-left: 0.5rem;
}
/* ===================================================================
   NoticeFix Header Redesign - High Impact & Clean
   =================================================================== */

/* --- 1. Main Header Styling --- */
.site-header {
    background-color: #ffffff; /* Clean white background */
    padding: 15px 0;
    border-bottom: 1px solid #eaedf1; /* Faint line for separation */
    position: sticky; /* Makes header stick to the top */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    transition: all 0.3s ease-in-out; /* Smooth transition for scroll effect */
}

/* --- 2. Scrolled Header State --- */
.site-header.scrolled {
    padding: 10px 0; /* Slightly reduce padding on scroll */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); /* Professional shadow effect */
    border-bottom: 1px solid transparent;
}

/* --- 3. Header Container & Layout --- */
.header-container {
    max-width: 1280px; /* Adjust max-width as needed */
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-nav-wrapper {
    display: flex;
    align-items: center;
    gap: 40px; /* Space between logo and navigation */
}

.site-branding img {
    max-height: 45px; /* Control logo size */
    width: auto;
    transition: max-height 0.3s ease-in-out;
}

.site-header.scrolled .site-branding img {
    max-height: 40px; /* Slightly smaller logo on scroll */
}

/* --- 4. Main Navigation Menu --- */
.main-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 25px;
}

.main-navigation ul li a {
    color: #333745; /* Dark, readable text color */
    font-size: 16px;
    font-weight: 500; /* Medium weight for clarity */
    text-decoration: none;
    padding: 8px 4px;
    position: relative;
    transition: color 0.3s ease;
}

/* Interactive Hover Underline Effect */
.main-navigation ul li a::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    background-color: #0d6efd; /* A professional blue - CHANGE TO YOUR BRAND COLOR */
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    transition: width 0.3s ease-in-out;
}

.main-navigation ul li a:hover {
    color: #0d6efd; /* CHANGE TO YOUR BRAND COLOR */
}

.main-navigation ul li a:hover::after {
    width: 100%;
}

/* --- 5. Header Action Buttons (Right Side) --- */
.right-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-btn {
    padding: 10px 22px;
    border-radius: 8px; /* Softer, modern corners */
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid transparent;
    transition: all 0.3s ease-in-out;
    white-space: nowrap; /* Prevent buttons from breaking into two lines */
}

/* "Refer & Earn" / "Login" Button Style */
.header-btn.btn-refer,
.header-btn.btn-login {
    background-color: #f0f5ff; /* Light blue background */
    color: #0d6efd; /* Primary blue text */
    border-color: #f0f5ff;
}

.header-btn.btn-refer:hover,
.header-btn.btn-login:hover {
    background-color: #e0eafe;
    transform: translateY(-2px); /* Subtle lift effect */
}

/* "Start Now" Button Style (Primary Action) */
.header-btn.btn-register {
    background-color: #0d6efd; /* Primary blue - CHANGE TO YOUR BRAND COLOR */
    color: #ffffff;
    border-color: #0d6efd;
}

.header-btn.btn-register:hover {
    background-color: #0b5ed7; /* Darker shade on hover */
    border-color: #0b5ed7;
    box-shadow: 0 4px 10px rgba(13, 110, 253, 0.3); /* Add a subtle glow */
    transform: translateY(-2px);
}

/* "Dashboard" / "Logout" Buttons */
.header-btn.btn-dashboard {
    background-color: #198754; /* Green for success/dashboard */
    color: #ffffff;
}
.header-btn.btn-logout {
    background-color: #6c757d; /* Grey for logout */
    color: #ffffff;
}

/* --- 6. Mobile & Responsive Styles --- */
.menu-toggle {
    display: none; /* Hide hamburger on desktop */
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}
.hide-on-desktop {
    display: none !important;
}

/* Adjustments for screens smaller than 1024px */
@media (max-width: 1024px) {
    .hide-on-mobile {
        display: none !important;
    }
    .hide-on-desktop {
        display: flex !important;
        flex-direction: column;
        gap: 15px;
        width: 100%;
        margin-top: 20px;
    }
    .hide-on-desktop .header-btn {
        text-align: center;
    }
    .menu-toggle {
        display: block; /* Show hamburger menu */
    }
    .main-navigation {
        display: none; /* Hide nav links by default */
        position: absolute;
        top: 100%; /* Position below the header */
        left: 0;
        width: 100%;
        background-color: #ffffff;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        padding: 20px;
    }
    .main-navigation.active {
        display: block; /* Show menu when active */
    }
    .main-navigation ul {
        flex-direction: column;
        width: 100%;
        align-items: flex-start;
    }
    .main-navigation ul li {
        width: 100%;
        border-bottom: 1px solid #eaedf1;
    }
     .main-navigation ul li:last-child {
        border-bottom: none;
    }
    .main-navigation ul li a {
        display: block;
        width: 100%;
        padding: 15px 10px;
    }
    .main-navigation ul li a::after {
        display: none; /* Hide underline effect on mobile */
    }
}