
/* --- Custom Mega Menu Interaction --- */
.nav-links ul li#about-nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.about-mega-menu {
    width: 180px; /* changed from 320px */
    padding: 10px 0;
}

.mega-title {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s;
    cursor: pointer;
}

.mega-title-text {
    flex: 1;
    color: inherit;
    text-decoration: none;
    font-size: 14px;
}

.mega-title-text:hover {
    text-decoration: underline;
}

.arrow-sub {
    padding: 10px;
    cursor: pointer;
}

.mega-content {
    max-height: 0px;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.4s ease, padding 0.4s ease;
    background: #f8f9fa;
    border-left: 2px solid var(--primary-color);
    margin-left: 20px;
    margin-right: 20px;
    margin-bottom: 5px;
    border-radius: 0 0 4px 4px;
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    padding: 0 20px; /* will be changed to 10px 20px by JS */
}
