/* Header */
.header {
    display: flex;
	justify-content:space-between;
    width: 100%;
    align-items: center;
    height: 120px;
    background: linear-gradient(to right, #232526, #414345);
    padding: 0 20px;
    font-family: Arial, sans-serif;
    box-shadow: 0 0.1rem 0.5rem rgba(0, 0, 0, .15);
	box-sizing: border-box;
}

/* Logo */
.logo-doc {
    width: 100%;
	max-width:250px
}
.heart-logo {
    height: 20px;
    filter: brightness(0) invert(1);
}
.power-logo {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    color: white;
    padding: 0;
    margin: 0;
    font-size: 10px;
}
.power-logo p {
    margin-right:5px;
}


/* Commercial Area */
.commercial {
	height: 100px; 
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 5px;
	overflow:hidden;
}

.menu {
    display: flex;
    justify-content: center;
    background-color: #000;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);    
	position: relative;
    z-index: 1000;
}
.menu.sticky {
    position: fixed; 
    top: 0;
    width: 100%; 
}
.menu-item {
    background: transparent;
    color: #fff;
    position: relative; 
    overflow: hidden; 
    transition: color 0.3s ease, background 0.3s ease;
    padding: 10px 20px;
    text-align: center;
    font-size: 12px;
    margin: 0 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    text-decoration: none;
}

.menu-item::before {
    content: ''; /* Required for pseudo-elements */
    position: absolute; /* Position it absolutely within the menu item */
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    top: -100%;
    left: 0; /* Start off-screen to the left */
    background: #e3e3e369; 
    z-index: 1; 
    transition: top 0.3s ease; 
	border-radius: 0 0 8px 8px;
}

.menu-item:hover::before {
    top: 0; 
}

.menu-item:hover {
    color: #fff; /* Change text color on hover */
    border-color: transparent; /* Optionally change border color on hover */
}

.menu-item i {
    margin-right: 8px;
    font-size: 18px;
}

.menu-item:active {
    background: #e3e3e369;
}
