/* Base trigger button */
.offcanvas-trigger-2eef2830 {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: 30px;
	height: 20px;
	background: transparent;
	border: none;
	cursor: pointer;
	padding: 0;
	z-index: 9999;
}

.offcanvas-trigger-2eef2830 .trigger-bar-2eef2830 {
	width: 100%;
	height: 3px;
	background-color: #fafafa;
	transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
}

.offcanvas-trigger-2eef2830:hover .trigger-bar-2eef2830 {
	background-color: #00bbff;
}

/* Backdrop Backdrop Overlay */
.offcanvas-backdrop-2eef2830 {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background: rgba(0, 0, 0, 0.7);
	backdrop-filter: blur(8px);
	z-index: 99998;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.4s ease, visibility 0.4s ease;
}

.offcanvas-backdrop-2eef2830.is-active {
	opacity: 1;
	visibility: visible;
}

/* Off-Canvas Drawer */
.offcanvas-panel-2eef2830 {
	position: fixed;
	top: 0;
	right: -400px;
	width: 100%;
	max-width: 400px;
	height: 100vh;
	background-color: #09090b;
	border-left: 1px solid rgba(255, 255, 255, 0.08);
	box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
	z-index: 99999;
	display: flex;
	flex-direction: column;
	overflow-y: auto;
	transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
	box-sizing: border-box;
}

@media (max-width: 480px) {
	.offcanvas-panel-2eef2830 {
		max-width: 100%;
		right: -100%;
	}
}

.offcanvas-panel-2eef2830.is-active {
	transform: translateX(-400px);
}

@media (max-width: 480px) {
	.offcanvas-panel-2eef2830.is-active {
		transform: translateX(-100%);
	}
}

/* Header inside Off-Canvas */
.offcanvas-header-2eef2830 {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 30px 24px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.offcanvas-logo-title-2eef2830 {
	font-family: sans-serif;
	font-size: 14px;
	font-weight: 800;
	letter-spacing: 2px;
	color: #00bbff;
}

/* Close Button styling */
.offcanvas-close-2eef2830 {
	position: relative;
	width: 24px;
	height: 24px;
	background: transparent;
	border: none;
	cursor: pointer;
}

.offcanvas-close-2eef2830 .close-bar-2eef2830 {
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: #fafafa;
	transition: background-color 0.3s ease;
}

.offcanvas-close-2eef2830 .close-bar-2eef2830:first-child {
	transform: translateY(-50%) rotate(45deg);
}

.offcanvas-close-2eef2830 .close-bar-2eef2830:last-child {
	transform: translateY(-50%) rotate(-45deg);
}

.offcanvas-close-2eef2830:hover .close-bar-2eef2830 {
	background-color: #00bbff;
}

/* Navigation List and Items */
.offcanvas-nav-container-2eef2830 {
	padding: 40px 24px;
	flex-grow: 1;
}

.dark-tech-menu-list-2eef2830, 
.dark-tech-menu-list-2eef2830 ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.dark-tech-menu-list-2eef2830 > li {
	margin-bottom: 20px;
}

/* Primary Items Link styling */
.dark-tech-menu-list-2eef2830 > li > a {
	display: flex;
	align-items: center;
	font-family: sans-serif;
	font-size: 24px;
	font-weight: 700;
	color: #fafafa;
	text-decoration: none;
	transition: transform 0.3s ease, color 0.3s ease;
}

.dark-tech-menu-list-2eef2830 > li > a:hover {
	color: #00bbff;
	transform: translateX(10px);
}

/* Icons styling */
.menu-icon-2eef2830 {
	margin-right: 12px;
	color: #00bbff;
	font-size: 20px;
	transition: color 0.3s ease;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

/* Submenu layout */
.dark-tech-menu-list-2eef2830 .sub-menu {
	display: none;
	padding-left: 20px;
	margin-top: 10px;
	border-left: 2px solid rgba(255, 255, 255, 0.05);
}

.dark-tech-menu-list-2eef2830 .sub-menu li {
	margin-bottom: 12px;
}

.dark-tech-menu-list-2eef2830 .sub-menu li a {
	font-family: sans-serif;
	font-size: 16px;
	font-weight: 500;
	color: #a1a1aa;
	text-decoration: none;
	transition: color 0.3s ease, transform 0.3s ease;
	display: block;
}

.dark-tech-menu-list-2eef2830 .sub-menu li a:hover {
	color: #00bbff;
	transform: translateX(5px);
}

/* Submenu Indicator */
.submenu-toggle-indicator-2eef2830 {
	display: inline-block;
	margin-left: auto;
	width: 10px;
	height: 10px;
	border-right: 2px solid #fafafa;
	border-bottom: 2px solid #fafafa;
	transform: rotate(45deg);
	transition: transform 0.3s ease, border-color 0.3s ease;
	cursor: pointer;
}

.dark-tech-menu-list-2eef2830 > li > a:hover .submenu-toggle-indicator-2eef2830 {
	border-color: #00bbff;
}

.dark-tech-menu-list-2eef2830 .is-open > a .submenu-toggle-indicator-2eef2830 {
	transform: rotate(-135deg);
}

/* Fallback Msg */
.menu-fallback-msg-2eef2830 {
	color: #a1a1aa;
	font-family: sans-serif;
	font-size: 14px;
	line-height: 1.5;
}
