.sh-bf44d17e-container {
    position: relative;
    width: 100%;
    z-index: 1000;
    overflow: visible; /* Support absolute submenu dropdown visibility */
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.sh-bf44d17e-inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 10;
}

/* Atmospheric Layer */
.sh-bf44d17e-ambient-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

.sh-bf44d17e-network-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.6;
}

/* Moving Clouds */
.sh-bf44d17e-cloud {
    position: absolute;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    filter: blur(20px);
    pointer-events: none;
}

.sh-bf44d17e-cloud-1 {
    width: 300px;
    height: 150px;
    top: -50px;
    left: 10%;
    animation: floatCloudOne 40s infinite linear;
}

.sh-bf44d17e-cloud-2 {
    width: 400px;
    height: 200px;
    bottom: -80px;
    right: 15%;
    animation: floatCloudTwo 50s infinite linear;
}

@keyframes floatCloudOne {
    0% { transform: translateX(0) scale(1); }
    50% { transform: translateX(80px) scale(1.1); }
    100% { transform: translateX(0) scale(1); }
}

@keyframes floatCloudTwo {
    0% { transform: translateX(0) scale(1); }
    50% { transform: translateX(-100px) scale(0.9); }
    100% { transform: translateX(0) scale(1); }
}

/* Logo Styling */
.sh-bf44d17e-logo {
    display: flex;
    align-items: center;
}

.sh-bf44d17e-logo a {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.sh-bf44d17e-logo-text {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 0.15em;
    background: linear-gradient(135deg, #FFFFFF 30%, #FFDC4A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
}

.sh-bf44d17e-logo img {
    height: auto;
    object-fit: contain;
}

/* Center menu */
.sh-bf44d17e-menu {
    display: flex;
    align-items: center;
    height: 100%;
}

.sh-bf44d17e-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
}

.sh-bf44d17e-nav-list > li {
    display: inline-block;
    position: relative;
    padding: 24px 0;
}

.sh-bf44d17e-nav-list a {
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.05em;
    transition: color 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Submenu Support and Beautiful Styling */
.sh-bf44d17e-nav-list .menu-item-has-children > a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.sh-bf44d17e-nav-list .menu-item-has-children > a::after {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0.7;
    margin-top: -3px;
}

.sh-bf44d17e-nav-list .menu-item-has-children:hover > a::after {
    transform: rotate(225deg);
    margin-top: 1px;
}

/* Dropdown absolute wrapper */
.sh-bf44d17e-nav-list .sub-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background-color: rgba(10, 10, 12, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 12px;
    padding: 10px;
    width: 220px;
    list-style: none;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1100;
}

.sh-bf44d17e-nav-list .menu-item-has-children:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.sh-bf44d17e-nav-list .sub-menu li {
    padding: 0;
    margin: 0 !important;
    display: block;
    width: 100%;
}

.sh-bf44d17e-nav-list .sub-menu a {
    display: block;
    padding: 10px 14px;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
    border-radius: 8px;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    text-align: left;
}

.sh-bf44d17e-nav-list .sub-menu a:hover {
    color: #0A0A0C !important;
    background-color: #FFDC4A;
    transform: translateX(4px);
}

/* CTA styling */
.sh-bf44d17e-cta-wrap {
    display: flex;
    align-items: center;
}

.sh-bf44d17e-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    white-space: nowrap;
    border: 1px solid rgba(255, 220, 74, 0.2);
}

.sh-bf44d17e-cta:hover {
    transform: translateY(-1px);
}

.sh-bf44d17e-cta-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.sh-bf44d17e-cta-icon svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.sh-bf44d17e-cta:hover .sh-bf44d17e-cta-icon svg {
    transform: translateX(3px);
}

/* Mobile responsive menu */
@media (max-width: 768px) {
    .sh-bf44d17e-menu {
        display: none; /* Keep layout clean and premium */
    }
}
