.heading-modern {
    position: relative;
    padding-bottom: 8px;
    text-transform: uppercase !important;
}

.heading-modern:after {
    text-transform: uppercase;
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background: #ff6600; /* change color */
}

    /* ================================
       MEGA MENU MAIN WRAPPER
    ================================ */
    .navbar-nav .dropdown-menu.mega-menu {
        background: #131c58;
        padding: 40px 20px;
        max-height: 80vh;
        overflow-y: auto;
    }
    
    /* Mega menu scroll container */
    .mega-menu-scroll {
        max-height: 70vh;
        overflow-y: auto;
        padding-right: 10px;
    }
    
    /* Category columns - responsive grid */
    .mega-menu .category-column {
        margin-bottom: 25px;
        padding: 0 15px;
    }
    
    /* Category title styling */
    .mega-menu .category-title {
        color: #fff;
        font-weight: 400;
        font-size: 14px;
        margin-bottom: 15px;
        padding-bottom: 8px;
        border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    }
    
    .mega-menu .category-title a {
        padding-left:15px;
        color: #fff;
        text-decoration: none;
        transition: color 0.3s;
    }
    
    .mega-menu .category-title a:hover {
        padding-left:15px;
        color: #2ea7ff;
    }
    
    /* Subcategory list - FULL LIST visible */
    .mega-menu .subcategory-list {
        list-style: none;
        padding-left: 0;
        margin-bottom: 0;
    }
    
    .mega-menu .subcategory-item {
        margin-bottom: 5px;
    }
    
    /* Subcategory links - FULL VISIBILITY */
    .mega-menu .subcategory-link {
        display: flex;
        align-items: center;
        color: #d2d7ff;
        font-size: 15px;
        padding: 8px 10px;
        text-decoration: none;
        transition: all 0.3s;
        border-left: 3px solid transparent;
        border-radius: 4px;
        background: rgba(255, 255, 255, 0.05);
    }
    
    .mega-menu .subcategory-link:hover {
        color: #fff;
        background: rgba(255, 255, 255, 0.1);
        border-left-color: #2ea7ff;
        padding-left: 15px;
        transform: translateX(5px);
    }
    
    .mega-menu .subcategory-link i {
        margin-right: 10px;
        font-size: 14px;
        color: #2ea7ff;
        transition: transform 0.3s;
    }
    
    .mega-menu .subcategory-link:hover i {
        transform: translateX(3px);
        color: #4ac0ff;
    }
    
    /* Desktop: 5 columns */
    @media (min-width: 992px) {
        .mega-menu .row {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 20px;
        }
        
        .mega-menu .category-column {
            margin-bottom: 0;
        }
         .mega-menu .subcategory-item {
        margin-bottom: 5px;
        padding-left:7px;
    }
    }
    
    /* Tablet: 3 columns */
    @media (max-width: 991px) and (min-width: 768px) {
        .mega-menu .row {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }
        
        .navbar-nav .dropdown-menu.mega-menu {
            padding: 25px 15px;
            max-height: 70vh;
        }
         .mega-menu .subcategory-item {
        margin-bottom: 5px;
        padding-left:7px;
    }
    }
    
    /* Mobile: 1 column with full width */
    @media (max-width: 767px) {
        .navbar-nav .dropdown-menu.mega-menu {
            padding: 15px 10px;
            max-height: 60vh;
            position: fixed !important;
            top: 60px !important;
            left: 10px !important;
            right: 10px !important;
            width: calc(100% - 20px) !important;
        }
        
        .mega-menu .row {
            display: block;
        }
        
        .mega-menu .category-column {
            padding: 15px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            margin-bottom: 15px;
        }
        
        .mega-menu .category-column:last-child {
            border-bottom: none;
            margin-bottom: 0;
        }
        
        .mega-menu .category-title {
            font-size: 16px;
            padding-left: 15px;
            margin-bottom: 12px;
        }
        
        .mega-menu .subcategory-link {
            font-size: 14px;
            padding: 7px 10px;
            margin-bottom: 5px;
        }
        
        .mega-menu .subcategory-link i {
            font-size: 13px;
            margin-right: 8px;
        }
         .mega-menu .subcategory-item {
        margin-bottom: 5px;
        padding-left:7px;
       }
    }
    
    /* Small mobile devices */
    @media (max-width: 480px) {
        .navbar-nav .dropdown-menu.mega-menu {
            top: 70px !important;
            left: 5px !important;
            right: 5px !important;
            width: calc(100% - 10px) !important;
        }
        
        .mega-menu .subcategory-link {
            font-size: 13px;
            padding: 6px 8px;
        }
    }
    