	.stack_tech_topbar {
			width: 100%;
			background: #fff;
			padding: 15px 30px;
			box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
			position: fixed;
			top: 0;
			z-index: 999;
		}

		.topbar_inner {
			display: flex;
			align-items: center;
			justify-content: space-between;
		}

		.logo {
			display: flex;
			align-items: center;
		}

		.logo img {
			height: 40px;
			margin-right: 10px;
		}

		.top_nav ul {
			list-style: none;
			display: flex;
			gap: 20px;
			margin: 0;
			padding: 0;
		}

		.top_nav ul li a {
			text-decoration: none;
			color: #333;
			font-weight: 500;
			transition: color 0.3s ease;
		}

		.top_nav ul li a:hover {
			color: #ff5a5f;
		}

		.trigger {
			display: none;
			/* Hide for desktop; show in responsive view if needed */
		}

		.top_nav {
			display: block !important;
			position: relative;
			z-index: 1000;
		}